From: <te...@us...> - 2014-09-05 00:55:12
|
Revision: 6862 http://sourceforge.net/p/web-erp/reponame/6862 Author: tehonu Date: 2014-09-05 00:55:09 +0000 (Fri, 05 Sep 2014) Log Message: ----------- Added UOM field Modified Paths: -------------- trunk/BOMs.php Modified: trunk/BOMs.php =================================================================== --- trunk/BOMs.php 2014-09-01 09:47:13 UTC (rev 6861) +++ trunk/BOMs.php 2014-09-05 00:55:09 UTC (rev 6862) @@ -72,6 +72,7 @@ $sql = "SELECT bom.sequence, bom.component, stockmaster.description as itemdescription, + stockmaster.units, locations.locationname, locations.loccode, workcentres.description as workcentrename, @@ -149,6 +150,7 @@ <td>%s</td> <td>%s</td> <td>%s</td> + <td>%s</td> <td class="number">%s</td> <td><a href="%s&Select=%s&SelectedComponent=%s">' . _('Edit') . '</a></td> <td>' . $DrillText . '</td> @@ -161,6 +163,7 @@ $myrow['locationname'], $myrow['workcentrename'], locale_number_format($myrow['quantity'],'Variable'), + $myrow['units'], ConvertSQLDate($myrow['effectiveafter']), ConvertSQLDate($myrow['effectiveto']), $AutoIssue, @@ -563,6 +566,7 @@ <th>' . _('Location') . '</th> <th>' . _('Work Centre') . '</th> <th>' . _('Quantity') . '</th> + <th>' . _('UOM') . '</th> <th>' . _('Effective After') . '</th> <th>' . _('Effective To') . '</th> <th>' . _('Auto Issue') . '</th> |