X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=purchasing%2Fincludes%2Fui%2Finvoice_ui.inc;h=2e9520e708db3103a68b5aacf833e1e1fb639ace;hb=eea7d897f2c6b2234d4fca235a5a2d30ac900b45;hp=d6258d281b5c180c842686f36d5a53a82d7f01d3;hpb=dc72612432d1e44cd7d1269083c3670f721d5161;p=fa-stable.git diff --git a/purchasing/includes/ui/invoice_ui.inc b/purchasing/includes/ui/invoice_ui.inc index d6258d28..2e9520e7 100644 --- a/purchasing/includes/ui/invoice_ui.inc +++ b/purchasing/includes/ui/invoice_ui.inc @@ -146,14 +146,12 @@ function invoice_header(&$supp_trans) set_global_supplier($_POST['supplier_id']); - $supplier_currency = get_supplier_currency($supp_trans->supplier_id); - $company_currency = get_company_currency(); - if ($supplier_currency != $company_currency) + if ($supp_trans->currency != $company_currency) { - label_row(_("Supplier's Currency:"), "" . $supplier_currency . ""); - exchange_rate_display($company_currency, $supplier_currency, $_POST['tran_date']); + label_row(_("Supplier's Currency:"), "" . $supp_trans->currency . ""); + exchange_rate_display($company_currency, $supp_trans->currency, $_POST['tran_date']); } label_row(_("Tax Group:"), $supp_trans->tax_description); @@ -176,7 +174,7 @@ function invoice_totals(&$supp_trans) 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($supp_trans->tax_group_id); + $taxes = $supp_trans->get_taxes(); $tax_total = display_edit_tax_items($taxes, $colspan, $supp_trans->tax_included, 0, true); $display_total = price_format($supp_trans->ov_amount + $tax_total); @@ -294,7 +292,7 @@ function display_gl_items(&$supp_trans, $mode=0) if (count($supp_trans->gl_codes) > 0) { - foreach ($supp_trans->gl_codes as $entered_gl_code) + foreach ($supp_trans->gl_codes as $n => $entered_gl_code) { alt_table_row_color($k); @@ -315,9 +313,9 @@ function display_gl_items(&$supp_trans, $mode=0) if ($mode == 1) { - delete_button_cell("Delete2" . $entered_gl_code->Counter, _("Delete"), + delete_button_cell("Delete2" . $n, _("Delete"), _('Remove line from document')); - edit_button_cell("Edit" . $entered_gl_code->Counter, _("Edit"), + edit_button_cell("Edit" . $n, _("Edit"), _('Edit line from document')); } end_row(); @@ -388,13 +386,6 @@ function display_grn_items_for_selection(&$supp_trans, $k) $n = $myrow["id"]; label_cell(get_trans_view_str(ST_SUPPRECEIVE, $myrow["grn_batch_id"]), "nowrap align='right'"); - hidden('qty_recd'.$n, $myrow["qty_recd"]); - hidden('item_code'.$n, $myrow["item_code"]); - hidden('item_description'.$n, $myrow["description"]); - hidden('prev_quantity_inv'.$n, $myrow['quantity_inv']); - hidden('order_price'.$n, $myrow['unit_price']); - hidden('std_cost_unit'.$n, $myrow['std_cost_unit']); - hidden('po_detail_item'.$n, $myrow['po_detail_item']); label_cell(get_trans_view_str(ST_PURCHORDER, $myrow["purch_order_no"]), "nowrap align='right'"); label_cell($myrow["item_code"]); label_cell($myrow["description"]); @@ -423,11 +414,6 @@ function display_grn_items_for_selection(&$supp_trans, $k) 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->trans_type == ST_SUPPINVOICE) && $_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(); } } @@ -456,11 +442,7 @@ function display_grn_items(&$supp_trans, $mode=0) if ($mode == 1) { if ($supp_trans->trans_type == ST_SUPPINVOICE) - { $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"); } @@ -504,8 +486,6 @@ function display_grn_items(&$supp_trans, $mode=0) _("Received On"), _("Quantity Received"), _("Quantity Invoiced"), _("Qty Yet To Invoice"), $supp_trans->tax_included ? _("Price after Tax") : _("Price before Tax"), _("Total"), ""); - if (($supp_trans->trans_type == ST_SUPPINVOICE) && $_SESSION["wa_current_user"]->can_access('SA_GRNDELETE')) // Added 2008-10-18 by Joe Hunt. Only admins can remove GRNs - $th[] = ""; if ($supp_trans->trans_type == ST_SUPPCREDIT) { $th[7] = _("Qty Yet To Credit"); @@ -528,12 +508,12 @@ function display_grn_items(&$supp_trans, $mode=0) alt_table_row_color($k); $grn_batch = get_grn_batch_from_item($entered_grn->id); - label_cell(get_trans_view_str(ST_SUPPRECEIVE, $grn_batch)); + label_cell(get_trans_view_str(ST_SUPPRECEIVE, $grn_batch), "nowrap align='right'"); if ($mode == 1) { // label_cell($entered_grn->id); $row = get_grn_batch($grn_batch); - label_cell(get_trans_view_str(ST_PURCHORDER, $row["purch_order_no"])); // PO + label_cell(get_trans_view_str(ST_PURCHORDER, $row["purch_order_no"]), "nowrap align='right'"); // PO } label_cell($entered_grn->item_code); label_cell($entered_grn->item_description); @@ -551,8 +531,6 @@ function display_grn_items(&$supp_trans, $mode=0) if ($mode == 1) { delete_button_cell("Delete" . $entered_grn->id, _("Edit"), _('Edit document line')); - if (($supp_trans->trans_type == ST_SUPPINVOICE) && $_SESSION["wa_current_user"]->can_access('SA_GRNDELETE')) - label_cell(""); } end_row(); @@ -599,7 +577,7 @@ function display_grn_items(&$supp_trans, $mode=0) //-------------------------------------------------------------------------------------------------- function get_duedate_from_terms(&$trans) { - $date = get_class($trans) == 'purch_order' ? $trans->orig_order_date : $trans->tran_date; + $date = $trans->tran_date; if (!is_date($date)) {