Merged changes from main CVS up to 2.1.5
[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 = 2;
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(_("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("colspan=9 $table_style 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_total = number_format2($total,user_price_dec());
70 label_row(_("Total Excluding Tax/Shipping"),  $display_total,
71         "colspan=6", "nowrap align=right");
72
73 end_table(1);
74
75 is_voided_display(25, $_GET['trans_no'], _("This delivery has been voided."));
76
77 end_page(true);
78
79 ?>