Browse Source

清单固定类别增加增值税

zhongzewei 7 years ago
parent
commit
7e19c4254c
1 changed files with 5 additions and 2 deletions
  1. 5 2
      modules/common/const/bills_fixed.js

+ 5 - 2
modules/common/const/bills_fixed.js

@@ -40,7 +40,9 @@ const fixedFlag = {
     // 税金
     TAX: 18,
     //工程造价
-    ENGINEERINGCOST: 19
+    ENGINEERINGCOST: 19,
+    //增值税
+    ADDED_VALUE_TAX: 20
 };
 const fixedFlagList = [
     {name: "分部分项工程", value: fixedFlag.SUB_ENGINERRING},
@@ -61,7 +63,8 @@ const fixedFlagList = [
     {name: "社会保险费及住房公积金", value: fixedFlag.SOCIAL_INSURANCE_HOUSING_FUND},
     {name: "工程排污费", value: fixedFlag.POLLUTANTS},
     {name: "税金", value: fixedFlag.TAX},
-    {name: "工程造价", value: fixedFlag.ENGINEERINGCOST}
+    {name: "工程造价", value: fixedFlag.ENGINEERINGCOST},
+    {name: "增值税", value: fixedFlag.ADDED_VALUE_TAX}
 ];
 
 export {fixedFlag as default, fixedFlagList as List};