Browse Source

对账 金额合计

qukaidi 4 years ago
parent
commit
4419b5fc2d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/views/finance/contrast/index.vue

+ 1 - 1
src/views/finance/contrast/index.vue

@@ -3308,7 +3308,7 @@ export default {
         if (this.selection.length == 0) {
           if (index === 0) {
             sums[index] = "合计";
-          } else if (column.label == "金额" || column.label == "本次金额") {
+          } else if (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) => {