xiaodai2022 2 éve
szülő
commit
a5bdab210c

+ 13 - 28
src/views/purchaseIn/purchaseOrder/components/order-in-table.vue

@@ -8,12 +8,7 @@
         :size="'mini'"
         class="demo-tableForm product_go"
       >
-        <el-table
-          :data="tableForm.product_go"
-          border
-          :size="'mini'"
-          row-key="key"
-        >
+        <el-table :data="tableForm.product_go" border :size="'mini'" row-key="key">
           <template v-for="(item, index) in columns">
             <el-table-column
               :prop="item.prop"
@@ -31,8 +26,10 @@
                 class="fr"
                 style="margin: 3px 0 0 0"
                 v-if="
-                  (status === '1' && powers.some((i) => i == '028')) ||
-                  (status === '2' && powers.some((i) => i == '028'))
+                  ((status === '1' && powers.some((i) => i == '028')) ||
+                    (status === '2' && powers.some((i) => i == '028'))) &&
+                  sitem &&
+                  sitem.has_account + '' === '0'
                 "
                 effect="dark"
                 content="添加"
@@ -75,7 +72,7 @@
     </el-col>
   </el-row>
 </template>
-   <script>
+<script>
 import asyncRequest from "@/apis/service/stock/allot/detail";
 import resToken from "@/mixins/resToken";
 import config from "./columns-table"; //表格列参数
@@ -168,17 +165,10 @@ export default {
           this.tableForm.product_go = child || [];
           this.tableForm.product_go.forEach((e) => {
             e.sendtype_name =
-              e.sendtype === "1"
-                ? "公司自提"
-                : e.sendtype === "2"
-                ? "供应商包邮"
-                : "--";
+              e.sendtype === "1" ? "公司自提" : e.sendtype === "2" ? "供应商包邮" : "--";
             e.status_name =
-              (
-                this.statusOptions.find(
-                  (item) => item.value == e.status
-                ) || {}
-              ).label || "--";
+              (this.statusOptions.find((item) => item.value == e.status) || {}).label ||
+              "--";
           });
         }
       });
@@ -188,9 +178,9 @@ export default {
       this.showModel = true;
     },
     async submitForm() {
-        if (this.loading) {
-            return;
-          }
+      if (this.loading) {
+        return;
+      }
       let good = [];
       this.loading = true;
       good = this.getGoodList();
@@ -209,9 +199,7 @@ export default {
       if (res && res.code === 0) {
         this.$notify.success({
           title:
-            this.status == "3"
-              ? "入库方验货结果提交成功!"
-              : "入库方验货审核结果提交成功",
+            this.status == "3" ? "入库方验货结果提交成功!" : "入库方验货审核结果提交成功",
           message: "",
         });
 
@@ -246,7 +234,6 @@ export default {
 };
 </script>
 
-
 <style lang="scss" scoped>
 .allot,
 .allotDetail {
@@ -283,5 +270,3 @@ export default {
   }
 }
 </style>
-
-   

+ 6 - 1
src/views/purchaseIn/purchaseOrder/detail.vue

@@ -57,7 +57,12 @@
                   ></el-tag>
                   <el-tooltip
                     class="fr"
-                    v-if="ppowers.some((i) => i == '0') && sitem.status === '0'"
+                    v-if="
+                      sitem &&
+                      ppowers.some((i) => i == '0') &&
+                      sitem.status === '0' &&
+                      sitem.has_account + '' === '0'
+                    "
                     effect="dark"
                     content="已于供应商确认"
                     placement="top"

+ 20 - 1
src/views/purchaseIn/purchaseOrder/index.vue

@@ -470,17 +470,36 @@ export default {
         return;
       }
       let isok = true,
-        list = [];
+        iss = false,
+        list = [],
+        errorList = [];
       this.changeList.forEach((e) => {
         if (e.status !== "0") {
           isok = false;
         }
+        if (e.has_account + "" !== "0") {
+          iss = true;
+          errorList.push(e.outCode);
+        }
         list.push(e.cgdNo);
       });
       if (!isok) {
         this.$message.warning("只能选择待与供应商确认的采购单!");
         return;
       }
+      if (iss) {
+        let htmlList = "<ul>";
+        errorList.forEach((v) => {
+          htmlList += `<li>${v}</li>`;
+        });
+        htmlList += "</ul>";
+        this.$notify({
+          title: "以下采购单对应的供应商账号已开启,不允许在本系统操作!",
+          dangerouslyUseHTMLString: true,
+          message: htmlList,
+        });
+        return;
+      }
       await this.$confirm(`确定批量确认?`, {
         confirmButtonText: "确定",
         cancelButtonText: "取消",

+ 6 - 1
src/views/sellOut/sellOutOrder/detail.vue

@@ -110,7 +110,12 @@
             <el-collapse-item
               title="库管发货"
               name="3"
-              v-if="status === '1' && ppowers.some((i) => i == '1')"
+              v-if="
+                status === '1' &&
+                ppowers.some((i) => i == '1') &&
+                sitem &&
+                sitem.wsm_has_account + '' === '0'
+              "
             >
               <want-deliver
                 :newTime="newTime"