X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=purchasing%2Fview%2Fview_po.php;h=052103deeff636c073bf4161085a329996ee85aa;hb=2cb57633d2f3e27b0c2b2e7448564f467e21e1fd;hp=878c59af80d042939ddc7efb4f2c8dd2e30cee9c;hpb=da8311619dd73feae101d246a1957b972e00cbd2;p=fa-stable.git diff --git a/purchasing/view/view_po.php b/purchasing/view/view_po.php index 878c59af..052103de 100644 --- a/purchasing/view/view_po.php +++ b/purchasing/view/view_po.php @@ -1,27 +1,34 @@ . +***********************************************************************/ +$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"), true); - include($path_to_root . "/purchasing/includes/purchasing_ui.inc"); -if (!isset($_GET['trans_no'])) +$js = ""; +if ($use_popup_windows) + $js .= get_js_open_window(900, 500); +page(_("View Purchase Order"), true, false, "", $js); + + +if (!isset($_GET['trans_no'])) { die ("
" . _("This page must be called with a purchase order number to review.")); } display_heading(_("Purchase Order") . " #" . $_GET['trans_no']); -if (isset($_SESSION['Items'])) -{ - unset ($_SESSION['Items']); -} - $purchase_order = new purch_order; read_po($_GET['trans_no'], $purchase_order); @@ -41,7 +48,7 @@ table_header($th); $total = $k = 0; $overdue_items = false; -foreach ($purchase_order->line_items as $stock_item) +foreach ($purchase_order->line_items as $stock_item) { $line_total = $stock_item->quantity * $stock_item->price; @@ -52,21 +59,22 @@ foreach ($purchase_order->line_items as $stock_item) { start_row("class='overduebg'"); $overdue_items = true; - } - else + } + else { alt_table_row_color($k); } label_cell($stock_item->stock_id); label_cell($stock_item->item_description); - qty_cell($stock_item->quantity); + $dec = get_qty_dec($stock_item->stock_id); + qty_cell($stock_item->quantity, false, $dec); label_cell($stock_item->units); - amount_cell($stock_item->price); + amount_decimal_cell($stock_item->price); amount_cell($line_total); label_cell($stock_item->req_del_date); - qty_cell($stock_item->qty_received); - qty_cell($stock_item->qty_inv); + qty_cell($stock_item->qty_received, false, $dec); + qty_cell($stock_item->qty_inv, false, $dec); end_row(); $total += $line_total; @@ -100,7 +108,7 @@ if (db_num_rows($grns_result) > 0) { alt_table_row_color($k); - label_cell(get_trans_view_str(25,$myrow["id"])); + label_cell(get_trans_view_str(ST_SUPPRECEIVE,$myrow["id"])); label_cell($myrow["reference"]); label_cell(sql2date($myrow["delivery_date"])); end_row();