shish před 5 roky
rodič
revize
82ecc33c90

+ 1 - 1
ghsApp/src/pagesArrears/details.vue

@@ -105,7 +105,7 @@ export default {
 			if (this.detailsList) {
 				for (const item of this.detailsList) {
 					if (item.checked) {
-						amount=amount+Number(item.actPrice);
+						amount=amount+Number(item.realPrice);
 					}
 				}
 			}

+ 2 - 2
hdApp/src/pagesPurchase/gathering.vue

@@ -109,7 +109,7 @@ export default {
       if (this.detailsList) {
         for (const item of this.detailsList) {
           if (item.checked) {
-            amount = amount + Number(item.actPrice);
+            amount = amount + Number(item.realPrice);
           }
         }
       }
@@ -119,7 +119,7 @@ export default {
     //   let amount = 0;
     //   if (this.detailsList) {
     //     for (const item of this.detailsList) {
-    //       amount = amount + Number(item.actPrice);
+    //       amount = amount + Number(item.realPrice);
     //     }
     //   }
     //   return amount;