Olivier Heintz created OFBIZ-4973:
-------------------------------------

             Summary: AvsSettings screenlet read data bug, entity-one should be 
used, not entity-and
                 Key: OFBIZ-4973
                 URL: https://issues.apache.org/jira/browse/OFBIZ-4973
             Project: OFBiz
          Issue Type: Bug
          Components: party
            Reporter: Olivier Heintz
            Priority: Minor


On Party ViewProfile screen  (or PartyProfile PortalPage) in AvsSettings 
screenlet, the user entry value is never shown because database request in 
screen action is wrong.
Entity PartyIcsAvsOverride has only one PK which is partyId so 
{code}
                <entity-and entity-name="PartyIcsAvsOverride" 
list="avsOverride">
                    <field-map field-name="partyId" from-field="partyId"/>
                </entity-and>
{code}
should be replace by
{code}
                <entity-one entity-name="PartyIcsAvsOverride" 
value-field="avsOverride">
                    <field-map field-name="partyId"/>
                </entity-one>
{code}



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to