|
@@ -429,21 +429,35 @@ export default {
|
|
|
label: "famount",
|
|
|
name: "应收金额",
|
|
|
checked: 0,
|
|
|
- width: 250,
|
|
|
+ width: 130,
|
|
|
},
|
|
|
{
|
|
|
surface: "4",
|
|
|
label: "fstlamount",
|
|
|
name: "实收金额",
|
|
|
checked: 0,
|
|
|
- width: 250,
|
|
|
+ width: 130,
|
|
|
},
|
|
|
{
|
|
|
surface: "5",
|
|
|
label: "nnfinished",
|
|
|
name: "未收金额",
|
|
|
checked: 0,
|
|
|
- width: 250,
|
|
|
+ width: 130,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ surface: "6",
|
|
|
+ label: "faccamount",
|
|
|
+ name: "对账金额",
|
|
|
+ checked: 0,
|
|
|
+ width: 130,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ surface: "7",
|
|
|
+ label: "finvamount",
|
|
|
+ name: "开票金额",
|
|
|
+ checked: 0,
|
|
|
+ width: 130,
|
|
|
},
|
|
|
],
|
|
|
allCheck: false,
|
|
@@ -561,7 +575,7 @@ export default {
|
|
|
columns.forEach((column, index) => {
|
|
|
if (index === 0) {
|
|
|
sums[index] = "总计";
|
|
|
- } else if (column.label == '应收金额' || column.label == '实收金额' || column.label == '未收金额') {
|
|
|
+ } else if (column.label == '应收金额' || column.label == '实收金额' || column.label == '未收金额' || column.label == '对账金额' || column.label == '开票金额') {
|
|
|
const values = data.map((item) => Number(item[column.property]));
|
|
|
if (!values.every((value) => isNaN(value))) {
|
|
|
sums[index] = values.reduce((prev, curr) => {
|