From 5b5637ce20f716f180ce544e433688ad81d45ead Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=8E=8B=E5=BF=97=E5=9B=BD?= <854933521@qq.com>
Date: Fri, 25 Oct 2024 15:36:09 +0800
Subject: [PATCH] =?UTF-8?q?=E6=89=93=E5=8D=B0=E9=87=87=E8=B4=AD=E6=94=B6?=
=?UTF-8?q?=E8=B4=A7=202024/8/3?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/request2.js | 13 +-
src/pages/pointPutawayJob/index.vue | 455 ++++++++++++------
.../purchaseReceipt/job/receiptDetail.vue | 3 +-
3 files changed, 315 insertions(+), 156 deletions(-)
diff --git a/src/api/request2.js b/src/api/request2.js
index c3f423b5..6aff7531 100644
--- a/src/api/request2.js
+++ b/src/api/request2.js
@@ -568,7 +568,18 @@ export function getPurchaseReceiptJobDetail(id) {
export function purchaseReceiptJobSubmit(params) {
return http.put("/wms/purchasereceipt-job-main/execute" ,params)
}
-
+/**
+ * 采购收货 指引单列表
+ * @param {*} 任务id
+ *
+ */
+export function queryInspectionFreeFlag(params) {
+ return request({
+ url: baseApi + "/wms/purchasereceipt-job-main/queryInspectionFreeFlag",
+ method: "get",
+ data: params,
+ });
+}
/**
* 采购退货
* status 任务状态
diff --git a/src/pages/pointPutawayJob/index.vue b/src/pages/pointPutawayJob/index.vue
index 620056a9..54c58b45 100644
--- a/src/pages/pointPutawayJob/index.vue
+++ b/src/pages/pointPutawayJob/index.vue
@@ -1,63 +1,88 @@
-
-
-
-
-
-
- 目标库位:{{ item.toLocationCode }}
+
+
+ 检验指引单
+ 上架指引单
+
+
+
+
+
+
+
+ 发货单号: |
+ {{data1.asnNumber}} |
+
+
+ 物料代码 |
+ 供应商批次 |
+ 检验数量 |
+
+
+
+
+ {{item.itemCode}} |
+ {{item.supplierBatch}} |
+ {{item.sampleQty}} |
+
+
+
-
-
-
- 物料号:{{ item.itemCode }}
-
-
- 托包装号:{{ item.packingNumber }}
-
+
+
+
+
+
+
+
+
+ 目标库位:{{item.toLocationCode}}
-
-
- 数量:{{ item.qty }}{{ item.uom }}
+
+
+
+ 物料号:{{item.itemCode}}
+
+
+ 托包装号:{{item.packingNumber}}
+
+
+
+
+ 数量:{{item.qty}}{{item.uom}}
+
-
+
-
-
+
+
+
-
+
+.top1 th {
+ font-weight: bold;
+ font-size: 16px;
+ padding: 10px;
+}
+
+
+table {
+ border-collapse: collapse;
+ border: 1px solid #dedede;
+ /* 设置表格的边框 */
+ width: 100%
+}
+
+th {
+ text-align: left;
+ padding: 10px;
+}
+
+td {
+ padding: 10px;
+
+}
+
+.tabs-box {
+ display: flex;
+ align-items: center;
+ margin-bottom: 20rpx;
+ border-bottom: 2rpx solid rgb(188, 188, 188);
+ position: fixed;
+ background: white;
+ width: 100%;
+ left: 0px;
+
+ view {
+ flex: 1;
+ text-align: center;
+ line-height: 60rpx;
+ font-size: 30rpx;
+ }
+
+ .active1 {
+ color: rgb(60, 156, 255) !important;
+ font-weight: bold;
+ border-bottom: 4rpx solid rgb(60, 156, 255);
+ }
+}
+
\ No newline at end of file
diff --git a/src/pages/purchaseReceipt/job/receiptDetail.vue b/src/pages/purchaseReceipt/job/receiptDetail.vue
index d85be67f..3448175b 100644
--- a/src/pages/purchaseReceipt/job/receiptDetail.vue
+++ b/src/pages/purchaseReceipt/job/receiptDetail.vue
@@ -445,7 +445,8 @@ const submitJob = () => {
}
console.log(dataParams)
uni.redirectTo({
- url: `/pages/pointPutawayJob/index?data=${encodeURIComponent(JSON.stringify(dataParams))}`
+ uurl: '/pages/pointPutawayJob/index?number='+jobContent.value.number+'&data=' +
+ encodeURIComponent(JSON.stringify(dataParams))
})
}
})