|
|
@ -132,7 +132,7 @@ export async function getManagementPrecisions(itemCodes, locationCode, callback) |
|
|
|
}) |
|
|
|
} |
|
|
|
//通过父包装查询
|
|
|
|
export function getBalanceByManagementPrecisionByPacking(label, packageInfo,locationCode, fromInventoryStatuses, callback) { |
|
|
|
export function getBalanceByManagementPrecisionByPacking(label, packageInfo,locationCode, fromInventoryStatuses, pdaCountBalanceQuery,callback) { |
|
|
|
let result = { |
|
|
|
list: [], |
|
|
|
success: true, |
|
|
@ -147,25 +147,25 @@ export function getBalanceByManagementPrecisionByPacking(label, packageInfo,loca |
|
|
|
let managementPrecision = res.data[0].ManagementPrecision; |
|
|
|
switch (managementPrecision) { |
|
|
|
case 'BY_PACKAGING': |
|
|
|
byPacking(label, packageInfo,locationCode, fromInventoryStatuses, res => { |
|
|
|
byPacking(label, packageInfo,locationCode, fromInventoryStatuses,pdaCountBalanceQuery, res => { |
|
|
|
res.managementPrecision = managementPrecision; |
|
|
|
callback(res); |
|
|
|
}); |
|
|
|
break; |
|
|
|
case 'BY_BATCH': |
|
|
|
byBatch(label, locationCode, fromInventoryStatuses, res => { |
|
|
|
byBatch(label, locationCode, fromInventoryStatuses,pdaCountBalanceQuery, res => { |
|
|
|
res.managementPrecision = managementPrecision; |
|
|
|
callback(res); |
|
|
|
}); |
|
|
|
break; |
|
|
|
case 'BY_QUANTITY': |
|
|
|
byQuantity(label, locationCode, fromInventoryStatuses, res => { |
|
|
|
byQuantity(label, locationCode, fromInventoryStatuses,pdaCountBalanceQuery, res => { |
|
|
|
res.managementPrecision = managementPrecision; |
|
|
|
callback(res); |
|
|
|
}); |
|
|
|
break; |
|
|
|
case 'BY_UNIQUEID': |
|
|
|
byUniqueId(label, fromInventoryStatuses, res => { |
|
|
|
byUniqueId(label, fromInventoryStatuses,pdaCountBalanceQuery, res => { |
|
|
|
res.managementPrecision = managementPrecision; |
|
|
|
callback(res); |
|
|
|
}); |
|
|
@ -234,7 +234,7 @@ export function getBalanceByManagementPrecision(label,locationCode, fromInventor |
|
|
|
* @param {Object} locationCode |
|
|
|
* @param {Object} callback |
|
|
|
*/ |
|
|
|
export function byPacking(label, packageInfo,locationCode, fromInventoryStatuses, callback) { |
|
|
|
export function byPacking(label, packageInfo,locationCode, fromInventoryStatuses,pdaCountBalanceQuery, callback) { |
|
|
|
let result = { |
|
|
|
success: true, |
|
|
|
message: '', |
|
|
@ -281,7 +281,14 @@ export function byPacking(label, packageInfo,locationCode, fromInventoryStatuses |
|
|
|
value: status |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if(pdaCountBalanceQuery){ |
|
|
|
filters.push({ |
|
|
|
column: "pdaCountBalanceQuery", |
|
|
|
action: "==", |
|
|
|
value: "true" |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
var params = { |
|
|
@ -315,7 +322,7 @@ export function byPacking(label, packageInfo,locationCode, fromInventoryStatuses |
|
|
|
* @param {Object} locationCode |
|
|
|
* @param {Object} callback |
|
|
|
*/ |
|
|
|
export function byBatch(label, locationCode, fromInventoryStatuses, callback) { |
|
|
|
export function byBatch(label, locationCode, fromInventoryStatuses,pdaCountBalanceQuery, callback) { |
|
|
|
var filters = [] |
|
|
|
filters.push({ |
|
|
|
column: "itemCode", |
|
|
@ -346,6 +353,14 @@ export function byBatch(label, locationCode, fromInventoryStatuses, callback) { |
|
|
|
value: status |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
if(pdaCountBalanceQuery){ |
|
|
|
filters.push({ |
|
|
|
column: "pdaCountBalanceQuery", |
|
|
|
action: "==", |
|
|
|
value: "true" |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
var params = { |
|
|
|
filters: filters, |
|
|
@ -382,7 +397,7 @@ export function byBatch(label, locationCode, fromInventoryStatuses, callback) { |
|
|
|
* @param {Object} locationCode |
|
|
|
* @param {Object} callback |
|
|
|
*/ |
|
|
|
export function byQuantity(label, locationCode, fromInventoryStatuses, callback) { |
|
|
|
export function byQuantity(label, locationCode, fromInventoryStatuses,pdaCountBalanceQuery, callback) { |
|
|
|
let result = { |
|
|
|
success: true, |
|
|
|
message: '', |
|
|
@ -419,6 +434,14 @@ export function byQuantity(label, locationCode, fromInventoryStatuses, callback) |
|
|
|
value: status |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
if(pdaCountBalanceQuery){ |
|
|
|
filters.push({ |
|
|
|
column: "pdaCountBalanceQuery", |
|
|
|
action: "==", |
|
|
|
value: "true" |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
var params = { |
|
|
|
filters: filters, |
|
|
@ -449,7 +472,7 @@ export function byQuantity(label, locationCode, fromInventoryStatuses, callback) |
|
|
|
* @param {Object} locationCode |
|
|
|
* @param {Object} callback |
|
|
|
*/ |
|
|
|
export function byUniqueId(label, locationCode, fromInventoryStatuses, callback) { |
|
|
|
export function byUniqueId(label, locationCode, fromInventoryStatuses,pdaCountBalanceQuery, callback) { |
|
|
|
let param = { |
|
|
|
packingNumber: label.packingNumber |
|
|
|
}; |
|
|
@ -474,6 +497,14 @@ export function byUniqueId(label, locationCode, fromInventoryStatuses, callback) |
|
|
|
value: status |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
if(pdaCountBalanceQuery){ |
|
|
|
filters.push({ |
|
|
|
column: "pdaCountBalanceQuery", |
|
|
|
action: "==", |
|
|
|
value: "true" |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
var params = { |
|
|
|
filters: filters, |
|
|
|