Forgot this issue, there was a typo in, and I found other cases where 2 string are concatenated like that, so it's ok

In applications/order/webapp/ordermgr/return/ReturnForms.xml, it has been 
migrated like that

<field name="newCreditCard" widget-style="buttontext" use-when="returnHeader!=null&amp;&amp;returnHeader.getString(&quot;fromPartyId&quot;)!=null"> <hyperlink also-hidden="false" target="/partymgr/control/editcreditcard" target-window="partymgr" description="${uiLabelMap.AccountingCreateNewCreditCard}" target-type="inter-app">
               <parameter param-name="partyId" 
value="${returnHeader.fromPartyId}${externalKeyParam}"/>
           </hyperlink>
       </field>


       <field name="fromPartyId" title="${uiLabelMap.OrderReturnFromParty}">
<display-entity entity-name="PartyNameView" key-field-name="partyId" description="${groupName} ${firstName} ${lastName}"> <sub-hyperlink link-style="buttontext" target-type="inter-app" description="${fromPartyId}" target="/partymgr/control/viewprofile">
                   <parameter param-name="partyId" 
value="fromPartyId}${externalKeyParam"/>
               </sub-hyperlink>
           </display-entity>
       </field>


       <field name="destinationFacilityId" widget-style="buttontext" 
title="${uiLabelMap.OrderReturnDestinationFacility}">
           <hyperlink target-type="inter-app" description="${destinationFacilityId}" 
target="/facility/control/EditFacility">
               <parameter param-name="facilityId" 
value="destinationFacilityId}${externalKeyParam"/>
           </hyperlink>
       </field>

Jacques
From: "Jacques Le Roux" <[email protected]>
in r759666   I have commited this

- <hyperlink also-hidden="false" target="/partymgr/control/editcreditcard?partyId=${returnHeader.fromPartyId}${externalKeyParam}" target-window="partymgr" description="${uiLabelMap.AccountingCreateNewCreditCard}" target-type="inter-app"/> + <hyperlink also-hidden="false" target="/partymgr/control/editcreditcard" target-window="partymgr" description="${uiLabelMap.AccountingCreateNewCreditCard}" target-type="inter-app">
+                <parameter param-name="partyId" 
value="=${returnHeader.fromPartyId}${externalKeyParam}"/>
+            </hyperlink>

I find weird partyId=${returnHeader.fromPartyId}${externalKeyParam} ? Was it right to interpret it as value="=${returnHeader.fromPartyId}${externalKeyParam}"

Jacques


Reply via email to