X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fsales_order_entry.php;h=60ba5def06fef3a04777098b255db7d39500353a;hb=d69e655cbe282e2dbb261e207fcfacc5c3b8b246;hp=4a47369598f7e7659418d1b91d96931416657f51;hpb=46c5f7a65a7659a44ae8254c63152074363d3987;p=fa-stable.git diff --git a/sales/sales_order_entry.php b/sales/sales_order_entry.php index 4a473695..60ba5def 100644 --- a/sales/sales_order_entry.php +++ b/sales/sales_order_entry.php @@ -237,17 +237,23 @@ function copy_to_cart() $cart->Comments = $_POST['Comments']; $cart->document_date = $_POST['OrderDate']; -// if ($cart->trans_type == ST_SALESINVOICE) { + + $newpayment = false; if (isset($_POST['payment']) && ($cart->payment != $_POST['payment'])) { $cart->payment = $_POST['payment']; $cart->payment_terms = get_payment_terms($_POST['payment']); + $newpayment = true; } if ($cart->payment_terms['cash_sale']) { - $cart->due_date = $cart->document_date; - $cart->phone = $cart->cust_ref = $cart->delivery_address = ''; - $cart->freight_cost = input_num('freight_cost'); - $cart->ship_via = 1; - $cart->deliver_to = '';//$_POST['deliver_to']; + if ($newpayment) { + $cart->due_date = $cart->document_date; + $cart->phone = $cart->cust_ref = $cart->delivery_address = ''; + $cart->freight_cost = input_num('freight_cost'); + $cart->ship_via = 1; + $cart->deliver_to = ''; + $cart->Location = $cart->pos['pos_location']; + $cart->location_name = $cart->pos['location_name']; + } } else { $cart->due_date = $_POST['delivery_date']; $cart->cust_ref = $_POST['cust_ref']; @@ -255,8 +261,8 @@ function copy_to_cart() $cart->deliver_to = $_POST['deliver_to']; $cart->delivery_address = $_POST['delivery_address']; $cart->phone = $_POST['phone']; - $cart->Location = $_POST['Location']; $cart->ship_via = $_POST['ship_via']; + $cart->Location = $_POST['Location']; } if (isset($_POST['email'])) $cart->email =$_POST['email']; @@ -265,11 +271,11 @@ function copy_to_cart() $cart->customer_id = $_POST['customer_id']; $cart->Branch = $_POST['branch_id']; $cart->sales_type = $_POST['sales_type']; - // POS + if ($cart->trans_type!=ST_SALESORDER && $cart->trans_type!=ST_SALESQUOTE) { // 2008-11-12 Joe Hunt $cart->dimension_id = $_POST['dimension_id']; $cart->dimension2_id = $_POST['dimension2_id']; - } + } } //----------------------------------------------------------------------------- @@ -354,7 +360,7 @@ function can_process() { } - if (strlen($_POST['delivery_address']) <= 1) { + if ($_SESSION['Items']->trans_type != ST_SALESQUOTE && strlen($_POST['delivery_address']) <= 1) { display_error( _("You should enter the street address in the box provided. Orders cannot be accepted without a valid street address.")); set_focus('delivery_address'); return false; @@ -404,7 +410,10 @@ function can_process() { display_error(_("The entered reference is already in use.")); set_focus('ref'); return false; - } + } elseif ($_SESSION['Items']->get_items_total() < 0) { + display_error("Invoice total amount cannot be less than zero."); + return false; + } return true; } @@ -412,7 +421,6 @@ function can_process() { if (isset($_POST['ProcessOrder']) && can_process()) { copy_to_cart(); - $modified = ($_SESSION['Items']->trans_no != 0); $so_type = $_SESSION['Items']->so_type; $_SESSION['Items']->write(1); @@ -448,8 +456,9 @@ if (isset($_POST['update'])) { function check_item_data() { - global $SysPrefs; + global $SysPrefs, $allow_negative_prices; + $is_inventory_item = is_inventory_item(get_post('stock_id')); if(!get_post('stock_id_text', true)) { display_error( _("Item description cannot be empty.")); set_focus('stock_id_edit'); @@ -459,8 +468,8 @@ function check_item_data() display_error( _("The item could not be updated because you are attempting to set the quantity ordered to less than 0, or the discount percent to more than 100.")); set_focus('qty'); return false; - } elseif (!check_num('price', 0)) { - display_error( _("Price for item must be entered and can not be less than 0")); + } elseif (!check_num('price', 0) && (!$allow_negative_prices || $is_inventory_item)) { + display_error( _("Price for inventory item must be entered and can not be less than 0")); set_focus('price'); return false; } elseif (isset($_POST['LineNo']) && isset($_SESSION['Items']->line_items[$_POST['LineNo']]) @@ -470,8 +479,8 @@ function check_item_data() display_error(_("You attempting to make the quantity ordered a quantity less than has already been delivered. The quantity delivered cannot be modified retrospectively.")); return false; } // Joe Hunt added 2008-09-22 ------------------------- - elseif ($_SESSION['Items']->trans_type!=ST_SALESORDER && $_SESSION['Items']->trans_type!=ST_SALESQUOTE && !$SysPrefs->allow_negative_stock() && - is_inventory_item($_POST['stock_id'])) + elseif ($is_inventory_item && $_SESSION['Items']->trans_type!=ST_SALESORDER && $_SESSION['Items']->trans_type!=ST_SALESQUOTE + && !$SysPrefs->allow_negative_stock()) { $qoh = get_qoh_on_date($_POST['stock_id'], $_POST['Location'], $_POST['OrderDate']); if (input_num('qty') > $qoh) @@ -584,11 +593,7 @@ function create_cart($type, $trans_no) if (isset($_GET['NewQuoteToSalesOrder'])) { $trans_no = $_GET['NewQuoteToSalesOrder']; - $doc = new Cart(ST_SALESQUOTE, $trans_no); - $doc->trans_no = 0; - $doc->trans_type = ST_SALESORDER; - $doc->reference = $Refs->get_next($doc->trans_type); - $doc->document_date = $doc->due_date = new_doc_date(); + $doc = new Cart(ST_SALESQUOTE, $trans_no, true); $doc->Comments = _("Sales Quotation") . " # " . $trans_no; $_SESSION['Items'] = $doc; }