From: <ex...@us...> - 2013-08-21 01:50:51
|
Revision: 6274 http://sourceforge.net/p/web-erp/reponame/6274 Author: exsonqu Date: 2013-08-21 01:50:47 +0000 (Wed, 21 Aug 2013) Log Message: ----------- 21/8/2013 Exson: Revise sortable tag to <tbody> instead of <table>. Reported by Tim. Modified Paths: -------------- trunk/SuppInvGRNs.php Modified: trunk/SuppInvGRNs.php =================================================================== --- trunk/SuppInvGRNs.php 2013-08-20 08:40:17 UTC (rev 6273) +++ trunk/SuppInvGRNs.php 2013-08-21 01:50:47 UTC (rev 6274) @@ -118,9 +118,9 @@ echo '<table class="selection"> <tr> <th colspan="6"><h3>' . _('Invoiced Goods Received Selected') . '</h3></th> - </tr></table>'; + </tr>'; -$tableheader = '<table class="selection"><tr> +$tableheader = '<tbody><tr> <th>' . _('Sequence') . ' #</th> <th>' . _('Item Code') . '</th> <th>' . _('Description') . '</th> @@ -152,7 +152,7 @@ } -echo '<tr> +echo '</tbody><tr> <td colspan="5" align="right">' . _('Total Value of Goods Charged') . ':</td> <td class="number"><h4>' . locale_number_format($TotalValueCharged,$_SESSION['SuppTrans']->CurrDecimalPlaces) . '</h4></td> </tr> @@ -293,9 +293,9 @@ echo '<table class="selection"> <tr> <th colspan="10"><h3>' . _('Goods Received Yet to be Invoiced From') . ' ' . $_SESSION['SuppTrans']->SupplierName.'</h3></th> - </tr></table>'; + </tr>'; - $tableheader = '<table><tr> + $tableheader = '<tbody><tr> <th class="ascending" onclick="SortSelect(this)">' . _('Select') . '</th> <th class="ascending" onclick="SortSelect(this)">' . _('Sequence') . ' #</th> <th class="ascending" onclick="SortSelect(this)">' . _('Order') . '</th> @@ -340,7 +340,7 @@ <td class="number">' . locale_number_format(($GRNTmp->QtyRecd - $GRNTmp->Prev_QuantityInv),$GRNTmp->DecimalPlaces) . '</td> <td class="number">' . locale_number_format($GRNTmp->OrderPrice,$_SESSION['SuppTrans']->CurrDecimalPlaces) . '</td> <td class="number">' . locale_number_format($GRNTmp->OrderPrice * ($GRNTmp->QtyRecd - $GRNTmp->Prev_QuantityInv),$_SESSION['SuppTrans']->CurrDecimalPlaces) . '</td> - </tr>'; + </tr></tbody>'; } echo '</table>'; |
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 +?> |
From: <rc...@us...> - 2016-08-25 21:05:54
|
Revision: 7604 http://sourceforge.net/p/web-erp/reponame/7604 Author: rchacon Date: 2016-08-25 21:05:53 +0000 (Thu, 25 Aug 2016) Log Message: ----------- Add missing space. Modified Paths: -------------- trunk/SuppInvGRNs.php Modified: trunk/SuppInvGRNs.php =================================================================== --- trunk/SuppInvGRNs.php 2016-08-24 09:56:08 UTC (rev 7603) +++ trunk/SuppInvGRNs.php 2016-08-25 21:05:53 UTC (rev 7604) @@ -297,7 +297,7 @@ if(isset($_POST['SelectAll'])) { echo ' checked'; } - echo 'name=" GRNNo_', $GRNTmp->GRNNo, '" type="checkbox" /></td> + echo ' name=" GRNNo_', $GRNTmp->GRNNo, '" type="checkbox" /></td> </tr>'; } echo '</tbody> @@ -315,4 +315,4 @@ echo '</div> </form>'; include('includes/footer.inc'); -?> \ No newline at end of file +?> |