X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fcustomer_credit_invoice.php;h=2e8bb162b0c0ca4ce8ed9a7d6c0095166a2b2318;hb=6918bb5a9e5505ebdeb1abd93127a68db5ece8b6;hp=e9fb3a007b499f44bc6fe5055ee126484f3eafae;hpb=d67d5295b9342c011697ce4df325197e29898588;p=fa-stable.git diff --git a/sales/customer_credit_invoice.php b/sales/customer_credit_invoice.php index e9fb3a00..2e8bb162 100644 --- a/sales/customer_credit_invoice.php +++ b/sales/customer_credit_invoice.php @@ -144,7 +144,7 @@ if (isset($_GET['InvoiceNumber']) && $_GET['InvoiceNumber'] > 0) { foreach ($_SESSION['Items']->line_items as $line_no=>$itm) { if (isset($_POST['Line'.$line_no])) { if (check_num('Line'.$line_no, ($itm->quantity - $itm->qty_done))) { - $_SESSION['Items']->line_items[$line_no]->qty_dispatched = + $_SESSION['Items']->line_items[$line_no]->qty_dispatched = input_num('Line'.$line_no); } } @@ -279,12 +279,12 @@ function display_credit_items() // view_stock_status_cell($ln_itm->stock_id); alternative view label_cell($ln_itm->stock_id); - text_cells(null, 'Line'.$line_no.'Desc', $ln_itm->item_description, 30, 50); - - qty_cell($ln_itm->quantity); + text_cells(null, 'Line'.$line_no.'Desc', $ln_itm->item_description, 30, 50); + $dec = get_qty_dec($ln_itm->stock_id); + qty_cell($ln_itm->quantity, false, $dec); label_cell($ln_itm->units); - amount_cells(null, 'Line'.$line_no, qty_format($ln_itm->qty_dispatched)); + amount_cells(null, 'Line'.$line_no, number_format2($ln_itm->qty_dispatched, $dec)); $line_total =($ln_itm->qty_dispatched * $ln_itm->price * (1 - $ln_itm->discount_percent)); @@ -300,7 +300,7 @@ function display_credit_items() start_row(); label_cell(_("Credit Shipping Cost"), "colspan=7 align=right"); - amount_cells(null, "ChargeFreightCost", $_POST['ChargeFreightCost'], 6, 6); + amount_cells_ex(null, "ChargeFreightCost", 6, 8, $_POST['ChargeFreightCost']); end_row(); $inv_items_total = $_SESSION['Items']->get_items_total_dispatch();