gansu_2013.js 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. 'use strict';
  2. /**
  3. *
  4. *
  5. * @author Zhong
  6. * @date 2018/8/31
  7. * @version
  8. */
  9. /*
  10. * 费用定额下priceProperties为空,则单位工程中取价取basePrice字段
  11. * 费用定额下consumeAmtProperties为空,则单位工程中取消耗量取consumeAmt字段
  12. * */
  13. //计税方式
  14. const taxModel = {'common': 1, 'simple': 2};
  15. //兰州 定西 天水 平凉 庆阳 武威 金昌 张掖 酒泉 甘矿 嘉峪关 临夏 合作 武都 白银
  16. //价格属性-地区+计税方式
  17. const pricePropertiesTemplate = [
  18. {
  19. region: '兰州',
  20. taxModel: taxModel.common,
  21. price: {
  22. dataCode: 'price1',
  23. dataName: '兰州单价-一般'
  24. }
  25. },
  26. {
  27. region: '兰州',
  28. taxModel: taxModel.simple,
  29. price: {
  30. dataCode: 'price2',
  31. dataName: '兰州单价-简易'
  32. }
  33. },
  34. {
  35. region: '定西',
  36. taxModel: taxModel.common,
  37. price: {
  38. dataCode: 'price3',
  39. dataName: '定西单价-一般'
  40. }
  41. },
  42. {
  43. region: '定西',
  44. taxModel: taxModel.simple,
  45. price: {
  46. dataCode: 'price4',
  47. dataName: '定西单价-简易'
  48. }
  49. },
  50. {
  51. region: '天水',
  52. taxModel: taxModel.common,
  53. price: {
  54. dataCode: 'price5',
  55. dataName: '天水单价-一般'
  56. }
  57. },
  58. {
  59. region: '天水',
  60. taxModel: taxModel.simple,
  61. price: {
  62. dataCode: 'price6',
  63. dataName: '天水单价-简易'
  64. }
  65. },
  66. {
  67. region: '平凉',
  68. taxModel: taxModel.common,
  69. price: {
  70. dataCode: 'price7',
  71. dataName: '平凉单价-一般'
  72. }
  73. },
  74. {
  75. region: '平凉',
  76. taxModel: taxModel.simple,
  77. price: {
  78. dataCode: 'price8',
  79. dataName: '平凉单价-简易'
  80. }
  81. },
  82. {
  83. region: '庆阳',
  84. taxModel: taxModel.common,
  85. price: {
  86. dataCode: 'price9',
  87. dataName: '庆阳单价-一般'
  88. }
  89. },
  90. {
  91. region: '庆阳',
  92. taxModel: taxModel.simple,
  93. price: {
  94. dataCode: 'price10',
  95. dataName: '庆阳单价-简易'
  96. }
  97. },
  98. {
  99. region: '武威',
  100. taxModel: taxModel.common,
  101. price: {
  102. dataCode: 'price11',
  103. dataName: '武威单价-一般'
  104. }
  105. },
  106. {
  107. region: '武威',
  108. taxModel: taxModel.simple,
  109. price: {
  110. dataCode: 'price12',
  111. dataName: '武威单价-简易'
  112. }
  113. },
  114. {
  115. region: '金昌',
  116. taxModel: taxModel.common,
  117. price: {
  118. dataCode: 'price13',
  119. dataName: '金昌单价-一般'
  120. }
  121. },
  122. {
  123. region: '金昌',
  124. taxModel: taxModel.simple,
  125. price: {
  126. dataCode: 'price14',
  127. dataName: '金昌单价-简易'
  128. }
  129. },
  130. {
  131. region: '张掖',
  132. taxModel: taxModel.common,
  133. price: {
  134. dataCode: 'price15',
  135. dataName: '张掖单价-一般'
  136. }
  137. },
  138. {
  139. region: '张掖',
  140. taxModel: taxModel.simple,
  141. price: {
  142. dataCode: 'price16',
  143. dataName: '张掖单价-简易'
  144. }
  145. },
  146. {
  147. region: '酒泉',
  148. taxModel: taxModel.common,
  149. price: {
  150. dataCode: 'Price17',
  151. dataName: '酒泉单价-一般'
  152. }
  153. },
  154. {
  155. region: '酒泉',
  156. taxModel: taxModel.simple,
  157. price: {
  158. dataCode: 'price18',
  159. dataName: '酒泉单价-简易'
  160. }
  161. },
  162. {
  163. region: '甘矿',
  164. taxModel: taxModel.common,
  165. price: {
  166. dataCode: 'price19',
  167. dataName: '甘矿单价-一般'
  168. }
  169. },
  170. {
  171. region: '甘矿',
  172. taxModel: taxModel.simple,
  173. price: {
  174. dataCode: 'price20',
  175. dataName: '甘矿单价-简易'
  176. }
  177. },
  178. {
  179. region: '嘉峪关',
  180. taxModel: taxModel.common,
  181. price: {
  182. dataCode: 'price21',
  183. dataName: '嘉峪关单价-一般'
  184. }
  185. },
  186. {
  187. region: '嘉峪关',
  188. taxModel: taxModel.simple,
  189. price: {
  190. dataCode: 'price22',
  191. dataName: '嘉峪关单价-简易'
  192. }
  193. },
  194. {
  195. region: '临夏',
  196. taxModel: taxModel.common,
  197. price: {
  198. dataCode: 'price23',
  199. dataName: '临夏单价-一般'
  200. }
  201. },
  202. {
  203. region: '临夏',
  204. taxModel: taxModel.simple,
  205. price: {
  206. dataCode: 'price24',
  207. dataName: '临夏单价-简易'
  208. }
  209. },
  210. {
  211. region: '合作',
  212. taxModel: taxModel.common,
  213. price: {
  214. dataCode: 'price25',
  215. dataName: '合作单价-一般'
  216. }
  217. },
  218. {
  219. region: '合作',
  220. taxModel: taxModel.simple,
  221. price: {
  222. dataCode: 'price26',
  223. dataName: '合作单价-简易'
  224. }
  225. },
  226. {
  227. region: '武都',
  228. taxModel: taxModel.common,
  229. price: {
  230. dataCode: 'price27',
  231. dataName: '武都单价-一般'
  232. }
  233. },
  234. {
  235. region: '武都',
  236. taxModel: taxModel.simple,
  237. price: {
  238. dataCode: 'price28',
  239. dataName: '武都单价-简易'
  240. }
  241. },
  242. {
  243. region: '白银',
  244. taxModel: taxModel.common,
  245. price: {
  246. dataCode: 'price29',
  247. dataName: '白银单价-一般'
  248. }
  249. },
  250. {
  251. region: '白银',
  252. taxModel: taxModel.simple,
  253. price: {
  254. dataCode: 'price30',
  255. dataName: '白银单价-简易'
  256. }
  257. },
  258. ];
  259. const consumeAmtPropertiesTemplate = [];
  260. if(typeof module !== 'undefined'){
  261. module.exports = {
  262. pricePropertiesTemplate: pricePropertiesTemplate,
  263. consumeAmtPropertiesTemplate: consumeAmtPropertiesTemplate
  264. };
  265. }