From: <rc...@us...> - 2014-11-29 17:45:55
|
Revision: 7010 http://sourceforge.net/p/web-erp/reponame/7010 Author: rchacon Date: 2014-11-29 17:45:46 +0000 (Sat, 29 Nov 2014) Log Message: ----------- Add label and mouse-over help for Pan size input field. Modified Paths: -------------- trunk/Stocks.php trunk/doc/Manual/ManualInventory.html Modified: trunk/Stocks.php =================================================================== --- trunk/Stocks.php 2014-11-29 16:25:11 UTC (rev 7009) +++ trunk/Stocks.php 2014-11-29 17:45:46 UTC (rev 7010) @@ -1287,8 +1287,8 @@ </tr>'; echo '<tr> - <td>' . _('Pan Size') . ':</td> - <td><input type="text" class="number" name="Pansize" size="6" maxlength="6" value="' . locale_number_format($_POST['Pansize'],0) . '" /></td> + <td><label for="Pansize">' . _('Pan Size') . ':</label></td> + <td><input class="number" id="Pansize" maxlength="6" name="Pansize" size="6" title="' . _('Order multiple. It is the minimum packing quantity.') . '" type="text" value="' . locale_number_format($_POST['Pansize'],0) . '" /></td> </tr> <tr> <td>' . _('Shrinkage Factor') . ':</td> Modified: trunk/doc/Manual/ManualInventory.html =================================================================== --- trunk/doc/Manual/ManualInventory.html 2014-11-29 16:25:11 UTC (rev 7009) +++ trunk/doc/Manual/ManualInventory.html 2014-11-29 17:45:46 UTC (rev 7010) @@ -138,12 +138,15 @@ <p>The description translations can be maintained within the same parameters above. The translations that can be maintained are set in the system configuration screen. Any number of translations can be maintained. These translations are used to print on customer invoices if the customer is set up to use one of the languages for which translations are maintained. If not translation is available then the fall back is to the default description.</p> - <!--h3>Image File</h3> + <h3>Image File</h3> - <p>...</p--><!--Restrictions (.jpg)--> + <!--Restrictions (.jpg)--> <!--Suggested content: Where is it used? (e.g. scripts, formulas, etc.)--> + <p>Picture files of items can be uploaded to the server. The system will check that files uploaded are less than defined maxum size (in KB) before they will be allowed to be uploaded. Large pictures will make the system slow and will be difficult to view in the stock maintenance screen.</p> + <p>Maximum Size in KB of uploaded images are defined by system administrators in <i><u>Main Menu</u></i> > <i><u>Setup</u></i> > <i>General Setup Options</i> > <i><u>System Parameters</u></i> > <i>General Settings</i>.</p> + <h3>Category</h3> <p>These categories need to be set up first - from the System Setup tab of the menu. In selecting the stock category, be aware that the system uses the category information for analysis and summary reporting as well as identifying accounts for standard cost general ledger integration, if this option is enabled. There is a link to create new stock categories from the stock item entry page.</p> @@ -280,7 +283,7 @@ <h3>Pan Size</h3> - <p>This modifier is sometimes called the order multiple. It is minimum packing quantity. It allows you to create planned orders in even multiples. This is especially useful if you are required by your suppliers to place orders in specific lot sizes. It is also a useful modifier is you have established your own production run sizes. This modifier causes MRP to inflate the required order quantity to an even increment of the pansize value. As with all modifiers you do need to be careful with this modifier as its use could lead to excess inventories.</p> + <p>This modifier is sometimes called the order multiple. It is the minimum packing quantity. It allows you to create planned orders in even multiples. This is especially useful if you are required by your suppliers to place orders in specific lot sizes. It is also a useful modifier is you have established your own production run sizes. This modifier causes MRP to inflate the required order quantity to an even increment of the pansize value. As with all modifiers you do need to be careful with this modifier as its use could lead to excess inventories.</p> <p>In other words if it is most efficient to manufacture an item in batches of 10 then the pan size would be 10, and MRP would calculate demand in batches of 10, so would inflate a demand of 17 to 20. For instance, we purchase some chemical materials which is 25 kg/pack. The pansize means you have to purchase at least one pack each time.</p> |