! -> Note
$ -> Affected files
+25-Sep-2009 Joe Hunt
+# Wrong presentation of qty decimals when trans_no != 0 (delivered)
+$ /sales/includes/ui/sales_order_ui.inc
+
24-Sep-2009 Janusz Dobrowolski
+ Additional fields for secondary phone and/or general notes in customers,
cust_branches, shippers, locations and suppliers tables.
//label_cell($stock_item->item_description, "nowrap" );
label_cell($stock_item->item_description );
- qty_cell($stock_item->qty_dispatched, false, get_qty_dec($stock_item->stock_id));
+ $dec = get_qty_dec($stock_item->stock_id);
+ qty_cell($stock_item->qty_dispatched, false, $dec);
if ($order->trans_no!=0)
- amount_cell($stock_item->qty_done);
+ qty_cell($stock_item->qty_done, false, $dec);
label_cell($stock_item->units);
amount_cell($stock_item->price);