|
|
|
@@ -672,7 +672,13 @@ const ApproverStockTakeAll: React.FC<ApproverStockTakeAllProps> = ({ |
|
|
|
const request: BatchSaveApproverStockTakeAllRequest = { |
|
|
|
stockTakeId: selectedSession.stockTakeId, |
|
|
|
approverId: currentUserId, |
|
|
|
variancePercentTolerance: parseFloat(variancePercentTolerance || "0") || undefined, |
|
|
|
itemKeyword: appliedFilters?.itemKeyword || null, |
|
|
|
warehouseKeyword: appliedFilters?.warehouseKeyword || null, |
|
|
|
sectionDescription: |
|
|
|
appliedFilters?.sectionDescription && appliedFilters.sectionDescription !== "All" |
|
|
|
? appliedFilters.sectionDescription |
|
|
|
: null, |
|
|
|
stockTakeSections: appliedFilters?.stockTakeSession || null, |
|
|
|
}; |
|
|
|
|
|
|
|
const result = await batchSaveApproverStockTakeRecordsAll(request); |
|
|
|
|