Author: jleroux
Date: Fri Nov 18 22:00:31 2016
New Revision: 1770441
URL:
http://svn.apache.org/viewvc?rev=1770441&view=revLog:
Fixed: Wrong label definition from PartyUiLabels.xml
(OFBIZ-9120)
In PartyUiLabels.xml the PartyCountryMissing label has been deleted but is still
in use in one file
Fix: Use the CommonCountryMissing label from CommonUiLabels instead
Thanks: Heiko Elberg
Modified:
ofbiz/trunk/applications/order/minilang/customer/CheckoutMapProcs.xml
Modified: ofbiz/trunk/applications/order/minilang/customer/CheckoutMapProcs.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/customer/CheckoutMapProcs.xml?rev=1770441&r1=1770440&r2=1770441&view=diff==============================================================================
--- ofbiz/trunk/applications/order/minilang/customer/CheckoutMapProcs.xml (original)
+++ ofbiz/trunk/applications/order/minilang/customer/CheckoutMapProcs.xml Fri Nov 18 22:00:31 2016
@@ -28,7 +28,7 @@ under the License.
<process field="countryCode">
<copy/>
<not-empty>
- <fail-property resource="PartyUiLabels" property="PartyCountryCodeMissing"/>
+ <fail-property resource="PartyUiLabels" property="CommonCountryMissing"/>
</not-empty>
</process>
<process field="areaCode">
@@ -141,7 +141,7 @@ under the License.
<simple-map-processor name="shipToPhone">
<process field="shipToCountryCode">
<copy to-field="countryCode"/>
- <not-empty><fail-property resource="PartyUiLabels" property="PartyCountryCodeMissing"/></not-empty>
+ <not-empty><fail-property resource="PartyUiLabels" property="CommonCountryMissing"/></not-empty>
</process>
<process field="shipToAreaCode">
<copy to-field="areaCode"/>
@@ -157,7 +157,7 @@ under the License.
<simple-map-processor name="billToPhone">
<process field="billToCountryCode">
<copy to-field="countryCode"/>
- <not-empty><fail-property resource="PartyUiLabels" property="PartyCountryCodeMissing"/></not-empty>
+ <not-empty><fail-property resource="PartyUiLabels" property="CommonCountryMissing"/></not-empty>
</process>
<process field="billToAreaCode">
<copy to-field="areaCode"/>