Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrected entity name in create#PartyUserAccount service, infoString is not a valid field name for mantle.party.contact.PartyContactMech #158

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions service/mantle/party/PartyServices.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
This software is in the public domain under CC0 1.0 Universal plus a
This software is in the public domain under CC0 1.0 Universal plus a
Grant of Patent License.

To the extent possible under law, the author(s) have dedicated all
Expand Down Expand Up @@ -156,7 +156,7 @@ along with this software (see the LICENSE.md file). If not, see
<if condition="customerStatusId">
<if condition="customerStatusId == '_exists_'">
<set field="queryString" from="(queryString ? queryString + ' AND ' : '' ) + '_exists_:customerStatusId'"/>
<else>
<else>
<set field="queryString" from="(queryString ? queryString + ' AND ' : '' ) + 'customerStatusId:' + customerStatusId + '*'"/>
</else>
</if>
Expand Down Expand Up @@ -517,7 +517,7 @@ along with this software (see the LICENSE.md file). If not, see
<if condition="existingUaList"><return error="true" message="Email ${emailAddress} is already in use. Login with username ${existingUaList[0].username}"/></if>

<!-- handle emailAddress, EmailPrimary -->
<entity-find entity-name="mantle.party.contact.PartyContactMech" list="primaryEmailList">
<entity-find entity-name="mantle.party.contact.PartyContactMechInfo" list="primaryEmailList">
<date-filter/><econdition field-name="partyId"/>
<econdition field-name="contactMechPurposeId" value="EmailPrimary"/>
<order-by field-name="-fromDate"/>
Expand Down