X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=purchasing%2Fincludes%2Fui%2Finvoice_ui.inc;h=b3957fd8cf66bf3f46e6ee780b9ddecdee41d1bb;hb=7fccb1e0c3c04305a4b1c220e29a41c7d2aac5ba;hp=6121c905d8db5af7de16f0bcb22ee5d1cfaf6c6d;hpb=3318505af02009460a12180425e8d16df7f25fcd;p=fa-stable.git diff --git a/purchasing/includes/ui/invoice_ui.inc b/purchasing/includes/ui/invoice_ui.inc index 6121c905..b3957fd8 100644 --- a/purchasing/includes/ui/invoice_ui.inc +++ b/purchasing/includes/ui/invoice_ui.inc @@ -1,5 +1,14 @@ . +***********************************************************************/ //-------------------------------------------------------------------------------------------------- function copy_from_trans(&$supp_trans) @@ -10,7 +19,6 @@ function copy_from_trans(&$supp_trans) $_POST['supp_reference'] = $supp_trans->supp_reference; $_POST['reference'] = $supp_trans->reference; $_POST['supplier_id'] = $supp_trans->supplier_id; - $_POST['tax_group_id'] = $supp_trans->tax_group_id; } //-------------------------------------------------------------------------------------------------- @@ -22,22 +30,23 @@ function copy_to_trans(&$supp_trans) $supp_trans->due_date = $_POST['due_date']; $supp_trans->supp_reference = $_POST['supp_reference']; $supp_trans->reference = $_POST['reference']; - $supp_trans->tax_group_id = $_POST['tax_group_id']; - $supp_trans->ov_amount = 0; /* for starters */ if (count($supp_trans->grn_items) > 0) { foreach ( $supp_trans->grn_items as $grn) { - $supp_trans->ov_amount += ($grn->this_quantity_inv * $grn->chg_price); + $supp_trans->ov_amount += round2(($grn->this_quantity_inv * $grn->chg_price), + user_price_dec()); } } if (count($supp_trans->gl_codes) > 0) { foreach ( $supp_trans->gl_codes as $gl_line) { - $supp_trans->ov_amount += $gl_line->amount; + ////////// 2009-08-18 Joe Hunt + if (!is_tax_account($gl_line->gl_code)) + $supp_trans->ov_amount += $gl_line->amount; } } } @@ -46,22 +55,31 @@ function copy_to_trans(&$supp_trans) function invoice_header(&$supp_trans) { + global $Ajax, $Refs; + // if vars have been lost, recopy if (!isset($_POST['tran_date'])) copy_from_trans($supp_trans); - start_table("width=100%", 5); - start_row(); - echo""; // outer - - echo ""; + start_outer_table(TABLESTYLE2, "width=95%"); - if (!isset($_POST['supplier_id']) && (get_global_supplier() != reserved_words::get_all())) - $_POST['supplier_id'] = get_global_supplier(); + table_section(1); - supplier_list_row(_("Supplier:"), 'supplier_id', $_POST['supplier_id'], false, true); + if (isset($_POST['invoice_no'])) + { + $trans = get_supp_trans($_POST['invoice_no'], ST_SUPPINVOICE); + $_POST['supplier_id'] = $trans['supplier_id']; + $supp = $trans['supplier_name'] . " - " . $trans['SupplierCurrCode']; + label_row(_("Supplier:"), $supp.hidden('supplier_id', $_POST['supplier_id'], false)); + } + else + { + if (!isset($_POST['supplier_id']) && (get_global_supplier() != ALL_TEXT)) + $_POST['supplier_id'] = get_global_supplier(); - if ($supp_trans->supplier_id != $_POST['supplier_id']) + supplier_list_row(_("Supplier:"), 'supplier_id', $_POST['supplier_id'], false, true); + } + if ($supp_trans->supplier_id != $_POST['supplier_id']) { // supplier has changed // delete all the order items - drastic but necessary because of @@ -72,29 +90,35 @@ function invoice_header(&$supp_trans) } if ($supp_trans->is_invoice) - ref_row(_("Reference:"), 'reference', references::get_next(20)); + ref_row(_("Reference:"), 'reference', '', $Refs->get_next(ST_SUPPINVOICE)); else - ref_row(_("Reference:"), 'reference', references::get_next(21)); - - text_row(_("Supplier's Ref.:"), 'supp_reference', $_POST['supp_reference'], 20, 20); + ref_row(_("Reference:"), 'reference', '', $Refs->get_next(ST_SUPPCREDIT)); - echo "
"; - - echo ""; // outer + if (isset($_POST['invoice_no'])) + { + label_row(_("Supplier's Ref.:"), $_POST['invoice_no'].hidden('invoice_no', $_POST['invoice_no'], false).hidden('supp_reference', $_POST['invoice_no'], false)); + } + else + text_row(_("Supplier's Ref.:"), 'supp_reference', $_POST['supp_reference'], 20, 20); - echo ""; + table_section(2, "33%"); - date_row(_("Date") . ":", 'tran_date', null, 0, 0, 0, "", true); + date_row(_("Date") . ":", 'tran_date', '', true, 0, 0, 0, "", true); + if (isset($_POST['_tran_date_changed'])) { + $Ajax->activate('_ex_rate'); + $supp_trans->tran_date = $_POST['tran_date']; + get_duedate_from_terms($supp_trans); + $_POST['due_date'] = $supp_trans->due_date; + $Ajax->activate('due_date'); + } - date_row(_("Due Date") . ":", 'due_date', null); + date_row(_("Due Date") . ":", 'due_date'); label_row(_("Terms:"), $supp_trans->terms_description); - echo "
"; - - echo ""; // outer + table_section(3, "33%"); - echo ""; + set_global_supplier($_POST['supplier_id']); $supplier_currency = get_supplier_currency($supp_trans->supplier_id); @@ -106,92 +130,116 @@ function invoice_header(&$supp_trans) exchange_rate_display($supplier_currency, $company_currency, $_POST['tran_date']); } + label_row(_("Tax Group:"), $supp_trans->tax_description); - if (!isset($_POST['tax_group_id'])) - $_POST['tax_group_id'] = $supp_trans->tax_group_id; - tax_groups_list_row(_("Tax Group:"), 'tax_group_id', $_POST['tax_group_id'], true); - - echo "
"; - - echo ""; - end_row(); - end_table(); // outer + end_outer_table(1); } //-------------------------------------------------------------------------------------------------- function invoice_totals(&$supp_trans) { - global $table_style, $table_style2; - copy_to_trans($supp_trans); - start_table("$table_style width=95%"); - label_row(_("Sub-total:"), number_format2( $supp_trans->ov_amount,user_price_dec()), "align=right", "align=right"); + $dim = get_company_pref('use_dimension'); + $colspan = ($dim == 2 ? 7 : ($dim == 1 ? 6 : 5)); + start_table(TABLESTYLE, "width=95%"); + label_row(_("Sub-total:"), price_format( $supp_trans->ov_amount), "colspan=$colspan align=right", "align=right"); - $taxes = $supp_trans->get_taxes($_POST['tax_group_id']); - $tax_total = display_edit_tax_items($taxes, 1, 0); // tax_included==0 (we are the company) + $taxes = $supp_trans->get_taxes($supp_trans->tax_group_id); + $tax_total = display_edit_tax_items($taxes, $colspan, 0); // tax_included==0 (we are the company) - $display_total = number_format2(( $supp_trans->ov_amount + $tax_total), user_price_dec()); + $display_total = price_format($supp_trans->ov_amount + $tax_total); if ($supp_trans->is_invoice) - label_row(_("Invoice Total:"), $display_total, "align=right", "align=right"); + label_row(_("Invoice Total:"), $display_total, "colspan=$colspan align=right style='font-weight:bold;'", "align=right style='font-weight:bold;'"); else - label_row("" . _("Credit Note Total:") . "", - "$display_total", "align=right", "nowrap align=right"); + label_row(_("Credit Note Total"), + $display_total, "colspan=$colspan align=right style='font-weight:bold;color:red;'", "nowrap align=right style='font-weight:bold;color:red;'"); - end_table(); - br(1); - start_table($table_style2); + end_table(1); + start_table(TABLESTYLE2); textarea_row(_("Memo:"), "Comments", null, 50, 3); - end_table(); - br(1); + end_table(1); } //-------------------------------------------------------------------------------------------------- +function display_gl_controls(&$supp_trans, $k) +{ + $accs = get_supplier_accounts($supp_trans->supplier_id); + $_POST['gl_code'] = $accs['purchase_account']; -// $mode = 0 display on invoice page -// = 1 display on gl items edit page + alt_table_row_color($k); + echo gl_all_accounts_list('gl_code', null, true, true); + $dim = get_company_pref('use_dimension'); + if ($dim >= 1) + dimensions_list_cells(null, 'dimension_id', null, true, " ", false, 1); + if ($dim > 1) + dimensions_list_cells(null, 'dimension2_id', null, true, " ", false, 2); + amount_cells(null, 'amount'); + if ($dim < 1) + text_cells_ex(null, 'memo_', 35, 50, null, null, null, hidden('dimension_id', 0, false).hidden('dimension2_id', 0, false)); + else if ($dim < 2) + text_cells_ex(null, 'memo_', 35, 50, null, null, null, hidden('dimension2_id', 0, false)); + else + text_cells_ex(null, 'memo_', 35, 50, null, null, null); + submit_cells('AddGLCodeToTrans', _("Add"), "", + _('Add GL Line'), true); + submit_cells('ClearFields', _("Reset"), "", + _("Clear all GL entry fields"), true); + end_row(); +} + +// $mode = 0 none at the moment +// = 1 display on invoice/credit page // = 2 display on view invoice // = 3 display on view credit function display_gl_items(&$supp_trans, $mode=0) { - global $table_style, $path_to_root; - - if ($mode == 0 && isset($_POST["InvGL"])) - { - copy_to_trans($supp_trans); - meta_forward("$path_to_root/purchasing/supplier_trans_gl.php"); - exit; - } + global $path_to_root, $Ajax; // if displaying in form, and no items, exit if (($mode == 2 || $mode == 3) && count($supp_trans->gl_codes) == 0) - return; - - echo "
"; - - start_table("width=95%"); - echo ""; // outertable + return 0; if ($supp_trans->is_invoice) $heading = _("GL Items for this Invoice"); else $heading = _("GL Items for this Credit Note"); - echo ""; - echo ""; - if ($mode == 0) + start_outer_table(TABLESTYLE, "width=95%"); + + if ($mode == 1) { - submit_cells('InvGL', _("Edit"), "align=right"); + $qes = has_quick_entries(QE_SUPPINV); + if ($qes !== false) + { + echo "
"; + echo _("Quick Entry:")." "; + echo quick_entries_list('qid', null, QE_SUPPINV, true); + $qid = get_quick_entry(get_post('qid')); + if (list_updated('qid')) { + unset($_POST['totamount']); // enable default + $Ajax->activate('totamount'); + } + echo " ".$qid['base_desc'].":"." "; + + $amount = input_num('totamount', $qid['base_amount']); + $dec = user_price_dec(); + echo " "; + submit('go', _("Go"), true, false, true); + echo "
"; + + } } - echo "
$heading
"; + display_heading($heading); - echo ""; // ouer table + end_outer_table(0, false); + + div_start('gl_items'); + start_table(TABLESTYLE, "width=95%"); - echo ""; - $dim = get_company_pref('use_dimension'); if ($dim == 2) $th = array(_("Account"), _("Name"), _("Dimension")." 1", _("Dimension")." 2", _("Amount"), _("Memo")); @@ -200,6 +248,11 @@ function display_gl_items(&$supp_trans, $mode=0) else $th = array(_("Account"), _("Name"), _("Amount"), _("Memo")); + if ($mode == 1) + { + $th[] = ""; + $th[] = ""; + } table_header($th); $total_gl_value=0; $i = $k = 0; @@ -217,90 +270,208 @@ function display_gl_items(&$supp_trans, $mode=0) label_cell($entered_gl_code->gl_code); label_cell($entered_gl_code->gl_act_name); - + if ($dim >= 1) label_cell(get_dimension_string($entered_gl_code->gl_dim, true)); if ($dim > 1) label_cell(get_dimension_string($entered_gl_code->gl_dim2, true)); - amount_cell($entered_gl_code->amount); + amount_cell($entered_gl_code->amount, true); label_cell($entered_gl_code->memo_); if ($mode == 1) - delete_link_cell(SID . "Delete=" . $entered_gl_code->Counter); - + { + delete_button_cell("Delete2" . $entered_gl_code->Counter, _("Delete"), + _('Remove line from document')); + label_cell(""); + } end_row(); - - $total_gl_value += $entered_gl_code->amount; - + /////////// 2009-08-18 Joe Hunt + if ($mode > 1 && !is_tax_account($entered_gl_code->gl_code)) + $total_gl_value += $entered_gl_code->amount; + else + $total_gl_value += $entered_gl_code->amount; $i++; if ($i > 15) { - $i = 0; - table_header($th); + $i = 0; + table_header($th); } } } + if ($mode == 1) + display_gl_controls($supp_trans, $k); $colspan = ($dim == 2 ? 4 : ($dim == 1 ? 3 : 2)); - label_row(_("Total"), number_format2($total_gl_value,user_price_dec()), - "colspan=".$colspan." align=right", "nowrap align=right"); + label_row(_("Total"), price_format($total_gl_value), + "colspan=".$colspan." align=right", "nowrap align=right", ($mode==1?3:1)); - echo "
"; + end_table(1); + div_end(); - echo ""; + return $total_gl_value; +} + +//--------------//----------------------------------------------------------------------------------------- + +function display_grn_items_for_selection(&$supp_trans, $k) +{ + if ($supp_trans->is_invoice) + $result = get_grn_items(0, $supp_trans->supplier_id, true); + else + { + if (isset($_POST['receive_begin']) && isset($_POST['receive_end'])) + $result = get_grn_items(0, $supp_trans->supplier_id, false, true, 0, $_POST['receive_begin'], $_POST['receive_end']); + else if (isset($_POST['invoice_no'])) + $result = get_grn_items(0, $supp_trans->supplier_id, false, true, $_POST['invoice_no']); + else + $result = get_grn_items(0, $supp_trans->supplier_id, false, true); + } + if (db_num_rows($result) == 0) + { + return false; + } - end_table(); // outertable + /*Set up a table to show the outstanding GRN items for selection */ - return $total_gl_value; + while ($myrow = db_fetch($result)) + { + $grn_already_on_invoice = false; + + foreach ($supp_trans->grn_items as $entered_grn) + { + if ($entered_grn->id == $myrow["id"]) + { + $grn_already_on_invoice = true; + } + } + if ($grn_already_on_invoice == false) + { + + alt_table_row_color($k); + + $n = $myrow["id"]; + label_cell(get_trans_view_str(25, $myrow["grn_batch_id"])); + label_cell($myrow["id"]. + hidden('qty_recd'.$n, $myrow["qty_recd"], false). + hidden('item_code'.$n, $myrow["item_code"], false). + hidden('item_description'.$n, $myrow["description"], false). + hidden('prev_quantity_inv'.$n, $myrow['quantity_inv'], false). + hidden('order_price'.$n, $myrow['unit_price'], false). + hidden('std_cost_unit'.$n, $myrow['std_cost_unit'], false). + hidden('po_detail_item'.$n, $myrow['po_detail_item'], false)); + label_cell(get_trans_view_str(ST_PURCHORDER, $myrow["purch_order_no"])); + label_cell($myrow["item_code"]); + label_cell($myrow["description"]); + label_cell(sql2date($myrow["delivery_date"])); + $dec = get_qty_dec($myrow["item_code"]); + qty_cell($myrow["qty_recd"], false, $dec); + qty_cell($myrow["quantity_inv"], false, $dec); + if ($supp_trans->is_invoice) + qty_cells(null, 'this_quantity_inv'.$n, number_format2($myrow["qty_recd"] - $myrow["quantity_inv"], $dec), + null, null, $dec); + else + qty_cells(null, 'This_QuantityCredited'.$n, number_format2(max($myrow["quantity_inv"], 0), $dec), + null, null, $dec); + $dec2 = 0; + amount_cells(null, 'ChgPrice'.$n, price_decimal_format($myrow["unit_price"], $dec2), null, null, $dec2); + if ($supp_trans->is_invoice) + amount_cell(round2($myrow["unit_price"] * ($myrow["qty_recd"] - $myrow["quantity_inv"]), user_price_dec())); + else + amount_cell(round2($myrow["unit_price"] * max($myrow['quantity_inv'], 0), user_price_dec())); + if ($supp_trans->is_invoice) + submit_cells('grn_item_id'.$n, _("Add"), '', _("Add to Invoice"), true); + else + submit_cells('grn_item_id'.$n, _("Add"), '', _("Add to Credit Note"), true); + if ($supp_trans->is_invoice && $_SESSION["wa_current_user"]->can_access('SA_GRNDELETE')) { // Added 2008-10-18 by Joe Hunt. Special access rights needed. + submit_cells('void_item_id'.$n, _("Remove"), '', _("WARNING! Be careful with removal. The operation is executed immediately and cannot be undone !!!"), true); + submit_js_confirm('void_item_id'.$n, + sprintf(_('You are about to remove all yet non-invoiced items from delivery line #%d. This operation also irreversibly changes related order line. Do you want to continue ?'), $n)); + } + end_row(); + } + } + return true; } -//-------------------------------------------------------------------------------------------------- +//------------------------------------------------------------------------------------ -// $mode = 0 display on invoice page -// = 1 display on grn items edit page +// $mode = 0 none at the moment +// = 1 display on invoice/credit page // = 2 display on view invoice // = 3 display on view credit function display_grn_items(&$supp_trans, $mode=0) { - global $table_style, $path_to_root; - - if ($mode == 0 && isset($_POST["InvGRN"])) - { - copy_to_trans($supp_trans); - if ($supp_trans->is_invoice) - meta_forward("$path_to_root/purchasing/supplier_invoice_grns.php"); - else - meta_forward("$path_to_root/purchasing/supplier_credit_grns.php"); - exit; - } + global $path_to_root; + $ret = true; // if displaying in form, and no items, exit if (($mode == 2 || $mode == 3) && count($supp_trans->grn_items) == 0) - return; - br(1); - start_table("width=95%"); - echo ""; // outertable + return 0; - if ($supp_trans->is_invoice) - $heading = _("Received Items Charged on this Invoice"); - else - $heading = _("Received Items Credited on this Note"); + start_outer_table("style='border:1px solid #cccccc;' width=95%"); - echo ""; - echo ""; - if ($mode == 0) + $heading2 = ""; + if ($mode == 1) { - submit_cells('InvGRN', _("Edit"), "align=right"); + if ($supp_trans->is_invoice) + { + $heading = _("Items Received Yet to be Invoiced"); + if ($_SESSION["wa_current_user"]->can_access('SA_GRNDELETE')) // Added 2008-10-18 by Joe Hunt. Only admins can remove GRNs + $heading2 = _("WARNING! Be careful with removal. The operation is executed immediately and cannot be undone !!!"); + } + else + $heading = _("Delivery Item Selected For Adding To A Supplier Credit Note"); } - echo "
$heading
"; + else + { + if ($supp_trans->is_invoice) + $heading = _("Received Items Charged on this Invoice"); + else + $heading = _("Received Items Credited on this Note"); + } - echo ""; // outer table + display_heading($heading); - echo ""; - $th = array(_("Delivery Sequence #"), _("Item"), _("Description"), - _("Quantity"), _("Price"), _("Line Value")); + if ($mode == 1) + { + if (!$supp_trans->is_invoice && !isset($_POST['invoice_no'])) + { + echo ""; + date_cells(_("Received between"), 'receive_begin', "", null, -30, 0, 0, "valign=middle"); + date_cells(_("and"), 'receive_end', '', null, 1, 0, 0, "valign=middle"); + submit_cells('RefreshInquiry', _("Search"),'',_('Refresh Inquiry'), true); + echo "
"; + } + + if ($heading2 != "") + { + display_note($heading2, 0, 0, "class='overduefg'"); + } + echo ""; + submit('InvGRNAll', _("Add All Items"), true, false,true); + } + + end_outer_table(0, false); + + div_start('grn_items'); + start_table(TABLESTYLE, "width=95%"); + if ($mode == 1) + { + $th = array(_("Delivery"), _("Sequence #"), _("P.O."), _("Item"), _("Description"), + _("Received On"), _("Quantity Received"), _("Quantity Invoiced"), + _("Qty Yet To Invoice"), _("Order Price"), _("Total"), ""); + if ($supp_trans->is_invoice && $_SESSION["wa_current_user"]->can_access('SA_GRNDELETE')) // Added 2008-10-18 by Joe Hunt. Only admins can remove GRNs + $th[] = ""; + if (!$supp_trans->is_invoice) + { + $th[8] = _("Qty Yet To Credit"); + } + } + else + $th = array(_("Delivery"), _("Item"), _("Description"), + _("Quantity"), _("Price"), _("Line Value")); table_header($th); $total_grn_value = 0; @@ -314,19 +485,36 @@ function display_grn_items(&$supp_trans, $mode=0) alt_table_row_color($k); - label_cell(get_trans_view_str(25,$entered_grn->id)); + $grn_batch = get_grn_batch_from_item($entered_grn->id); + label_cell(get_trans_view_str(ST_SUPPRECEIVE,$grn_batch)); + if ($mode == 1) + { + label_cell($entered_grn->id); + label_cell(""); // PO + } label_cell($entered_grn->item_code); label_cell($entered_grn->item_description); - qty_cell(abs($entered_grn->this_quantity_inv)); - amount_cell($entered_grn->chg_price); - amount_cell($entered_grn->chg_price * abs($entered_grn->this_quantity_inv)); + $dec = get_qty_dec($entered_grn->item_code); + if ($mode == 1) + { + label_cell(""); + qty_cell($entered_grn->qty_recd, false, $dec); + qty_cell($entered_grn->prev_quantity_inv, false, $dec); + } + qty_cell(abs($entered_grn->this_quantity_inv), true, $dec); + amount_decimal_cell($entered_grn->chg_price); + amount_cell( round2($entered_grn->chg_price * abs($entered_grn->this_quantity_inv), user_price_dec()), true); if ($mode == 1) - delete_link_cell(SID . "Delete=" . $entered_grn->id); - + { + delete_button_cell("Delete" . $entered_grn->id, _("Edit"), _('Edit document line')); + if ($supp_trans->is_invoice && $_SESSION["wa_current_user"]->can_access('SA_GRNDELETE')) + label_cell(""); + } end_row(); - $total_grn_value += ($entered_grn->chg_price * abs($entered_grn->this_quantity_inv)); + $total_grn_value += round2($entered_grn->chg_price * abs($entered_grn->this_quantity_inv), + user_price_dec()); $i++; if ($i > 15) @@ -336,14 +524,31 @@ function display_grn_items(&$supp_trans, $mode=0) } } } - - label_row(_("Total"), number_format2($total_grn_value,user_price_dec()), - "colspan=5 align=right", "nowrap align=right"); - echo "
"; - - echo ""; - - end_table(); // outertable + if ($mode == 1) + { + $ret = display_grn_items_for_selection($supp_trans, $k); + $colspan = 10; + } + else + $colspan = 5; + label_row(_("Total"), price_format($total_grn_value), + "colspan=$colspan align=right", "nowrap align=right"); + if (!$ret) + { + start_row(); + echo ""; + if ($supp_trans->is_invoice) + display_note(_("There are no outstanding items received from this supplier that have not been invoiced by them."), 0, 0); + else + { + display_note(_("There are no received items for the selected supplier that have been invoiced.")); + display_note(_("Credits can only be applied to invoiced items."), 0, 0); + } + echo ""; + end_row(); + } + end_table(1); + div_end(); return $total_grn_value; } @@ -351,15 +556,15 @@ function display_grn_items(&$supp_trans, $mode=0) //-------------------------------------------------------------------------------------------------- function get_duedate_from_terms(&$supp_trans) { - if (!is_date($supp_trans->tran_date)) + if (!is_date($supp_trans->tran_date)) { $supp_trans->tran_date = Today(); } - if (substr( $supp_trans->terms, 0, 1) == "1") + if (substr( $supp_trans->terms, 0, 1) == "1") { /*Its a day in the following month when due */ $supp_trans->due_date = add_days(end_month($supp_trans->tran_date), (int) substr( $supp_trans->terms,1)); - } - else + } + else { /*Use the Days Before Due to add to the invoice date */ $supp_trans->due_date = add_days($supp_trans->tran_date, (int) substr( $supp_trans->terms,1)); }