Kaynağa Gözat

对账发票财务审核BUG修复

戴艳蓉 3 yıl önce
ebeveyn
işleme
417dc51118

Dosya farkı çok büyük olduğundan ihmal edildi
+ 0 - 0
dist/index.html


BIN
dist/static/css/chunk-51b11a62.d494a348.css.gz


Dosya farkı çok büyük olduğundan ihmal edildi
+ 0 - 0
dist/static/css/chunk-86139b58.07836d51.css


BIN
dist/static/css/chunk-86139b58.07836d51.css.gz


Dosya farkı çok büyük olduğundan ihmal edildi
+ 0 - 0
dist/static/js/app.0faedc39.js


BIN
dist/static/js/app.0faedc39.js.gz


BIN
dist/static/js/app.ef5c7c09.js.gz


Dosya farkı çok büyük olduğundan ihmal edildi
+ 0 - 0
dist/static/js/chunk-51b11a62.6c9a5e5f.js


BIN
dist/static/js/chunk-51b11a62.6c9a5e5f.js.gz


Dosya farkı çok büyük olduğundan ihmal edildi
+ 0 - 0
dist/static/js/chunk-86139b58.5ef10d03.js


BIN
dist/static/js/chunk-86139b58.5ef10d03.js.gz


+ 1 - 0
src/config/env.development.js

@@ -5,6 +5,7 @@ module.exports = {
   api: {
     // baseApi: 'http://inv.sit.wanyuhengtong.com/',
     baseApi: 'http://www.invoice.com/',
+    // baseApi: 'http://inv.sitw.wanyuhengtong.com/',
   },
   fileURL: `https://api2.edusit.zretchome.com`,
   appId: 'wx5ac3a2c2d72b6f26',

+ 58 - 8
src/views/purchase/orderRecord/components/InvoiceReview.vue

@@ -69,7 +69,7 @@
                   <el-table-column
                     prop="specification"
                     label="规格型号"
-                    width="150"
+                    width="110"
                   >
                     <template slot-scope="scope">
                       <el-input
@@ -87,7 +87,7 @@
                       ></el-input>
                     </template>
                   </el-table-column>
-                  <el-table-column prop="unit" width="100" label="单位">
+                  <el-table-column prop="unit" width="70" label="单位">
                     <template slot-scope="scope">
                       <el-input
                         :size="'mini'"
@@ -138,7 +138,24 @@
                       ></el-input>
                     </template>
                   </el-table-column>
-                  <el-table-column prop="tax_rate" width="100" label="税率">
+                  <el-table-column prop="amount" label="金额">
+                    <template slot-scope="scope">
+                      <el-input
+                        :size="'mini'"
+                        readonly
+                        :class="{
+                          errorInput:
+                            ratioNo &&
+                            ratioNo.item_list &&
+                            ratioNo.item_list[scope.$index] &&
+                            !ratioNo.item_list[scope.$index].amount,
+                        }"
+                        v-model="scope.row.amount"
+                        placeholder="金额"
+                      ></el-input>
+                    </template>
+                  </el-table-column>
+                  <el-table-column prop="tax_rate" width="80" label="税率">
                     <template slot-scope="scope">
                       <el-input
                         :class="{
@@ -627,7 +644,7 @@ export default {
           seller_id: data.seller.seller_id,
           seller_name: data.seller.seller_name,
         };
-        data.invoice.forEach((v1) => {
+        data.invoice.forEach((v1, i1) => {
           // console.log(v1);
           let x = {
             // bstatus: v1.bstatus,
@@ -667,18 +684,39 @@ export default {
         this.length = this.oldresList.list.length;
 
         this.oldresList.list.forEach((v2, i2) => {
+          // console.log(v2);
           // console.log(v2, i2);
           let model = Object.assign({}, {});
 
           for (let e in v2) {
             if (e === "goods") {
               model[e] = [];
-              this.oldresList.list[i2][e].forEach((v3, i3) => {
+              let myOldresList = JSON.parse(
+                JSON.stringify(this.oldresList.list[i2][e])
+              );
+              let myresList = JSON.parse(
+                JSON.stringify(this.resList.list[i2][e])
+              );
+              let difference = myresList.length - myOldresList.length;
+              // console.log(difference, Math.abs(difference));
+              if (difference !== 0) {
+                for (let is = 0; is < Math.abs(difference); is++) {
+                  console.log(is);
+                  let myItem = this.setItem();
+                  if (difference < 0) {
+                    myresList.push(myItem);
+                  } else {
+                    myOldresList.push(myItem);
+                  }
+                }
+                // console.log(myOldresList);
+                // console.log(myresList);
+              }
+              // console.log(myresList.length - myOldresList.length);
+              myOldresList.forEach((v3, i3) => {
                 let item = Object.assign({}, {});
                 for (let r in v3) {
-                  item[r] =
-                    this.oldresList.list[i2][e][i3][r] ===
-                    this.resList.list[i2][e][i3][r];
+                  item[r] = myOldresList[i3][r] === myresList[i3][r];
                 }
                 model[e].push(item);
               });
@@ -698,6 +736,18 @@ export default {
         this.$message.warning(res.message);
       }
     },
+    setItem() {
+      return {
+        amount: "",
+        name: "",
+        quantity: "",
+        specification: "",
+        tax: "",
+        tax_rate: "",
+        unit: "",
+        unit_price: "",
+      };
+    },
     sitDeta(obj) {
       for (let key in obj) {
         if (Array.isArray(obj[key])) {

+ 1 - 1
src/views/purchase/orderRecord/components/proofreading.vue

@@ -88,7 +88,7 @@
                       <el-input
                         :size="'mini'"
                         v-model="scope.row.amount"
-                        placeholder="税率"
+                        placeholder="金额"
                       ></el-input>
                     </template>
                   </el-table-column>

Bu fark içinde çok fazla dosya değişikliği olduğu için bazı dosyalar gösterilmiyor