Author: jonesde
Date: Mon Oct 11 13:20:20 2010
New Revision: 1021337
URL:
http://svn.apache.org/viewvc?rev=1021337&view=revLog:
Small change to allow a null/empty productStoreId in the Product Store Ship Setup screen
Modified:
ofbiz/trunk/applications/product/webapp/catalog/store/EditProductStoreShipSetup.ftl
Modified: ofbiz/trunk/applications/product/webapp/catalog/store/EditProductStoreShipSetup.ftl
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/webapp/catalog/store/EditProductStoreShipSetup.ftl?rev=1021337&r1=1021336&r2=1021337&view=diff==============================================================================
--- ofbiz/trunk/applications/product/webapp/catalog/store/EditProductStoreShipSetup.ftl (original)
+++ ofbiz/trunk/applications/product/webapp/catalog/store/EditProductStoreShipSetup.ftl Mon Oct 11 13:20:20 2010
@@ -18,7 +18,7 @@ under the License.
-->
<form name="addscarr" method="post" action="<@ofbizUrl>prepareCreateShipMeth</@ofbizUrl>">
<input type="hidden" name="newShipMethod" value="Y"/>
- <input type="hidden" name="productStoreId" value="${productStoreId}"/>
+ <input type="hidden" name="productStoreId" value="${productStoreId?if_exists}"/>
<table cellspacing="0" class="basic-table">
<tr>
<td align="right" class="label">${uiLabelMap.ProductCarrierShipmentMethod}</td>
@@ -38,4 +38,4 @@ under the License.
</td>
</tr>
</table>
-</form>
\ No newline at end of file
+</form>