You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by mr...@apache.org on 2016/07/30 06:12:27 UTC

svn commit: r1754593 - in /ofbiz/branches/release14.12/applications: accounting/script/org/ofbiz/accounting/tax/TaxAuthorityServices.xml party/config/PartyUiLabels.xml

Author: mridulpathak
Date: Sat Jul 30 06:12:26 2016
New Revision: 1754593

URL: http://svn.apache.org/viewvc?rev=1754593&view=rev
Log:
[OFBIZ-7442] Fixed error when creating PartyTaxAuthInfo by improving error handling. Migrating fix from trunk r1754591.

Modified:
    ofbiz/branches/release14.12/applications/accounting/script/org/ofbiz/accounting/tax/TaxAuthorityServices.xml
    ofbiz/branches/release14.12/applications/party/config/PartyUiLabels.xml

Modified: ofbiz/branches/release14.12/applications/accounting/script/org/ofbiz/accounting/tax/TaxAuthorityServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/branches/release14.12/applications/accounting/script/org/ofbiz/accounting/tax/TaxAuthorityServices.xml?rev=1754593&r1=1754592&r2=1754593&view=diff
==============================================================================
--- ofbiz/branches/release14.12/applications/accounting/script/org/ofbiz/accounting/tax/TaxAuthorityServices.xml (original)
+++ ofbiz/branches/release14.12/applications/accounting/script/org/ofbiz/accounting/tax/TaxAuthorityServices.xml Sat Jul 30 06:12:26 2016
@@ -224,6 +224,13 @@ under the License.
 
         <call-simple-method method-name="validatePartyTaxIdInline"/>
 
+        <entity-one value-field="taxAuth" entity-name="TaxAuthority"/>
+        <if-empty field="taxAuth">
+            <add-error>
+                <fail-property resource="PartyUiLabels" property="PartyTaxAuthPartyAndGeoNotAvailable"/>
+            </add-error>
+        </if-empty>
+
         <!-- done checking preliminary constraints, see if there are any errors -->
         <check-errors/>
 

Modified: ofbiz/branches/release14.12/applications/party/config/PartyUiLabels.xml
URL: http://svn.apache.org/viewvc/ofbiz/branches/release14.12/applications/party/config/PartyUiLabels.xml?rev=1754593&r1=1754592&r2=1754593&view=diff
==============================================================================
--- ofbiz/branches/release14.12/applications/party/config/PartyUiLabels.xml (original)
+++ ofbiz/branches/release14.12/applications/party/config/PartyUiLabels.xml Sat Jul 30 06:12:26 2016
@@ -1943,6 +1943,9 @@
         <value xml:lang="zh">添加会员分区角色</value>
         <value xml:lang="zh_TW">增加團體分區角色</value>
     </property>
+    <property key="PartyTaxAuthPartyAndGeoNotAvailable">
+        <value xml:lang="en">Tax authority is not availble for provided Tax Authority Party and Tax Authority Geo.</value>
+    </property>
     <property key="PageTitleAddPartyTaxAuthInfos">
         <value xml:lang="de">Informationen zur Steuerbehörde Akteur hinzufügen</value>
         <value xml:lang="en">Add Party Tax Authority Info</value>