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

Adjustments for single sequenced PK + history in PartyIdentification. #89

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions screen/SimpleScreens/Customer/EditCustomer.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ along with this software (see the LICENSE.md file). If not, see
<default-response url="."/></transition>
<transition name="updatePartyIdentification"><service-call name="update#mantle.party.PartyIdentification"/>
<default-response url="."/></transition>
<transition name="deletePartyIdentification"><parameter name="partyIdTypeEnumId"/>
<service-call name="delete#mantle.party.PartyIdentification"/><default-response url="."/></transition>
<transition name="deletePartyIdentification"><parameter name="partyIdentificationId"/>
<service-call name="update#mantle.party.PartyIdentification" in-map="[partyIdentificationId:partyIdentificationId, thruDate:ec.user.nowTimestamp]"/><default-response url="."/></transition>

<transition name="createUserAccount"><service-call name="mantle.party.PartyServices.create#PartyUserAccount"/>
<default-response url="."/></transition>
Expand Down
7 changes: 4 additions & 3 deletions screen/SimpleScreens/Party/EditParty.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ along with this software (see the LICENSE.md file). If not, see
<default-response url="."/></transition>
<transition name="updatePartyIdentification"><service-call name="update#mantle.party.PartyIdentification"/>
<default-response url="."/></transition>
<transition name="deletePartyIdentification"><parameter name="partyIdTypeEnumId"/>
<service-call name="delete#mantle.party.PartyIdentification"/><default-response url="."/></transition>
<transition name="deletePartyIdentification"><parameter name="partyIdentificationId"/>
<service-call name="update#mantle.party.PartyIdentification" in-map="[partyIdentificationId:partyIdentificationId, thruDate:ec.user.nowTimestamp]"/><default-response url="."/></transition>

<transition name="createUserAccount"><service-call name="mantle.party.PartyServices.create#PartyUserAccount"/>
<default-response url="."/></transition>
Expand Down Expand Up @@ -359,7 +359,7 @@ along with this software (see the LICENSE.md file). If not, see

<section name="PartyIdentificationSection"><actions>
<entity-find entity-name="mantle.party.PartyIdentification" list="partyIdentificationList">
<econdition field-name="partyId"/></entity-find>
<econdition field-name="partyId"/><date-filter/></entity-find>
<set field="partyIdTypeEnumIds" from="partyIdentificationList.partyIdTypeEnumId"/>
</actions><widgets>
<container-box><box-header title="Identification"/><box-toolbar>
Expand All @@ -384,6 +384,7 @@ along with this software (see the LICENSE.md file). If not, see
</container-dialog>
</box-toolbar><box-body-nopad>
<form-list name="IdentificationsForm" list="partyIdentificationList" transition="updatePartyIdentification">
<field name="partyIdentificationId"><default-field><hidden/></default-field></field>
<field name="partyId"><default-field><hidden/></default-field></field>
<field name="partyIdTypeEnumId"><default-field title="ID Type">
<display-entity entity-name="moqui.basic.Enumeration"/>
Expand Down
4 changes: 2 additions & 2 deletions screen/SimpleScreens/Supplier/EditSupplier.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ along with this software (see the LICENSE.md file). If not, see
<default-response url="."/></transition>
<transition name="updatePartyIdentification"><service-call name="update#mantle.party.PartyIdentification"/>
<default-response url="."/></transition>
<transition name="deletePartyIdentification"><parameter name="partyIdTypeEnumId"/>
<service-call name="delete#mantle.party.PartyIdentification"/><default-response url="."/></transition>
<transition name="deletePartyIdentification"><parameter name="partyIdentificationId"/>
<service-call name="update#mantle.party.PartyIdentification" in-map="[partyIdentificationId:partyIdentificationId, thruDate:ec.user.nowTimestamp]"/><default-response url="."/></transition>

<transition name="updatePaymentMethodInfo"><default-response url="UpdatePaymentMethodInfo"/></transition>
<transition name="removePaymentMethod"><service-call name="mantle.account.PaymentMethodServices.delete#PaymentMethod"/>
Expand Down