X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fcustomer_invoice.php;h=35cdc5baca42e319cd4e6e849c165f9e8b310885;hb=48589f9ce6c51bb25e2fa8ed83c57d9dfa485e44;hp=ec42340284cd6beb9034caa4dcc067dae6bb711e;hpb=f2343f51b0ed0d9abd2ec98b64f202beb9716d37;p=fa-stable.git diff --git a/sales/customer_invoice.php b/sales/customer_invoice.php index ec423402..35cdc5ba 100644 --- a/sales/customer_invoice.php +++ b/sales/customer_invoice.php @@ -108,7 +108,7 @@ if (isset($_GET['AddedID'])) { //----------------------------------------------------------------------------- if ( (isset($_GET['DeliveryNumber']) && ($_GET['DeliveryNumber'] > 0) ) -|| isset($_GET['BatchInvoice'])) { + || isset($_GET['BatchInvoice'])) { processing_start(); @@ -134,14 +134,7 @@ if ( (isset($_GET['DeliveryNumber']) && ($_GET['DeliveryNumber'] > 0) ) } elseif (isset($_GET['ModifyInvoice']) && $_GET['ModifyInvoice'] > 0) { check_is_editable(ST_SALESINVOICE, $_GET['ModifyInvoice']); -/* - if ( get_sales_parent_numbers(ST_SALESINVOICE, $_GET['ModifyInvoice']) == 0) { // 1.xx compatibility hack - echo"

" . _("There are no delivery notes for this invoice.
- Most likely this invoice was created in Front Accounting version prior to 2.0 - and therefore can not be modified.") . "
"; - display_footer_exit(); - } -*/ + processing_start(); $_SESSION['Items'] = new Cart(ST_SALESINVOICE, $_GET['ModifyInvoice']); @@ -152,44 +145,35 @@ if ( (isset($_GET['DeliveryNumber']) && ($_GET['DeliveryNumber'] > 0) ) copy_from_cart(); } elseif (isset($_GET['AllocationNumber']) || isset($_GET['InvoicePrepayments'])) { - check_deferred_income_act(_("You have to set Deferred Income Account in GL Setup to entry prepayment invoices.")); + check_deferred_income_act(_("You have to set Deferred Income Account in GL Setup to entry prepayment invoices.")); - if (isset($_GET['AllocationNumber'])) - { - $payments = array(get_cust_allocation($_GET['AllocationNumber'])); + if (isset($_GET['AllocationNumber'])) + { + $payments = array(get_cust_allocation($_GET['AllocationNumber'])); - if (!$payments || ($payments[0]['trans_type_to'] != ST_SALESORDER)) - { - display_error(_("Please select correct Sales Order Prepayment to be invoiced and try again.")); - display_footer_exit(); - } - $order_no = $payments[0]['trans_no_to']; - } - else { - $order_no = $_GET['InvoicePrepayments']; - $payments = get_payments_for($_GET['InvoicePrepayments'], ST_SALESORDER); + if (!$payments || ($payments[0]['trans_type_to'] != ST_SALESORDER)) + { + display_error(_("Please select correct Sales Order Prepayment to be invoiced and try again.")); + display_footer_exit(); } - processing_start(); - - $_SESSION['Items'] = new Cart(ST_SALESORDER, $order_no, ST_SALESINVOICE); - $_SESSION['Items']->order_no = $order_no; - $_SESSION['Items']->src_docs = array($order_no); - $_SESSION['Items']->trans_no = 0; - $_SESSION['Items']->trans_type = ST_SALESINVOICE; - $_SESSION['Items']->prepayments = $payments; - // prepayment invoice has all line quantities as stated on order. -// foreach($_SESSION['Items']->line_items as &$line) -// { -// $line->src_id = $line_id; -// $line->qty_dispatched = $line->quantity; -// } -// unset($line); - $_SESSION['Items']->update_payments(); - -// $_SESSION['Items']->alloc = $this_amount; - copy_from_cart(); + $order_no = $payments[0]['trans_no_to']; + } + else { + $order_no = $_GET['InvoicePrepayments']; + } + processing_start(); + + $_SESSION['Items'] = new cart(ST_SALESORDER, $order_no, ST_SALESINVOICE); + $_SESSION['Items']->order_no = $order_no; + $_SESSION['Items']->src_docs = array($order_no); + $_SESSION['Items']->trans_no = 0; + $_SESSION['Items']->trans_type = ST_SALESINVOICE; + + $_SESSION['Items']->update_payments(); + + copy_from_cart(); } - elseif (!processing_active()) { +elseif (!processing_active()) { /* This page can only be called with a delivery for invoicing or invoice no for edit */ display_error(_("This page can only be opened after delivery selection. Please select delivery to invoicing first.")); @@ -220,7 +204,8 @@ function check_quantities() $max = $itm->quantity; } else { $min = 0; - $max = $itm->quantity - $itm->qty_done; + // Fixing floating point problem in PHP. + $max = round2($itm->quantity - $itm->qty_done, get_unit_dec($itm->stock_id)); } if (check_num('Line'.$line_no, $min, $max)) { $_SESSION['Items']->line_items[$line_no]->qty_dispatched = @@ -249,11 +234,8 @@ function set_delivery_shipping_sum($delivery_notes) foreach($delivery_notes as $delivery_num) { - $myrow = get_customer_trans($delivery_num, 13); - //$branch = get_branch($myrow["branch_code"]); - //$sales_order = get_sales_order_header($myrow["order_"]); - - //$shipping += $sales_order['freight_cost']; + $myrow = get_customer_trans($delivery_num, ST_CUSTDELIVERY); + $shipping += $myrow['ov_freight']; } $_POST['ChargeFreightCost'] = price_format($shipping); @@ -331,7 +313,7 @@ function check_data() } if ($_SESSION['Items']->trans_no == 0) { - if (!$Refs->is_valid($_POST['ref'])) { + if (!$Refs->is_valid($_POST['ref'], ST_SALESINVOICE)) { display_error(_("You must enter a reference.")); set_focus('ref'); return false; @@ -360,7 +342,7 @@ function check_data() return false; } } else { - if (($_SESSION['Items']->payment_terms['days_before_due'] < 0) && !count($_SESSION['Items']->prepayments)) { + if (($_SESSION['Items']->payment_terms['days_before_due'] == -1) && !count($_SESSION['Items']->prepayments)) { display_error(_("There is no non-invoiced payments for this order. If you want to issue final invoice, select delayed or cash payment terms.")); return false; } @@ -373,6 +355,7 @@ function check_data() if (isset($_POST['process_invoice']) && check_data()) { $newinvoice= $_SESSION['Items']->trans_no == 0; copy_to_cart(); + if ($newinvoice) new_doc_date($_SESSION['Items']->document_date); @@ -460,20 +443,17 @@ end_row(); start_row(); if ($_SESSION['Items']->trans_no == 0) { - ref_cells(_("Reference"), 'ref', '', null, "class='tableheader2'"); + ref_cells(_("Reference"), 'ref', '', null, "class='tableheader2'", false, ST_SALESINVOICE, + array('customer' => $_SESSION['Items']->customer_id, + 'branch' => $_SESSION['Items']->Branch, + 'date' => get_post('InvoiceDate'))); } else { label_cells(_("Reference"), $_SESSION['Items']->reference, "class='tableheader2'"); } -//label_cells(_("Delivery Notes:"), -//get_customer_trans_view_str(ST_CUSTDELIVERY, array_keys($_SESSION['Items']->src_docs)), "class='tableheader2'"); - label_cells(_("Sales Type"), $_SESSION['Items']->sales_type_name, "class='tableheader2'"); label_cells(_("Currency"), $_SESSION['Items']->customer_currency, "class='tableheader2'"); -// 2010-09-03 Joe Hunt -//if ($dim > 0) -// label_cells(_("Dimension"), get_dimension_string($_SESSION['Items']->dimension_id), "class='tableheader2'"); if ($dim > 0) { label_cell(_("Dimension").":", "class='tableheader2'"); $_POST['dimension_id'] = $_SESSION['Items']->dimension_id; @@ -511,12 +491,6 @@ if (!isset($_POST['due_date']) || !is_date($_POST['due_date'])) { } date_cells(_("Due Date"), 'due_date', '', null, 0, 0, 0, "class='tableheader2'"); -/* -if ($dim > 1) - label_cells(_("Dimension"). " 2", get_dimension_string($_SESSION['Items']->dimension2_id), "class='tableheader2'"); -else if ($dim > 0) - label_cell(" ", "colspan=2"); -*/ if ($dim > 1) { label_cell(_("Dimension")." 2:", "class='tableheader2'"); $_POST['dimension2_id'] = $_SESSION['Items']->dimension2_id; @@ -676,10 +650,10 @@ if ($prepaid) $allocs += $pmt['amt']; } } - label_row(_("Payments received:"), implode(',', $list)); label_row(_("Invoiced here:"), price_format($_SESSION['Items']->prep_amount), 'class=label'); - label_row(_("Left to be invoiced:"), price_format($_SESSION['Items']->get_trans_total()-max($_SESSION['Items']->prep_amount, $allocs)), 'class=label'); + label_row($_SESSION['Items']->payment_terms['days_before_due'] == -1 ? _("Left to be invoiced:") : _("Invoiced so far:"), + price_format($_SESSION['Items']->get_trans_total()-max($_SESSION['Items']->prep_amount, $allocs)), 'class=label'); } textarea_row(_("Memo:"), 'Comments', null, 50, 4);