Skip to content
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: 3 additions & 1 deletion entity/HumanResourcesViewEntities.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ along with this software (see the LICENSE.md file). If not, see
<alias-all entity-alias="PTY"><exclude field="comments"/></alias-all>
<alias-all entity-alias="PER"/>
<alias-all entity-alias="ORG"/>
<alias-all entity-alias="PID"/>
<alias-all entity-alias="PID"><exclude field="fromDate"/><exclude field="thruDate"/></alias-all>
<alias entity-alias="PID" name="partyIdentificationFromDate" field="fromDate"/>
<alias entity-alias="PID" name="partyIdentificationThruDate" field="thruDate"/>
</view-entity>
<view-entity entity-name="EmploymentSalaryFromDetail" package="mantle.humanres.employment">
<member-entity entity-alias="EMPL" entity-name="mantle.humanres.employment.Employment"/>
Expand Down
2 changes: 1 addition & 1 deletion service/mantle.rest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ along with this software (see the LICENSE.md file). If not, see
<resource name="identifications">
<method type="get"><entity name="mantle.party.PartyIdentification" operation="list"/></method>
<method type="post"><entity name="mantle.party.PartyIdentification" operation="create"/></method>
<id name="partyIdTypeEnumId">
<id name="partyIdentificationId">
<method type="get"><entity name="mantle.party.PartyIdentification" operation="one"/></method>
<method type="patch"><entity name="mantle.party.PartyIdentification" operation="update"/></method>
<method type="delete"><entity name="mantle.party.PartyIdentification" operation="delete"/></method>
Expand Down
2 changes: 2 additions & 0 deletions service/mantle/humanres/PayrollServices.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ along with this software (see the LICENSE.md file). If not, see
<econdition field-name="timePeriodTypeId" from="timePeriod.timePeriodTypeId" ignore="ignoreType"/>
<econdition field-name="fromDate" operator="less-equals" from="thruTimestamp" or-null="true"/>
<econdition field-name="thruDate" operator="greater-equals" from="fromTimestamp" or-null="true"/>
<econdition field-name="partyIdentificationFromDate" operator="less-equals" from="thruTimestamp" or-null="true"/>
<econdition field-name="partyIdentificationThruDate" operator="greater-equals" from="fromTimestamp" or-null="true"/>
<order-by field-name="pseudoId"/>
</entity-find>
</actions>
Expand Down