Truncation bug when inserting/updating entered supplier credit limit
[fa-stable.git] / purchasing / view / view_grn.php
index 0df3c99458930ec1f1379646e8a80275f989f948..299cf5b6fdaaef706dce3ebe025c9319a8e3f510 100644 (file)
@@ -1,5 +1,14 @@
 <?php
-
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
+***********************************************************************/
 $page_security = 2;
 $path_to_root="../..";
 include($path_to_root . "/purchasing/includes/po_class.inc");
@@ -9,7 +18,7 @@ page(_("View Purchase Order Delivery"), true);
 
 include($path_to_root . "/purchasing/includes/purchasing_ui.inc");
 
-if (!isset($_GET['trans_no'])) 
+if (!isset($_GET['trans_no']))
 {
        die ("<BR>" . _("This page must be called with a Purchase Order Delivery number to review."));
 }
@@ -26,13 +35,13 @@ display_heading2(_("Line Details"));
 start_table("colspan=9 $table_style width=90%");
 $th = array(_("Item Code"), _("Item Description"), _("Delivery Date"), _("Quantity"),
        _("Unit"), _("Price"), _("Line Total"), _("Quantity Invoiced"));
-       
-table_header($th);     
+
+table_header($th);
 
 $total = 0;
 $k = 0;  //row colour counter
 
-foreach ($purchase_order->line_items as $stock_item) 
+foreach ($purchase_order->line_items as $stock_item)
 {
 
        $line_total = $stock_item->qty_received * $stock_item->price;
@@ -42,18 +51,19 @@ foreach ($purchase_order->line_items as $stock_item)
        label_cell($stock_item->stock_id);
        label_cell($stock_item->item_description);
        label_cell($stock_item->req_del_date, "nowrap align=right");
-       qty_cell($stock_item->qty_received);
+       $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_cell($line_total);
-       qty_cell($stock_item->qty_inv);
+       qty_cell($stock_item->qty_inv, false, $dec);
        end_row();
 
        $total += $line_total;
 }
 
 $display_total = number_format2($total,user_price_dec());
-label_row(_("Total Excluding Tax/Shipping"),  $display_total, 
+label_row(_("Total Excluding Tax/Shipping"),  $display_total,
        "colspan=6", "nowrap align=right");
 
 end_table(1);