Removed sparse grn item id from purchase invoice entry form.
authorJanusz Dobrowolski <janusz@frontaccouting.eu>
Wed, 27 Apr 2011 08:45:23 +0000 (10:45 +0200)
committerJanusz Dobrowolski <janusz@frontaccouting.eu>
Wed, 27 Apr 2011 08:45:23 +0000 (10:45 +0200)
purchasing/includes/ui/invoice_ui.inc

index 7eff2392c8aabfac44e24a82664a79207acdaed4..111ac32411c6c1973fcf60d2547dcb0a122f7313 100644 (file)
@@ -354,16 +354,15 @@ function display_grn_items_for_selection(&$supp_trans, $k)
                        alt_table_row_color($k);
 
                        $n = $myrow["id"];
-               label_cell(get_trans_view_str(25, $myrow["grn_batch_id"]));
-               label_cell($myrow["id"].
-               hidden('qty_recd'.$n, $myrow["qty_recd"], false).
-               hidden('item_code'.$n, $myrow["item_code"], false).
-               hidden('item_description'.$n, $myrow["description"], false).
-               hidden('prev_quantity_inv'.$n, $myrow['quantity_inv'], false).
-               hidden('order_price'.$n, $myrow['unit_price'], false).
-               hidden('std_cost_unit'.$n, $myrow['std_cost_unit'], false).
-               hidden('po_detail_item'.$n, $myrow['po_detail_item'], false));
-               hidden('location'.$n, $myrow["loc_code"], false).
+               label_cell(get_trans_view_str(25, $myrow["grn_batch_id"]).
+               hidden('qty_recd'.$n, $myrow["qty_recd"], false).
+               hidden('item_code'.$n, $myrow["item_code"], false).
+               hidden('item_description'.$n, $myrow["description"], false).
+               hidden('prev_quantity_inv'.$n, $myrow['quantity_inv'], false).
+               hidden('order_price'.$n, $myrow['unit_price'], false).
+               hidden('std_cost_unit'.$n, $myrow['std_cost_unit'], false).
+               hidden('po_detail_item'.$n, $myrow['po_detail_item'], false).
+               hidden('location'.$n, $myrow["loc_code"], false));
                label_cell(get_trans_view_str(ST_PURCHORDER, $myrow["purch_order_no"]));
             label_cell($myrow["item_code"]);
             label_cell($myrow["description"]);
@@ -468,7 +467,7 @@ function display_grn_items(&$supp_trans, $mode=0)
        start_table(TABLESTYLE, "width=95%");
        if ($mode == 1)
        {
-       $th = array(_("Delivery"), _("Sequence #"), _("P.O."), _("Item"), _("Description"),
+       $th = array(_("Delivery"), _("P.O."), _("Item"), _("Description"),
                _("Received On"), _("Quantity Received"), _("Quantity Invoiced"),
                _("Qty Yet To Invoice"), $supp_trans->tax_included ? _("Price after Tax") : _("Price before Tax"), 
                _("Total"), "");
@@ -499,10 +498,9 @@ function display_grn_items(&$supp_trans, $mode=0)
                label_cell(get_trans_view_str(ST_SUPPRECEIVE,$grn_batch));
                if ($mode == 1)
                {
-                               label_cell($entered_grn->id);
                                $row = get_grn_batch($grn_batch);
                                label_cell($row['purch_order_no']); // PO
-                       }       
+                       }
                        label_cell($entered_grn->item_code);
                        label_cell($entered_grn->item_description);
             $dec = get_qty_dec($entered_grn->item_code);