X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=purchasing%2Fincludes%2Fui%2Finvoice_ui.inc;h=2e9520e708db3103a68b5aacf833e1e1fb639ace;hb=eea7d897f2c6b2234d4fca235a5a2d30ac900b45;hp=04a008793e1ecdadb60715260777de43c6ce72bd;hpb=71d682a4c6063256396a3d8fe15f0c534b4cf46f;p=fa-stable.git diff --git a/purchasing/includes/ui/invoice_ui.inc b/purchasing/includes/ui/invoice_ui.inc index 04a00879..2e9520e7 100644 --- a/purchasing/includes/ui/invoice_ui.inc +++ b/purchasing/includes/ui/invoice_ui.inc @@ -174,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); @@ -292,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); @@ -313,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(); @@ -386,12 +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('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"]); @@ -420,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(); } } @@ -453,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"); } @@ -501,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"); @@ -548,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();