소스 검색

fix:修改发票管理货物信息本次开票金额保留小数

lazy 2 주 전
부모
커밋
0377ef0b02
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/views/invoicesManagement/components/ApplyInvoicingContent.vue

+ 1 - 1
src/views/invoicesManagement/components/ApplyInvoicingContent.vue

@@ -167,7 +167,7 @@
                 v-model="scope.row.openQuantity"
                 placeholder="请输入本次开票数量"
                 :disabled="disabled"
-                @blur="calcMoney(scope.row,scope.$index)"
+                @blur="formatMoney(Number(scope.row.openQuantity) * Number(scope.row.salesPrice))"
                 @input="totalOpenQuantity(scope.row,scope.$index)"
               />
             </template>