xiaodai2022 2 роки тому
батько
коміт
d83e22afd4

+ 2 - 0
src/apis/service/sellOut/sellOutOrder/index.js

@@ -28,4 +28,6 @@ export default {
   aftercancel: (data, params) => http(api + "aftercancel", data, "post", params),
   // 售后单审核状态
   afterstatus: (data, params) => http(api + "afterstatus", data, "post", params),
+  // 确认收货
+  saleoutreceipt: (data, params) => http(api + "afterstatus", data, "post", params),
 };

+ 7 - 6
src/views/sellOut/sellOutOrder/columns.js

@@ -185,13 +185,13 @@ const showColumns = [
   {
     prop: "sale_price",
     label: "商品单价",
-    _slot_:"sale_price",
+    _slot_: "sale_price",
     span: 6
   },
   {
     prop: "total_price",
     label: "发货申请单总价",
-    _slot_:"total_price",
+    _slot_: "total_price",
     span: 6
   },
   {
@@ -221,10 +221,11 @@ const showColumns = [
     span: 12
   },
 
-  // {
-  //   prop: "good_price",
-  //   label: "商品单价",
-  // },
+  {
+    prop: "remark",
+    label: "发货申请备注",
+    span: 24
+  },
 
 
 ]

+ 29 - 2
src/views/sellOut/sellOutOrder/detail.vue

@@ -22,12 +22,12 @@
         </el-button>
         <el-button
           class="fr"
-          v-if="status === '2' && powers.some((item) => item == '049')"
+          v-if="status === '2' && powers.some((item) => item == '088')"
           type="primary"
           plain
           :size="'mini'"
           style="margin: 0 0 0 10px"
-          @click="wellReturnCode"
+          @click="wentReceive"
           >确认收货
         </el-button>
       </div>
@@ -484,6 +484,33 @@ export default {
         this.$message.warning(res.message);
       }
     },
+    async wentReceive() {
+      await this.$confirm("确定要确认收货?", {
+        confirmButtonText: "确定",
+        cancelButtonText: "取消",
+        type: "warning",
+      })
+        .then(async () => {
+          const model = {
+            returnCode: this.sitem.outCode,
+          };
+          const res = await asyncRequest.saleoutreceipt(model);
+          if (res && res.code === 0) {
+            this.$notify.success({
+              title: "确认收货",
+              message: "",
+            });
+            await this.initData();
+          } else if (res && res.code >= 100 && res.code <= 104) {
+            await this.logout();
+          } else {
+            this.$message.warning(res.message);
+          }
+        })
+        .catch(() => {
+          console.log("取消");
+        });
+    },
     async initData(e) {
       this.returnCode = "";
       this.returnCode_type = "";