31126c97f05a5912fbc4917d7af73b478f11a108
[fa-stable.git] / purchasing / view / view_grn.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 $page_security = 'SA_SUPPTRANSVIEW';
13 $path_to_root = "../..";
14 include($path_to_root . "/purchasing/includes/po_class.inc");
15
16 include($path_to_root . "/includes/session.inc");
17
18 $js = "";
19 if ($use_popup_windows)
20         $js .= get_js_open_window(900, 500);
21 page(_($help_context = "View Purchase Order Delivery"), true, false, "", $js);
22
23 include($path_to_root . "/purchasing/includes/purchasing_ui.inc");
24
25 if (!isset($_GET['trans_no']))
26 {
27         die ("<BR>" . _("This page must be called with a Purchase Order Delivery number to review."));
28 }
29
30 $purchase_order = new purch_order;
31 read_grn($_GET["trans_no"], $purchase_order);
32
33 display_heading(_("Purchase Order Delivery") . " #" . $_GET['trans_no']);
34 echo "<BR>";
35 display_grn_summary($purchase_order);
36
37 display_heading2(_("Line Details"));
38
39 start_table(TABLESTYLE, "colspan=9 width=90%");
40 $th = array(_("Item Code"), _("Item Description"), _("Delivery Date"), _("Quantity"),
41         _("Unit"), _("Price"), _("Line Total"), _("Quantity Invoiced"));
42
43 table_header($th);
44
45 $total = 0;
46 $k = 0;  //row colour counter
47
48 foreach ($purchase_order->line_items as $stock_item)
49 {
50
51         $line_total = $stock_item->qty_received * $stock_item->price;
52
53         alt_table_row_color($k);
54
55         label_cell($stock_item->stock_id);
56         label_cell($stock_item->item_description);
57         label_cell($stock_item->req_del_date, "nowrap align=right");
58         $dec = get_qty_dec($stock_item->stock_id);
59         qty_cell($stock_item->qty_received, false, $dec);
60         label_cell($stock_item->units);
61         amount_decimal_cell($stock_item->price);
62         amount_cell($line_total);
63         qty_cell($stock_item->qty_inv, false, $dec);
64         end_row();
65
66         $total += $line_total;
67 }
68
69 $display_sub_tot = number_format2($total,user_price_dec());
70 label_row(_("Sub Total"), $display_sub_tot,
71         "align=right colspan=6", "nowrap align=right", 1);
72
73 $taxes = $purchase_order->get_taxes();
74 $tax_total = display_edit_tax_items($taxes, 6, $purchase_order->tax_included, 1);
75
76 $display_total = price_format(($total + $tax_total));
77
78 start_row();
79 label_cells(_("Amount Total"), $display_total, "colspan=6 align='right'","align='right'");
80 label_cell('');
81 end_row();
82
83
84 end_table(1);
85
86 is_voided_display(ST_SUPPRECEIVE, $_GET['trans_no'], _("This delivery has been voided."));
87
88 end_page(true, false, false, ST_SUPPRECEIVE, $_GET['trans_no']);
89
90 ?>