Browse Source

称重计算

cr 4 years ago
parent
commit
0b423b5d2b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/pages/manage/cashier/settlement.vue

+ 2 - 2
src/pages/manage/cashier/settlement.vue

@@ -607,12 +607,12 @@ export default {
607
         // 总金额
607
         // 总金额
608
         totalPrice() {
608
         totalPrice() {
609
             let n = 0;
609
             let n = 0;
610
-            // 是否为称重
611
 
610
 
612
             for (let item of this.goods) {
611
             for (let item of this.goods) {
612
+                // 是否为称重
613
                 if (item.isWeightGood) {
613
                 if (item.isWeightGood) {
614
                     let m = (item.price / 100) * item.select_num;
614
                     let m = (item.price / 100) * item.select_num;
615
-                    m = Number(n.toFixed(2));
615
+                    m = Number(m.toFixed(2));
616
                     n += m;
616
                     n += m;
617
                 } else {
617
                 } else {
618
                     if (item._sku) {
618
                     if (item._sku) {