Skip to content

Commit

Permalink
Merge pull request #33 from hotwax/#32
Browse files Browse the repository at this point in the history
Improved: Added support to get the detail of specified import item if importItemSeqId is passed (#32).
  • Loading branch information
dixitdeepak authored Dec 24, 2024
2 parents cd3bc52 + 37c7416 commit dc91e03
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion service/co/hotwax/cycleCount/InventoryCountServices.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@
<description>Service to get Inventory Count Import Item details.</description>
<!--Pass the inventoryCountImportId to fetch items of a particular Inventory Count only -->
<in-parameters>
<parameter name="inventoryCountImportId" required="false"/>
<parameter name="inventoryCountImportId"/>
<parameter name="importItemSeqId"/>
<parameter name="statusId"/>
<parameter name="orderBy" default-value="-inventoryCountImportId, importItemSeqId"/>
<parameter name="pageIndex" type="Integer" default-value="0">
Expand All @@ -101,6 +102,7 @@
<entity-find entity-name="co.hotwax.warehouse.InventoryCountImportItemView" list="invCountImpItemItr">
<search-form-inputs default-order-by="${orderBy}" />
<econdition field-name="inventoryCountImportId" ignore-if-empty="true"/>
<econdition field-name="importItemSeqId" ignore-if-empty="true"/>
<econdition field-name="statusId" ignore-if-empty="true"/>
</entity-find>
<set field="itemList" from="[]"/>
Expand Down

0 comments on commit dc91e03

Please sign in to comment.