mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-05-24 16:28:40 -04:00
Fix quantity removal in items page
PS
This commit is contained in:
@@ -160,7 +160,6 @@ function get_items_manage_table($items,$controller)
|
||||
$CI->lang->line('items_cost_price'),
|
||||
$CI->lang->line('items_unit_price'),
|
||||
$CI->lang->line('items_tax_percents'),
|
||||
$CI->lang->line('items_quantity'),
|
||||
' ',
|
||||
$CI->lang->line('items_inventory')
|
||||
);
|
||||
@@ -218,7 +217,6 @@ function get_item_data_row($item,$controller)
|
||||
$table_data_row.='<td width="14%">'.to_currency($item->cost_price).'</td>';
|
||||
$table_data_row.='<td width="14%">'.to_currency($item->unit_price).'</td>';
|
||||
$table_data_row.='<td width="14%">'.$tax_percents.'</td>';
|
||||
$table_data_row.='<td width="14%">'.$item->quantity.'</td>';
|
||||
$table_data_row.='<td width="5%">'.anchor($controller_name."/view/$item->item_id/width:$width", $CI->lang->line('common_edit'),array('class'=>'thickbox','title'=>$CI->lang->line($controller_name.'_update'))).'</td>';
|
||||
|
||||
//Ramel Inventory Tracking
|
||||
|
||||
Reference in New Issue
Block a user