snow пре 1 година
родитељ
комит
b00e5be813

Разлика између датотеке није приказан због своје велике величине
+ 0 - 0
dist/static/js/0.js


+ 89 - 17
src/views/sellOut/filing/cpns/wait-transferred.vue

@@ -1,5 +1,18 @@
 <template>
   <div>
+    <div style="display:flex;margin-bottom: 10px">
+      <p style="width:80px">
+        <span style="color:red">*</span>&nbsp;客户公司
+      </p>
+      <search-customer
+        :value="ruleForm.companyCode"
+        :names="ruleForm.companyName"
+        :placeholder="'客户公司'"
+        :size="'mini'"
+        @searchChange="customerChange"
+      />
+    </div>
+
     <el-form ref="formRef" :model="editCacheData" :rules="rules">
       <el-table border size="mini" :data="list" max-height="300px">
         <el-table-column label="收货总数" prop="receipt_quantity">
@@ -37,14 +50,24 @@
         <el-table-column label="收货省市区" prop="addr_code">
           <template slot-scope="scope">
             <el-form-item v-if="scope.$index === editIndex" prop="addr_code">
-              <select-area
+              <!-- <select-area
                 :value="editCacheData.addr_code"
                 :placeholder="'收货省市区'"
                 size="mini"
                 @selectChange="handleInAddrChange($event)"
+              />-->
+              <search-area
+                :value="editCacheData.area_code"
+                :is-detail="scope.$index === editIndex"
+                :disabled="!scope.$index === editIndex"
+                size="mini"
+                :names="[getAddrName(scope.row.addr_code_name)]"
+                placeholder="收货省市区"
+                :level="3"
+                @searchChange="areaChange($event,scope.$index)"
               />
             </el-form-item>
-            <span v-else>{{ scope.row.addr_code_name }}</span>
+            <span v-else>{{getAddrName(scope.row.addr_code_name,true)}}</span>
           </template>
         </el-table-column>
 
