X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fcustomer_delivery.php;h=637c238d70145fc61683989750072b2696edf4d9;hb=7618d9d62ee39a932f56565a4ce25d965bf53462;hp=767fd7c2910104164a4b72bac6a59e5fad8b48be;hpb=19dce8c7be29e4cc8e7be92d044259348373d456;p=fa-stable.git diff --git a/sales/customer_delivery.php b/sales/customer_delivery.php index 767fd7c2..637c238d 100644 --- a/sales/customer_delivery.php +++ b/sales/customer_delivery.php @@ -248,13 +248,13 @@ function check_quantities() // Update cart delivery quantities/descriptions foreach ($_SESSION['Items']->line_items as $line=>$itm) { if (isset($_POST['Line'.$line])) { - if($_SESSION['Items']->trans_no) { - $min = $itm->qty_done; - $max = $itm->quantity; - } else { - $min = 0; - $max = $itm->quantity - $itm->qty_done; - } + if($_SESSION['Items']->trans_no) { + $min = $itm->qty_done; + $max = $itm->quantity; + } else { + $min = 0; + $max = $itm->quantity - $itm->qty_done; + } if (check_num('Line'.$line, $min, $max)) { $_SESSION['Items']->line_items[$line]->qty_dispatched = @@ -291,7 +291,7 @@ if (isset($_POST['process_delivery']) && check_data()) { if ($newdelivery) new_doc_date($dn->document_date); - $delivery_no = $dn->write($bo_policy); + $delivery_no = write_sales_trans($dn, $bo_policy); if ($delivery_no == -1) { @@ -329,14 +329,11 @@ label_cells(_("Currency"), $_SESSION['Items']->customer_currency, "class='tableh end_row(); start_row(); -//if (!isset($_POST['ref'])) -// $_POST['ref'] = $Refs->get_next(ST_CUSTDELIVERY); - if ($_SESSION['Items']->trans_no==0) { ref_cells(_("Reference"), 'ref', '', null, "class='tableheader2'", false, ST_CUSTDELIVERY, array('customer' => $_SESSION['Items']->customer_id, 'branch' => $_SESSION['Items']->Branch, - 'date' => get_post('DispatchDate')); + 'date' => get_post('DispatchDate'))); } else { label_cells(_("Reference"), $_SESSION['Items']->reference, "class='tableheader2'"); } @@ -356,8 +353,8 @@ locations_list_cells(null, 'Location', null, false, true); if (!isset($_POST['ship_via'])) { $_POST['ship_via'] = $_SESSION['Items']->ship_via; } -label_cell(_("Shipping Company"), "class='tableheader2'"); -shippers_list_cells(null, 'ship_via', $_POST['ship_via']); +label_cell(_("Shipping Method"), "class='tableheader2'"); +shipping_methods_list_cells(null, 'ship_via', $_POST['ship_via']); // set this up here cuz it's used to calc qoh if (!isset($_POST['DispatchDate']) || !is_date($_POST['DispatchDate'])) { @@ -376,10 +373,10 @@ echo "";// outer table start_table(TABLESTYLE, "width='90%'"); if (!isset($_POST['due_date']) || !is_date($_POST['due_date'])) { - $_POST['due_date'] = get_invoice_duedate($_SESSION['Items']->payment, $_POST['DispatchDate']); + $_POST['due_date'] = get_payment_due_date($_SESSION['Items']->payment, $_POST['DispatchDate']); } customer_credit_row($_SESSION['Items']->customer_id, $_SESSION['Items']->credit, "class='tableheader2'"); -// 2010-09-03 Joe Hunt + $dim = get_company_pref('use_dimension'); if ($dim > 0) { start_row();