X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=purchasing%2Fview%2Fview_grn.php;h=0a94ac8c8912ad922e280a342343833056d776d2;hb=498f13d19b716779a3b986ff399121fb2ac9a53a;hp=299cf5b6fdaaef706dce3ebe025c9319a8e3f510;hpb=a5242af68e65661edb7175412444dce536a7f311;p=fa-stable.git diff --git a/purchasing/view/view_grn.php b/purchasing/view/view_grn.php index 299cf5b6..0a94ac8c 100644 --- a/purchasing/view/view_grn.php +++ b/purchasing/view/view_grn.php @@ -9,12 +9,16 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License here . ***********************************************************************/ -$page_security = 2; -$path_to_root="../.."; +$page_security = 'SA_SUPPTRANSVIEW'; +$path_to_root = "../.."; include($path_to_root . "/purchasing/includes/po_class.inc"); include($path_to_root . "/includes/session.inc"); -page(_("View Purchase Order Delivery"), true); + +$js = ""; +if ($use_popup_windows) + $js .= get_js_open_window(900, 500); +page(_("View Purchase Order Delivery"), true, false, "", $js); include($path_to_root . "/purchasing/includes/purchasing_ui.inc"); @@ -54,7 +58,7 @@ foreach ($purchase_order->line_items as $stock_item) $dec = get_qty_dec($stock_item->stock_id); qty_cell($stock_item->qty_received, false, $dec); label_cell($stock_item->units); - amount_cell($stock_item->price); + amount_decimal_cell($stock_item->price); amount_cell($line_total); qty_cell($stock_item->qty_inv, false, $dec); end_row(); @@ -68,7 +72,7 @@ label_row(_("Total Excluding Tax/Shipping"), $display_total, end_table(1); -is_voided_display(25, $_GET['trans_no'], _("This delivery has been voided.")); +is_voided_display(ST_SUPPRECEIVE, $_GET['trans_no'], _("This delivery has been voided.")); end_page(true);