|
From: <dai...@us...> - 2015-12-20 00:49:19
|
Revision: 7418
http://sourceforge.net/p/web-erp/reponame/7418
Author: daintree
Date: 2015-12-20 00:49:16 +0000 (Sun, 20 Dec 2015)
Log Message:
-----------
Show supplier item code when receiving goods
Modified Paths:
--------------
trunk/GoodsReceived.php
trunk/doc/Change.log
Modified: trunk/GoodsReceived.php
===================================================================
--- trunk/GoodsReceived.php 2015-12-19 21:40:28 UTC (rev 7417)
+++ trunk/GoodsReceived.php 2015-12-20 00:49:16 UTC (rev 7418)
@@ -118,6 +118,7 @@
</tr>
<tr>
<th>' . _('Item Code') . '</th>
+ <th>' . _('Supplier') . '<br />'. _('Item') . '</th>
<th>' . _('Description') . '</th>
<th>' . _('Quantity') . '<br />' . _('Ordered') . '</th>
<th>' . _('Units') . '</th>
@@ -183,6 +184,7 @@
//Now Display LineItem
echo '<td><a href="' . $RootPath . '/' . $_SESSION['part_pics_dir'] . '/' . $LnItm->StockID . '.jpg" target="_blank">' . $LnItm->StockID . '</a></td>
+ <td>' . $LnItm->Suppliers_PartNo . '</td>
<td>' . $LnItm->ItemDescription . '</td>
<td class="number">' . $DisplaySupplierQtyOrd . '</td>
<td>' . $LnItm->SuppliersUnit . '</td>
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2015-12-19 21:40:28 UTC (rev 7417)
+++ trunk/doc/Change.log 2015-12-20 00:49:16 UTC (rev 7418)
@@ -1,5 +1,6 @@
webERP Change Log
+20/12/15 Phil: GoodsReceived.php now shows the supplier's item code as well
20/12/15 Phil: SelectProduct.php now allows items to be searched based on the supplier's item code
14/12/15 Exson: Remove retrieving allocated data in Z_AutoCustomerAllocations.php.
11/12/15 Exson: Fixed the default Transaction Disable bug to enable for CustomerBranches.php.
|