소스 검색

realPrice

shish 5 년 전
부모
커밋
82ecc33c90
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 1
      ghsApp/src/pagesArrears/details.vue
  2. 2 2
      hdApp/src/pagesPurchase/gathering.vue

+ 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;