diff --git a/src/api/asrs/stacker.js b/src/api/asrs/stacker.js index cd255b2..4b9e429 100644 --- a/src/api/asrs/stacker.js +++ b/src/api/asrs/stacker.js @@ -18,6 +18,26 @@ export function updateStacker(data) { }) } +// 巷道入库更新 +export function updateInStacker(data) { + return request({ + url: '/asrs/stacker/updatein', + method: 'put', + data: data, + timeout: 100000, + }) +} + +// 巷道出库更新 +export function updateOutStacker(data) { + return request({ + url: '/asrs/stacker/updateout', + method: 'put', + data: data, + timeout: 100000, + }) +} + // 获得巷道分页 export function getStackerPage(query) { return request({ diff --git a/src/api/asrs/warehouseStorehouse.js b/src/api/asrs/warehouseStorehouse.js index 50ba553..28e5e11 100644 --- a/src/api/asrs/warehouseStorehouse.js +++ b/src/api/asrs/warehouseStorehouse.js @@ -32,6 +32,14 @@ export function inWarehouseStorehouse(data) { data: data }) } +// 外购膜卷入库 +export function buyinWarehouseStorehouse(data) { + return request({ + url: '/asrs/warehouse-storehouse/buyin', + method: 'post', + data: data + }) +} // 手动出库 export function outWarehouseStorehouse(data) { return request({ diff --git a/src/api/oth/delivery.js b/src/api/oth/delivery.js index 07d0b1e..4986eb4 100644 --- a/src/api/oth/delivery.js +++ b/src/api/oth/delivery.js @@ -135,3 +135,12 @@ export function mesoutsync(data) { timeout: 100000, }) } + +// 校验是否最早的货物 +export function checkGoods(query) { + return request({ + url: '/asrs/warehouse-storehouse-goods-specification/check', + method: 'get', + params: query, + }) +} diff --git a/src/api/oth/mainTask.js b/src/api/oth/mainTask.js index 86bd913..eaf324b 100644 --- a/src/api/oth/mainTask.js +++ b/src/api/oth/mainTask.js @@ -17,6 +17,14 @@ export function updateMainTask(data) { data: data }) } +// 主任务巷道变更 +export function updatestacker(data) { + return request({ + url: '/asrs/job-main-task/updatestacker', + method: 'put', + data: data + }) +} // 删除主任务 export function deleteMainTask(id) { @@ -43,6 +51,15 @@ export function getMainTaskPage(query) { }) } +// 线边库分页 +export function getLibraryPage(query) { + return request({ + url: '/asrs/line-edge-library/page', + method: 'get', + params: query + }) +} + // 导出主任务 Excel export function exportMainTaskExcel(query) { return request({ diff --git a/src/layout/index.vue b/src/layout/index.vue index 1803791..65c1826 100644 --- a/src/layout/index.vue +++ b/src/layout/index.vue @@ -140,7 +140,7 @@ export default { if (item.code !== 0) { this.$notify({ title: '异常', - message: item.msg, + message: item.name+'-'+item.msg, type: 'warning', duration: 8000, }); @@ -149,7 +149,7 @@ export default { if (item.code > 30) { this.$notify({ title: '异常', - message: item.msg, + message: item.name+'-'+item.msg, type: 'warning', duration: 9000, }); @@ -168,7 +168,7 @@ export default { if (item.code !== 0) { this.$notify({ title: '异常', - message: item.msg, + message: item.name+'-'+item.msg, type: 'warning', duration: 8000, }); @@ -177,7 +177,7 @@ export default { if (item.code > 30) { this.$notify({ title: '异常', - message: item.msg, + message: item.name+'-'+item.msg, type: 'warning', duration: 9000, }); diff --git a/src/views/asrs/buyRoll/SmallTitle.vue b/src/views/asrs/buyRoll/SmallTitle.vue new file mode 100644 index 0000000..93b4a18 --- /dev/null +++ b/src/views/asrs/buyRoll/SmallTitle.vue @@ -0,0 +1,65 @@ + + + + + + diff --git a/src/views/asrs/buyRoll/add-or-updata.vue b/src/views/asrs/buyRoll/add-or-updata.vue new file mode 100644 index 0000000..261ecdb --- /dev/null +++ b/src/views/asrs/buyRoll/add-or-updata.vue @@ -0,0 +1,432 @@ + + + + + diff --git a/src/views/asrs/buyRoll/attr-add.vue b/src/views/asrs/buyRoll/attr-add.vue new file mode 100644 index 0000000..396956e --- /dev/null +++ b/src/views/asrs/buyRoll/attr-add.vue @@ -0,0 +1,166 @@ + + + + + diff --git a/src/views/asrs/buyRoll/index.vue b/src/views/asrs/buyRoll/index.vue new file mode 100644 index 0000000..7e9f24a --- /dev/null +++ b/src/views/asrs/buyRoll/index.vue @@ -0,0 +1,363 @@ + + + diff --git a/src/views/asrs/buyRoll/indexb.vue b/src/views/asrs/buyRoll/indexb.vue new file mode 100644 index 0000000..79e1be2 --- /dev/null +++ b/src/views/asrs/buyRoll/indexb.vue @@ -0,0 +1,364 @@ + + + diff --git a/src/views/asrs/buyRoll/point.vue b/src/views/asrs/buyRoll/point.vue new file mode 100644 index 0000000..ad5f56c --- /dev/null +++ b/src/views/asrs/buyRoll/point.vue @@ -0,0 +1,54 @@ + + + + diff --git a/src/views/asrs/delivery/add-or-updata.vue b/src/views/asrs/delivery/add-or-updata.vue index 6816737..499435e 100644 --- a/src/views/asrs/delivery/add-or-updata.vue +++ b/src/views/asrs/delivery/add-or-updata.vue @@ -2,7 +2,7 @@ * @Author: zwq * @Date: 2021-11-18 14:16:25 * @LastEditors: zwq - * @LastEditTime: 2025-06-25 08:49:35 + * @LastEditTime: 2025-08-14 09:47:56 * @Description: --> diff --git a/src/views/asrs/warehouseLocationMonitoring/indexb.vue b/src/views/asrs/warehouseLocationMonitoring/indexb.vue index f65fbfc..dc8efb6 100644 --- a/src/views/asrs/warehouseLocationMonitoring/indexb.vue +++ b/src/views/asrs/warehouseLocationMonitoring/indexb.vue @@ -218,7 +218,7 @@ + :warehouse-id="bId"> diff --git a/src/views/asrs/warehouseLocationMonitoring/stackerDialog.vue b/src/views/asrs/warehouseLocationMonitoring/stackerDialog.vue index 97fda33..6d25247 100644 --- a/src/views/asrs/warehouseLocationMonitoring/stackerDialog.vue +++ b/src/views/asrs/warehouseLocationMonitoring/stackerDialog.vue @@ -2,7 +2,7 @@ * @Author: zwq * @Date: 2021-11-18 14:16:25 * @LastEditors: zwq - * @LastEditTime: 2024-09-23 14:10:53 + * @LastEditTime: 2025-08-14 15:04:06 * @Description: -->