mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-02-18 14:48:42 -05:00
Fix item update of tax category.
This commit is contained in:
@@ -395,11 +395,11 @@ class Items extends Secure_Controller
|
||||
$x = $this->input->post('tax_category_id');
|
||||
if(!isset($x))
|
||||
{
|
||||
$item['tax_category_id'] = '';
|
||||
$item_data['tax_category_id'] = '';
|
||||
}
|
||||
else
|
||||
{
|
||||
$item['tax_category_id'] = $this->input->post('selected_tax_category');
|
||||
$item_data['tax_category_id'] = $this->input->post('tax_category_id');
|
||||
}
|
||||
|
||||
if(!empty($upload_data['orig_name']))
|
||||
|
||||
Reference in New Issue
Block a user