|
From: <ex...@us...> - 2017-06-29 23:45:47
|
Revision: 7802
http://sourceforge.net/p/web-erp/reponame/7802
Author: exsonqu
Date: 2017-06-29 23:45:44 +0000 (Thu, 29 Jun 2017)
Log Message:
-----------
30/06/17 Exson: Fixed the argument count error in SupplierInvoice.php.
Modified Paths:
--------------
trunk/SupplierInvoice.php
Modified: trunk/SupplierInvoice.php
===================================================================
--- trunk/SupplierInvoice.php 2017-06-26 05:15:21 UTC (rev 7801)
+++ trunk/SupplierInvoice.php 2017-06-29 23:45:44 UTC (rev 7802)
@@ -452,6 +452,7 @@
grns.qtyrecd,
grns.quantityinv,
grns.stdcostunit,
+ grns.supplierref,
purchorderdetails.glcode,
purchorderdetails.shiptref,
purchorderdetails.jobref,
@@ -490,7 +491,8 @@
$myrow['assetid'],
0,
$myrow['decimalplaces'],
- $myrow['grnbatch']);
+ $myrow['grnbatch'],
+ $myrow['supplierref']);
}
} //end if the order has no controlled items on it
} //only allow auto receiving of all lines if the PO is authorised
|