|
@@ -687,7 +687,8 @@
|
|
|
if (this.dimension == 3) {
|
|
if (this.dimension == 3) {
|
|
|
data = await storageApi.getHierarchyList({
|
|
data = await storageApi.getHierarchyList({
|
|
|
ids: this.selectionList.map((item) => item.id).join(','),
|
|
ids: this.selectionList.map((item) => item.id).join(','),
|
|
|
- type: this.dimension
|
|
|
|
|
|
|
+ type: this.dimension,
|
|
|
|
|
+ warehouseId: this.searchForm.warehouseId,
|
|
|
});
|
|
});
|
|
|
} else if (this.dimension == 2) {
|
|
} else if (this.dimension == 2) {
|
|
|
data = await storageApi.getHierarchyFifo({
|
|
data = await storageApi.getHierarchyFifo({
|
|
@@ -695,6 +696,7 @@
|
|
|
ids: this.selectionList.map((item) => item.id),
|
|
ids: this.selectionList.map((item) => item.id),
|
|
|
builders: this.selectionList.map((item) => {
|
|
builders: this.selectionList.map((item) => {
|
|
|
return {
|
|
return {
|
|
|
|
|
+ warehouseId: this.searchForm.warehouseId,
|
|
|
categoryId: item.categoryId,
|
|
categoryId: item.categoryId,
|
|
|
num: item.outboundNum,
|
|
num: item.outboundNum,
|
|
|
id: item.id
|
|
id: item.id
|
|
@@ -706,6 +708,7 @@
|
|
|
type: this.dimension,
|
|
type: this.dimension,
|
|
|
builders: this.selectionList.map((item) => {
|
|
builders: this.selectionList.map((item) => {
|
|
|
return {
|
|
return {
|
|
|
|
|
+ warehouseId: this.searchForm.warehouseId,
|
|
|
categoryId: item.categoryId,
|
|
categoryId: item.categoryId,
|
|
|
num: item.outboundNum
|
|
num: item.outboundNum
|
|
|
};
|
|
};
|