From: <ex...@us...> - 2014-11-20 12:36:56
|
Revision: 6996 http://sourceforge.net/p/web-erp/reponame/6996 Author: exsonqu Date: 2014-11-20 12:36:52 +0000 (Thu, 20 Nov 2014) Log Message: ----------- 20/11/14 Exson: Add GRN numbers to select grns screen in SuppInvGRNs.php. Modified Paths: -------------- trunk/SuppInvGRNs.php Modified: trunk/SuppInvGRNs.php =================================================================== --- trunk/SuppInvGRNs.php 2014-11-20 11:39:56 UTC (rev 6995) +++ trunk/SuppInvGRNs.php 2014-11-20 12:36:52 UTC (rev 6996) @@ -252,6 +252,7 @@ <tr> <th class="ascending">' . _('Select') . '</th> <th class="ascending">' . _('Sequence') . ' #</th> + <th class="ascending">' . _('GRN Number') . '</th> <th class="ascending">' . _('Order') . '</th> <th class="ascending">' . _('Item Code') . '</th> <th class="ascending">' . _('Description') . '</th> @@ -283,6 +284,7 @@ <td><input type="checkbox" name="GRNNo_' . $GRNTmp->GRNNo . '" /></td>'; } echo '<td>' . $GRNTmp->GRNNo . '</td> + <td>' . $GRNTmp->GRNBatchNo . '</td> <td>' . $GRNTmp->PONo . '</td> <td>' . $GRNTmp->ItemCode . '</td> <td>' . $GRNTmp->ItemDescription . '</td> @@ -308,4 +310,4 @@ echo '</div> </form>'; include('includes/footer.inc'); -?> \ No newline at end of file +?> |