Skip to content

Commit

Permalink
Merge pull request #13 from ymaheshwari1/fix/performFind-facility
Browse files Browse the repository at this point in the history
Fixed: issue of performFind count not correct when passing defaultDaysToShip
  • Loading branch information
ymaheshwari1 authored Nov 17, 2023
2 parents 0cba592 + 49b4c8d commit be4090c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/store/modules/facility/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const actions: ActionTree<FacilityState, RootState> = {
"entityName": "FacilityAndProductStore",
"noConditionFind": "Y",
"distinct": "Y",
"fieldList": ['defaultDaysToShip', 'facilityId', 'facilityName', 'facilityTypeId', 'maximumOrderLimit'],
"fieldList": ['facilityId', 'facilityName', 'facilityTypeId', 'maximumOrderLimit', 'defaultDaysToShip'],
...payload
}

Expand Down Expand Up @@ -108,7 +108,7 @@ const actions: ActionTree<FacilityState, RootState> = {
entityName: "FacilityAndProductStore",
noConditionFind: "Y",
distinct: "Y",
fieldList: ['defaultDaysToShip', 'facilityId', 'facilityName', 'facilityTypeId', 'maximumOrderLimit'],
fieldList: ['facilityId', 'facilityName', 'facilityTypeId', 'maximumOrderLimit', 'defaultDaysToShip'],
viewSize: 1
}

Expand Down

0 comments on commit be4090c

Please sign in to comment.