@@ -125,22 +148,27 @@ const defaultAddressData = {
   contactor: "",
   addr_code: "",
   mobile: "",
-  addr: ""
+  addr: "",
+  area_code: "",
+  area_label: ""
 };
 
 export default {
-  components: {
-    InAddressModal
-  },
+  components: { InAddressModal },
   props: ["id", "num"],
   data() {
     return {
+      ruleForm: {
+        companyName: "",
+        companyCode: ""
+      },
       list: [],
       editIndex: -1,
       loading: false,
       showModal: false,
       rules: addressRules,
-      editCacheData: { ...defaultAddressData }
+      editCacheData: { ...defaultAddressData },
+      companyName: ""
     };
   },
   methods: {
@@ -161,7 +189,9 @@ export default {
         mobile,
         addr_code,
         addr,
-        addr_code_name
+        addr_code_name,
+        area_code,
+        area_label
       } = this.list[index];
 
       this.editCacheData = {
@@ -170,7 +200,9 @@ export default {
         mobile,
         addr_code,
         addr,
-        addr_code_name
+        addr_code_name,
+        area_code,
+        area_label
       };
     },
 
@@ -192,14 +224,17 @@ export default {
       utils.book_append_sheet(workBook, workSheet, "sheet");
 
       // 导出模板
-      writeFile(workBook, "收货模板.xlsx", {
-        bookType: "xlsx"
-      });
+      writeFile(workBook, "收货模板.xlsx", { bookType: "xlsx" });
     },
     handleDelete(index) {
       this.list.splice(index, 1);
       if (this.editIndex >= 0) this.editIndex = -1;
     },
+    getAddrName(name, modifider) {
+      if (modifider) return name;
+      const _n = name.split("/").join("");
+      return _n;
+    },
 
     handleSave() {
       this.$refs.formRef.validate(async isValid => {
@@ -221,6 +256,15 @@ export default {
       });
     },
 
+    customerChange(evt) {
+      const { code, label } = evt;
+
+      this.ruleForm = {
+        companyCode: code ? [code] : "",
+        companyName: label ? [label] : ""
+      };
+    },
+
     handleRefresh(data) {
       const _data = data.list.map(
         ({
@@ -236,10 +280,13 @@ export default {
           contactor,
           mobile,
           receipt_quantity,
-          addr_code_name
+          addr_code_name,
+          area_code: [addr_code[addr_code.length - 1]]
         })
       );
 
+      console.log(_data);
+
       this.list = [...this.list, ..._data];
       this.showModal = false;
     },
@@ -254,11 +301,28 @@ export default {
       this.editIndex = this.list.length - 1;
     },
 
+    async areaChange(e) {
+      console.log(e);
+      const { code, area_code, splitLabel } = e;
+      this.editCacheData.area_label = splitLabel
+        ? splitLabel.split(",").join("/")
+        : "";
+
+      this.editCacheData["area_code"] = area_code ? [area_code] : [];
+
+      this.editCacheData["addr_code"] = code ? code.split(",") : [];
+    },
+
     handleInAddrChange(e) {
       this.editCacheData["addr_code"] = e;
     },
 
     async handleSubmit() {
+      if (!this.ruleForm.companyCode) {
+        this.$message.warning("请选择客户公司");
+        return;
+      }
+
       if (this.editIndex !== -1) {
         this.$message.warning("当前已有地址在编辑,请保存后再试!");
         return;
@@ -273,17 +337,25 @@ export default {
         return Number(current) + Number(prev.receipt_quantity);
       }, 0);
 
-      if (Number(this.num) > currentNum) {
-        this.$message.warning("收货数量小于销售数量!");
+      if (currentNum > Number(this.num)) {
+        this.$message.warning(
+          `未转单数量为${this.num},收货数量总和不能超过未转单数量!`
+        );
         return;
       }
 
-      const { data, code, message } = await asyncRequest.transfer({
+      const { code, message } = await asyncRequest.transfer({
         id: this.id,
-        addr_list: this.list
+        addr_list: this.list,
+
+        customerCode: Array.isArray(this.ruleForm.companyCode)
+          ? this.ruleForm.companyCode[0]
+          : this.ruleForm.companyCode
       });
 
       if (Number(code) === 0) {
+        this.list = [];
+        this.ruleForm.companyCode = "";
         this.$emit("refresh");
       } else {
         this.$message.error(message);

+ 14 - 1
src/views/sellOut/filing/detail.vue

@@ -28,6 +28,16 @@
             <compliance-form :sitem="sitem" @refresh="refresh" />
           </el-collapse-item>
 
+          <tempalte
+            v-if="(String(status) == '2' || String(status) == '3') && !isSupertube && (
+            _process.includes('2') || _process.includes('3') && Number(sitem.wsm_has_account) === 0
+          )"
+          >
+            <el-collapse-item name="3" title="待转单">
+              <wait-transferred :id="id" :num="num" @refresh="handleRefresh" />
+            </el-collapse-item>
+          </tempalte>
+
           <el-collapse-item v-if="status === '3'" name="4" title="发货单">
             <shipment-request :order-code="orderCode" />
           </el-collapse-item>
@@ -51,6 +61,7 @@
 </template>
 
 <script>
+import WaitTransferred from "./cpns/wait-transferred.vue";
 import ShipmentRequest from "./cpns/shipment-request.vue";
 import asyncRequest from "@/apis/service/sellOut/filing";
 import ComplianceForm from "./cpns/complianceForm.vue";
@@ -65,7 +76,8 @@ export default {
     ExamForms,
     baseDetail,
     ComplianceForm,
-    ShipmentRequest
+    ShipmentRequest,
+    WaitTransferred
   },
   data() {
     return {
@@ -102,6 +114,7 @@ export default {
       const { roleProcess } = this.$store.getters;
       const tran = roleProcess.find(i => i.process_type === "BBD") || {};
       const { action } = tran ?? {};
+      console.log(action)
       return action ?? [];
     }
   },

+ 1 - 3
src/views/supplierPurchaseIn/supplierDeliveryWorkOrder/sendOutOrder.vue

@@ -74,8 +74,6 @@ export default {
       return false;
     },
     handleSuccess({ results, header }) {
-      // alert(this.head.length, header.length)
-      // console.log(results)
       if (!this.loading) {
         this.loading = true;
         if (results.length === 0) {
@@ -84,12 +82,12 @@ export default {
           return;
         }
 
-        console.log(this.head.length,header.length);
         if (this.head.length !== header.length) {
           this.$message.error("表头与导入模板不匹配!");
           this.loading = false;
           return;
         }
+
         let hederOk = true;
         this.head.forEach((v1, i1) => {
           if (v1.replace(/\s*/g, "") !== header[i1].replace(/\s*/g, "")) {

+ 1 - 1
src/views/supplierSellOut/supplierFiling/detail.vue

@@ -19,7 +19,7 @@
           </template>
           <tempalte
             v-if="(status == '2' || status == '3') && !isSupertube && (
-            _process.includes('2') || _process.includes('3')
+            _process.includes('2') || _process.includes('3') && Number(sitem.wsm_has_account) !== 0
           )"
           >
             <el-collapse-item name="3" title="待转单">

+ 2 - 2
src/views/supplierSellOut/supplierFiling/index.vue

@@ -200,9 +200,9 @@
 
         <el-tooltip effect="dark" content="修改" placement="top">
           <i
-            v-if="String(scope.row.status) === '1' && !isSupertube && powers.includes('005')"
+            v-if="String(scope.row.status) === '1' && !isSupertube && powers.includes('005') &&  Number(scope.row.wsm_has_account) !== 0"
             class="el-icon-edit tb-icon"
-            @click="getRouter('/supplierSellOut/supplierFilingDetail', scope.row.id,'edit')"
+            @click="getRouter('/supplierSellOut/supplierFilingDetail', scope.row.id, 'edit')"
           />
         </el-tooltip>
 

Неке датотеке нису приказане због велике количине промена