master
xxssyyyyssxx 2021-12-01 18:31:49 +08:00
parent a0f198977b
commit 8912649d77
1 changed files with 4 additions and 4 deletions
src/main/resources/static/assets/js

View File

@ -142,9 +142,9 @@ function calCostInclude() {
var $costTotalTaxInclude = $("input[name='costTotalTaxInclude']");
$costTotalTaxInclude.val(f2(costPurchaseDeviceTaxInclude) +f2(costPurchaseBuildTaxInclude)
$costTotalTaxInclude.val(f2(f2(costPurchaseDeviceTaxInclude) +f2(costPurchaseBuildTaxInclude)
+f2(costPurchaseServiceTaxInclude)+f2(costPurchaseOtherTaxInclude)
+f2(costProjectManageTaxInclude)+f2(costOtherOtherTaxInclude));
+f2(costProjectManageTaxInclude)+f2(costOtherOtherTaxInclude)));
}
/**
* 统计成本(不含税)有一项没填就置空
@ -160,7 +160,7 @@ function calCostExclude() {
var $costTotalTaxExclude = $("input[name='costTotalTaxExclude']");
$costTotalTaxExclude.val(f2(costPurchaseDeviceTaxExclude)+f2(costPurchaseBuildTaxExclude)
$costTotalTaxExclude.val(f2(f2(costPurchaseDeviceTaxExclude)+f2(costPurchaseBuildTaxExclude)
+f2(costPurchaseServiceTaxExclude)+f2(costPurchaseOtherTaxExclude)
+f2(costProjectManageTaxExclude)+f2(costOtherOtherTaxExclude));
+f2(costProjectManageTaxExclude)+f2(costOtherOtherTaxExclude)));
}