Browse Source

修改bug

qukaidi 3 years ago
parent
commit
6be09a3693

+ 1 - 1
src/views/Warehousing/cargoClearance/AddOrUpdate.vue

@@ -5008,7 +5008,7 @@ export default {
       if (row.fQty) {
         fQty = row.fQty;
       }
-      this.$set(row, "fAmount", Number(fUnitprice) * Number(fQty)).toFixed(2);
+      this.$set(row, "fAmount", (Number(fUnitprice) * Number(fQty)).toFixed(2));
     },
     // 变更计价单位
     changeFeeUnit(row) {

+ 1 - 1
src/views/Warehousing/goodsTransfer/AddOrUpdate.vue

@@ -4506,7 +4506,7 @@ export default {
       if (row.fQty) {
         fQty = row.fQty;
       }
-      this.$set(row, "fAmount", Number(fUnitprice) * Number(fQty)).toFixed(2);
+      this.$set(row, "fAmount", (Number(fUnitprice) * Number(fQty)).toFixed(2));
     },
     // 变更计价单位
     changeFeeUnit(row) {

+ 1 - 1
src/views/Warehousing/inAndOutStock/AddOrUpdate.vue

@@ -7636,7 +7636,7 @@ export default {
       if (row.fQty) {
         fQty = row.fQty;
       }
-      this.$set(row, "fAmount", Number(fUnitprice) * Number(fQty)).toFixed(2);
+      this.$set(row, "fAmount", (Number(fUnitprice) * Number(fQty)).toFixed(2));
     },
     // 变更计价单位
     changeFeeUnit(row) {