From 60e2bcec784a4f7b4f5b0ae26f97d64222ffc407 Mon Sep 17 00:00:00 2001 From: lewis <604446095@qq.com> Date: Sat, 4 Jan 2025 15:20:14 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=B8=80=E9=94=AE=E5=85=A5?= =?UTF-8?q?=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/system_store_storage.ts | 13 +++ src/views/system_store_storage/index.vue | 12 ++- .../system_store_storage/productList.vue | 90 +++++++++++++++++ .../system_store_storage/warehourse_order.vue | 98 +++++++++++++++++++ 4 files changed, 212 insertions(+), 1 deletion(-) create mode 100644 src/views/system_store_storage/productList.vue create mode 100644 src/views/system_store_storage/warehourse_order.vue diff --git a/src/api/system_store_storage.ts b/src/api/system_store_storage.ts index e9d2771..1638967 100644 --- a/src/api/system_store_storage.ts +++ b/src/api/system_store_storage.ts @@ -1,5 +1,13 @@ import request from '@/utils/request' +// 门店入库单列表 +export function apiWarehouseOrderLists(params: any) { + return request.get({ url: '/system_store_storage/warehouseorder/lists', params }) +} +export function apiWarehouseOrderEdit(params: any) { + return request.post({ url: '/system_store_storage/warehouseorder/edit', params }) +} + // 门店入库操作列表 export function apiSystemStoreStorageLists(params: any) { return request.get({ url: '/system_store_storage/systemstorestorage/lists', params }) @@ -33,4 +41,9 @@ export function apiSystemStoreStorageInfoLists(params: any) { // 门店入库操作详情 export function apiSystemStoreStorageInfoEdit(params: any) { return request.post({ url: '/system_store_storage/systemstorestorage/edit', params }) +} + +// 门店一键确认入库 +export function apiSystemStoreStorageInfoEditAll() { + return request.post({ url: '/system_store_storage/systemstorestorage/editAll' }) } \ No newline at end of file diff --git a/src/views/system_store_storage/index.vue b/src/views/system_store_storage/index.vue index 63cdc99..b879e27 100644 --- a/src/views/system_store_storage/index.vue +++ b/src/views/system_store_storage/index.vue @@ -1,6 +1,9 @@