Modified: ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/order/webapp/ordermgr/quote/ViewQuoteItemInfo.ftl
URL: http://svn.apache.org/viewvc/ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/order/webapp/ordermgr/quote/ViewQuoteItemInfo.ftl?rev=1654682&r1=1654681&r2=1654682&view=diff ============================================================================== --- ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/order/webapp/ordermgr/quote/ViewQuoteItemInfo.ftl (original) +++ ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/order/webapp/ordermgr/quote/ViewQuoteItemInfo.ftl Sun Jan 25 18:31:01 2015 @@ -95,9 +95,9 @@ under the License. </#if> </div> </td> - <td></td> <td align="right" valign="top">${quoteItem.quantity!}</td> <td align="right" valign="top">${quoteItem.selectedAmount!}</td> + <td></td> <td align="right" valign="top"><@ofbizCurrency amount=quoteItem.quoteUnitPrice isoCode=quote.currencyUomId/></td> <td align="right" valign="top"><@ofbizCurrency amount=totalQuoteItemAdjustmentAmount isoCode=quote.currencyUomId/></td> <td align="right" valign="top"><@ofbizCurrency amount=totalQuoteItemAmount isoCode=quote.currencyUomId/></td> Modified: ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/order/widget/ordermgr/FieldLookupForms.xml URL: http://svn.apache.org/viewvc/ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/order/widget/ordermgr/FieldLookupForms.xml?rev=1654682&r1=1654681&r2=1654682&view=diff ============================================================================== --- ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/order/widget/ordermgr/FieldLookupForms.xml (original) +++ ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/order/widget/ordermgr/FieldLookupForms.xml Sun Jan 25 18:31:01 2015 @@ -425,10 +425,10 @@ under the License. <field name="quoteItemSeqId" title="${uiLabelMap.OrderOrderQuoteItemSeqId}" widget-style="buttontext" use-when="${bsh:isPromo==null}"> <hyperlink also-hidden="false" target-type="plain" description="${quoteItemSeqId}" target="javascript:set_value('${quoteItemSeqId}')"/> </field> - <field name="quoteItemSeqId" title="${uiLabelMap.OrderOrderQuoteItemSeqId}" widget-style="buttontext" use-when="${bsh:isPromo!=null&&isPromo.equals("N")}"> + <field name="quoteItemSeqId" title="${uiLabelMap.OrderOrderQuoteItemSeqId}" widget-style="buttontext" use-when="${groovy: 'N'.equals(isPromo)}"> <hyperlink also-hidden="false" target-type="plain" description="${quoteItemSeqId}" target="javascript:set_value('${quoteItemSeqId}')"/> </field> - <field name="quoteItemSeqId" title="${uiLabelMap.OrderOrderQuoteItemSeqId}" use-when="${bsh:isPromo!=null&&isPromo.equals("Y")}"><display/></field> + <field name="quoteItemSeqId" title="${uiLabelMap.OrderOrderQuoteItemSeqId}" use-when="${groovy: 'Y'.equals(isPromo)}"><display/></field> <field name="productId"> <display-entity entity-name="Product" key-field-name="productId" description="${productId} - ${internalName}"/> </field> Modified: ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/order/widget/ordermgr/QuoteForms.xml URL: http://svn.apache.org/viewvc/ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/order/widget/ordermgr/QuoteForms.xml?rev=1654682&r1=1654681&r2=1654682&view=diff ============================================================================== --- ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/order/widget/ordermgr/QuoteForms.xml (original) +++ ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/order/widget/ordermgr/QuoteForms.xml Sun Jan 25 18:31:01 2015 @@ -195,13 +195,13 @@ under the License. <parameter param-name="quoteItemSeqId"/> </hyperlink> </field> - <field name="quoteItemSeqId" title="${uiLabelMap.OrderOrderQuoteItemSeqId}" widget-style="buttontext" use-when="${bsh:isPromo!=null&&isPromo.equals("N")}"> + <field name="quoteItemSeqId" title="${uiLabelMap.OrderOrderQuoteItemSeqId}" widget-style="buttontext" use-when="${groovy: 'N'.equals(isPromo)}"> <hyperlink also-hidden="false" description="${quoteItemSeqId}" target="EditQuoteItem"> <parameter param-name="quoteId"/> <parameter param-name="quoteItemSeqId"/> </hyperlink> </field> - <field name="quoteItemSeqId" title="${uiLabelMap.OrderOrderQuoteItemSeqId}" use-when="${bsh:isPromo!=null&&isPromo.equals("Y")}"><display/></field> + <field name="quoteItemSeqId" title="${uiLabelMap.OrderOrderQuoteItemSeqId}" use-when="${groovy: 'Y'.equals(isPromo)}"><display/></field> <field name="productId" title="${uiLabelMap.ProductProductId}"> <display-entity entity-name="Product" key-field-name="productId" description="${productId} - ${internalName}"/> </field> Modified: ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/party/config/PartyEntityLabels.xml URL: http://svn.apache.org/viewvc/ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/party/config/PartyEntityLabels.xml?rev=1654682&r1=1654681&r2=1654682&view=diff ============================================================================== --- ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/party/config/PartyEntityLabels.xml (original) +++ ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/party/config/PartyEntityLabels.xml Sun Jan 25 18:31:01 2015 @@ -2961,7 +2961,6 @@ <value xml:lang="hi-IN">पà¥à¤°à¤¬à¤à¤§à¤</value> <value xml:lang="it">Responsabile</value> <value xml:lang="ja">ããã¼ã¸ã£</value> - <value xml:lang="nl">ManageR</value> <value xml:lang="pt-BR">Gerente</value> <value xml:lang="ro">Responsabil</value> <value xml:lang="ru">ÐенеджеÑ</value> Modified: ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/product/config/ProductUiLabels.xml URL: http://svn.apache.org/viewvc/ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/product/config/ProductUiLabels.xml?rev=1654682&r1=1654681&r2=1654682&view=diff ============================================================================== --- ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/product/config/ProductUiLabels.xml (original) +++ ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/product/config/ProductUiLabels.xml Sun Jan 25 18:31:01 2015 @@ -11350,7 +11350,8 @@ <value xml:lang="zh-TW">æä½ååé¡,ç¨æ¼æä½</value> </property> <property key="ProductActionForRule"> - <value xml:lang="en">Action For Rule</value> + <value xml:lang="en">Actions For Rule</value> + <value xml:lang="fr">Actions pour la règle</value> <value xml:lang="ja">ã«ã¼ã«ã«å¯¾ããã¢ã¯ã·ã§ã³</value> <value xml:lang="vi">Ãp dụng cho ChÃnh sách</value> <value xml:lang="zh">æä½ï¼ç¨äºè§å</value> @@ -14510,6 +14511,7 @@ </property> <property key="ProductConditionsForRule"> <value xml:lang="en">Conditions For Rule</value> + <value xml:lang="fr">Conditions pour la règle</value> <value xml:lang="ja">ã«ã¼ã«ã«å¯¾ããæ¡ä»¶</value> <value xml:lang="vi">Äiá»u kiá»n cho Luáºt áp dụng</value> <value xml:lang="zh">æ¡ä»¶ï¼ç¨äºè§å</value> Modified: ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/product/testdef/FacilityTest.xml URL: http://svn.apache.org/viewvc/ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/product/testdef/FacilityTest.xml?rev=1654682&r1=1654681&r2=1654682&view=diff ============================================================================== --- ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/product/testdef/FacilityTest.xml (original) +++ ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/product/testdef/FacilityTest.xml Sun Jan 25 18:31:01 2015 @@ -39,8 +39,8 @@ under the License. <entity-xml action="load" entity-xml-url="component://product/testdef/data/IssuanceTestData.xml"/> </test-case> - <test-case case-name="issuance-tests"> +<!-- <test-case case-name="issuance-tests"> <junit-test-suite class-name="org.ofbiz.shipment.test.IssuanceTest"/> </test-case> - +--> </test-suite> Modified: ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/product/webapp/catalog/promo/EditProductPromoRules.ftl URL: http://svn.apache.org/viewvc/ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/product/webapp/catalog/promo/EditProductPromoRules.ftl?rev=1654682&r1=1654681&r2=1654682&view=diff ============================================================================== --- ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/product/webapp/catalog/promo/EditProductPromoRules.ftl (original) +++ ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/product/webapp/catalog/promo/EditProductPromoRules.ftl Sun Jan 25 18:31:01 2015 @@ -274,7 +274,7 @@ under the License. <td> <div> <b> ${uiLabelMap.ProductAction} ${(productPromoAction.productPromoActionSeqId)!}</b> - <form method="post" action="<@ofbizUrl>updateProductPromoAction</@ofbizUrl>"> + <form method="post" action="<@ofbizUrl>updateProductPromoAction</@ofbizUrl>" name="updateProductPromoAction"> <input type="hidden" name="productPromoId" value="${(productPromoAction.productPromoId)!}" /> <input type="hidden" name="productPromoRuleId" value="${(productPromoAction.productPromoRuleId)!}" /> <input type="hidden" name="productPromoActionSeqId" value="${(productPromoAction.productPromoActionSeqId)!}" /> @@ -293,8 +293,11 @@ under the License. <input type="hidden" name="orderAdjustmentTypeId" value="${(productPromoAction.orderAdjustmentTypeId)!}" /> ${uiLabelMap.ProductQuantity}: <input type="text" size="5" name="quantity" value="${(productPromoAction.quantity)!}" /> ${uiLabelMap.ProductAmount}: <input type="text" size="5" name="amount" value="${(productPromoAction.amount)!}" /> - ${uiLabelMap.ProductItemId}: <input type="text" size="15" name="productId" value="${(productPromoAction.productId)!}" /> - ${uiLabelMap.PartyParty}: <input type="text" size="10" name="partyId" value="${(productPromoAction.partyId)!}" /><br /> + <br/> + ${uiLabelMap.ProductItemId}: <@htmlTemplate.lookupField value="${(productPromoAction.productId)!}" formName="updateProductPromoAction" name="productId" id="productId" fieldFormName="LookupProduct"/> + <br/> + ${uiLabelMap.PartyParty}: <@htmlTemplate.lookupField value="${(productPromoAction.partyId)!}" formName="updateProductPromoAction" name="partyId" id="partyId" fieldFormName="LookupUserLoginAndPartyDetails"/> + <br/> ${uiLabelMap.ProductServiceName}: <input type="text" size="20" name="serviceName" value="${(productPromoAction.serviceName)!}" /> ${uiLabelMap.UseCartQuantity}: <select name="useCartQuantity"> @@ -388,7 +391,7 @@ under the License. <div>${uiLabelMap.ProductNoActionProducts}</div> </#if> <div> - <form method="post" action="<@ofbizUrl>createProductPromoProduct</@ofbizUrl>" name="createProductPromoProductActions">> + <form method="post" action="<@ofbizUrl>createProductPromoProduct</@ofbizUrl>" name="createProductPromoProductActions"> <input type="hidden" name="productPromoId" value="${productPromoId}" /> <input type="hidden" name="productPromoRuleId" value="${productPromoAction.productPromoRuleId}" /> <input type="hidden" name="productPromoActionSeqId" value="${productPromoAction.productPromoActionSeqId}" /> @@ -415,7 +418,7 @@ under the License. <tr> <td colspan="3"> <div> - <form method="post" action="<@ofbizUrl>createProductPromoAction</@ofbizUrl>"> + <form method="post" action="<@ofbizUrl>createProductPromoAction</@ofbizUrl>" name="createProductPromoAction"> <input type="hidden" name="productPromoId" value="${(productPromoRule.productPromoId)!}" /> <input type="hidden" name="productPromoRuleId" value="${(productPromoRule.productPromoRuleId)!}" /> <span class="label"><b>${uiLabelMap.CommonNew}:</b> </span> @@ -427,8 +430,11 @@ under the License. <input type="hidden" name="orderAdjustmentTypeId" value="PROMOTION_ADJUSTMENT" /> ${uiLabelMap.ProductQuantity}: <input type="text" size="5" name="quantity" /> ${uiLabelMap.ProductAmount}: <input type="text" size="5" name="amount" /> - ${uiLabelMap.ProductItemId}: <input type="text" size="15" name="productId" /> - ${uiLabelMap.PartyParty}: <input type="text" size="10" name="partyId" /><br /> + <br/> + ${uiLabelMap.ProductItemId}:<@htmlTemplate.lookupField formName="createProductPromoAction" name="productId" id="productId" fieldFormName="LookupProduct"/> + <br/> + ${uiLabelMap.PartyParty}: <@htmlTemplate.lookupField formName="createProductPromoAction" name="partyId" id="partyId" fieldFormName="LookupUserLoginAndPartyDetails"/> + <br/> ${uiLabelMap.ProductServiceName}: <input type="text" size="20" name="serviceName" /> ${uiLabelMap.UseCartQuantity}: <select name="useCartQuantity"> Modified: ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/product/widget/catalog/ProductScreens.xml URL: http://svn.apache.org/viewvc/ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/product/widget/catalog/ProductScreens.xml?rev=1654682&r1=1654681&r2=1654682&view=diff ============================================================================== --- ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/product/widget/catalog/ProductScreens.xml (original) +++ ofbiz/branches/OFBIZ-5312-ofbiz-ecommerce-seo-2013-10-23/applications/product/widget/catalog/ProductScreens.xml Sun Jan 25 18:31:01 2015 @@ -34,7 +34,7 @@ under the License. <entity-one entity-name="Product" value-field="product"/> <set field="product" from-field="product" global="true"/> <set field="ecomLink" value="${groovy: product.internalName.replace(' ', org.ofbiz.product.category.ftl.CatalogUrlSeoTransform.URL_HYPHEN) - + org.ofbiz.product.category.ftl.CatalogUrlSeoTransform.URL_HYPHEN + productId + '.html'}"/> + + org.ofbiz.product.category.ftl.CatalogUrlSeoTransform.URL_HYPHEN + productId + '.html'}"/> </actions> <widgets> <decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}"> |
Free forum by Nabble | Edit this page |