|
@@ -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])) {
|