Author: deepak
Date: Sun Nov 6 07:47:11 2016 New Revision: 1768287 URL: http://svn.apache.org/viewvc?rev=1768287&view=rev Log: Fixed: Fixed typo introduced in revision#1768235 (OFBIZ-8926) (OFBIZ-8927) Modified: ofbiz/trunk/applications/accounting/minilang/admin/AcctgAdminServices.xml ofbiz/trunk/applications/party/minilang/party/PartyServices.xml Modified: ofbiz/trunk/applications/accounting/minilang/admin/AcctgAdminServices.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/minilang/admin/AcctgAdminServices.xml?rev=1768287&r1=1768286&r2=1768287&view=diff ============================================================================== --- ofbiz/trunk/applications/accounting/minilang/admin/AcctgAdminServices.xml (original) +++ ofbiz/trunk/applications/accounting/minilang/admin/AcctgAdminServices.xml Sun Nov 6 07:47:11 2016 @@ -27,7 +27,7 @@ under the License. <!-- check that the party is an INTERNAL_ORGANIZATION, as defined in PartyRole --> <set from-field="parameters.partyId" field="lookupParams.partyId"/> <set value="INTERNAL_ORGANIZATIO" field="lookupParams.roleTypeId"/> - <<find-by-primary-key entity-name="PartyRole" map="lookupParams" value-field="partyRole" use-cache="true"/> + <find-by-primary-key entity-name="PartyRole" map="lookupParams" value-field="partyRole" use-cache="true"/> <if-empty field="partyRole"> <add-error><fail-property resource="AccountingUiLabels" property="AccountingPartyMustBeInternalOrganization"/></add-error> <check-errors/> Modified: ofbiz/trunk/applications/party/minilang/party/PartyServices.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/minilang/party/PartyServices.xml?rev=1768287&r1=1768286&r2=1768287&view=diff ============================================================================== --- ofbiz/trunk/applications/party/minilang/party/PartyServices.xml (original) +++ ofbiz/trunk/applications/party/minilang/party/PartyServices.xml Sun Nov 6 07:47:11 2016 @@ -259,7 +259,7 @@ under the License. <set from-field="dataResourceId" field="dataResource.dataResourceId"/> <call-service service-name="updateDataResource" in-map-name="dataResource" break-on-error="false"/> <set from-field="dataResource.dataResourceId" field="lookup.dataResourceId"/> - <<find-by-primary-key entity-name="DataResource" map="lookup" value-field="dataResourceMap" use-cache="true"/> + <find-by-primary-key entity-name="DataResource" map="lookup" value-field="dataResourceMap" use-cache="true"/> </if-not-empty> <set-service-fields service-name="createContent" map="parameters" to-map="createContentMap"/> @@ -322,13 +322,13 @@ under the License. <if-not-empty field="parameters._uploadedFile_fileName"> <set from-field="parameters.contentId" field="lookupParam.contentId"/> - <<find-by-primary-key entity-name="Content" map="lookupParam" value-field="content" use-cache="true"/> + <find-by-primary-key entity-name="Content" map="lookupParam" value-field="content" use-cache="true"/> <if-not-empty field="content.dataResourceId"> <set-service-fields service-name="updateDataResource" map="parameters" to-map="dataResource"/> <set from-field="content.dataResourceId" field="dataResource.dataResourceId"/> <call-service service-name="updateDataResource" in-map-name="dataResource" break-on-error="false"/> <set from-field="content.dataResourceId" field="lookup.dataResourceId"/> - <<find-by-primary-key entity-name="DataResource" map="lookup" value-field="dataResourceMap" use-cache="true"/> + <find-by-primary-key entity-name="DataResource" map="lookup" value-field="dataResourceMap" use-cache="true"/> <else> <set field="absolute" value="true" type="Boolean"/> <call-class-method method-name="getDataResourceContentUploadPath" class-name="org.apache.ofbiz.content.data.DataResourceWorker" ret-field="uploadPath"> @@ -357,7 +357,7 @@ under the License. <set from-field="dataResourceId" field="dataResource.dataResourceId"/> <call-service service-name="updateDataResource" in-map-name="dataResource" break-on-error="false"/> <set from-field="dataResource.dataResourceId" field="lookup.dataResourceId"/> - <<find-by-primary-key entity-name="DataResource" map="lookup" value-field="dataResourceMap" use-cache="true"/> + <find-by-primary-key entity-name="DataResource" map="lookup" value-field="dataResourceMap" use-cache="true"/> </else> </if-not-empty> </if-not-empty> |
Free forum by Nabble | Edit this page |