exportStandardInterface.js 124 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109
  1. 'use strict';
  2. /**
  3. *
  4. *
  5. * @author Zhong
  6. * @date 2019/3/15
  7. * @version
  8. */
  9. /*
  10. * 数据标准接口
  11. * 导出符合标准接口要求的xml
  12. * */
  13. const XMLStandard = (function () {
  14. //费用类别:固定行ID对应
  15. const FEE_TYPE = {
  16. [fixedFlag.SUB_ENGINERRING]: '1100',
  17. [fixedFlag.MEASURE]: '1200',
  18. [fixedFlag.CONSTRUCTION_ORGANIZATION]: '120201',
  19. [fixedFlag.ORGANIZATION]: '120201',
  20. [fixedFlag.SAFETY_CONSTRUCTION]: '1204',
  21. [fixedFlag.PROJECT_COMPLETE_ARCH_FEE]: '10041',
  22. [fixedFlag.HOUSE_QUALITY_ACCEPT_FEE]: '1206',
  23. [fixedFlag.OTHER]: '1300',
  24. [fixedFlag.CHARGE]: '800',
  25. [fixedFlag.TAX]: '900',
  26. [fixedFlag.ADDED_VALUE_TAX]: '9001',
  27. [fixedFlag.ADDITIONAL_TAX]: '9002',
  28. [fixedFlag.ENVIRONMENTAL_PROTECTION_TAX]: '9003',
  29. [fixedFlag.ENGINEERINGCOST]: '1',
  30. 0: '1800', //其他未定义的大项费用
  31. };
  32. //文件类型
  33. const FILE_KIND_TEXT = {
  34. '1': '投标',
  35. '2': '招标',
  36. '3': '控制价'
  37. };
  38. //固定类别-基数映射
  39. const FlagCalcBaseMap = {
  40. [fixedFlag.SUB_ENGINERRING]: 'FBFXHJ',
  41. [fixedFlag.MEASURE]: 'CSXMHJ',
  42. [fixedFlag.CONSTRUCTION_TECH]: 'JSCSF',
  43. [fixedFlag.CONSTRUCTION_ORGANIZATION]: 'ZZCSF',
  44. [fixedFlag.Other]: 'QTXMHJ',
  45. [fixedFlag.CHARGE]: 'GF',
  46. [fixedFlag.TAX]: 'SJ',
  47. [fixedFlag.PROVISIONAL]: 'ZLJE',
  48. [fixedFlag.ENGINEERING_ESITIMATE]: 'ZYZGJ',
  49. [fixedFlag.DAYWORK]: 'JRG',
  50. [fixedFlag.TURN_KEY_CONTRACT]: 'ZCBFWF',
  51. [fixedFlag.CLAIM_VISA]: 'SPQZ',
  52. '{分部分项工程费}': fixedFlag.SUB_ENGINERRING,
  53. '{措施项目费}': fixedFlag.MEASURE,
  54. '{组织措施项目费}': fixedFlag.CONSTRUCTION_ORGANIZATION,
  55. '{技术措施项目费}': fixedFlag.CONSTRUCTION_TECH,
  56. '{安全文明施工专项费}': fixedFlag.SAFETY_CONSTRUCTION,
  57. '{其他项目费}': fixedFlag.OTHER,
  58. '{规费}': fixedFlag.CHARGE,
  59. '{税金}': fixedFlag.TAX,
  60. '{增值税}': fixedFlag.ADDED_VALUE_TAX,
  61. };
  62. //计算基础表达式映射
  63. const CalcBaseMap = {
  64. '{分部分项工程费}': 'FBFXHJ',
  65. '{措施项目费}': 'CSXMHJ',
  66. '{组织措施项目费}': 'ZZCSF',
  67. '{其他项目费}': 'QTXMHJ',
  68. '{规费}': 'GF',
  69. '{税金}': 'SJ',
  70. '{税前工程造价}': 'SQGCZJ',
  71. '{分部分项定额人工费}': 'RGF',
  72. '{分部分项定额材料费}': 'CLF',
  73. '{分部分项定额施工机具使用费}': 'JXF',
  74. '{分部分项主材费}': 'ZCF',
  75. '{分部分项人工工日}': 'GR',
  76. '{技术措施项目费}': 'JSCSF',
  77. '{技术措施项目定额人工费}': 'JSCS_RGF',
  78. '{技术措施项目定额材料费}': 'JSCS_CLF',
  79. '{技术措施项目定额施工机具使用费}': 'JSCS_JXF',
  80. '{技术措施项目主材费}': 'JSCS_ZCF',
  81. '{技术措施项目人工工日}': 'JSCS_GR',
  82. '{建筑面积}': 'JZMJ',
  83. '{人材机价差}': 'RCJJC',
  84. '{人工价差}': 'RGJC',
  85. '{材料价差}': 'CLJC',
  86. '{施工机具使用费价差}': 'JXJC',
  87. '{甲供人工费}': 'JGRGF',
  88. '{甲供材料费}': 'JGCLF',
  89. '{甲供施工机具使用费}': 'JGJXF',
  90. '{甲供主材费}': 'JGZCF',
  91. '{甲供设备费}': 'JGSBF',
  92. '{分包费}': 'FBF',
  93. '{分包定额人工费}': 'FBRGF',
  94. '{分包定额材料费}': 'FBCLF',
  95. '{分包定额机械费}': 'FBJXF',
  96. '{分包主材费}': 'FBZCF',
  97. '{分包设备费}': 'FBSBF',
  98. '{分包人工工日}': 'FBGR'
  99. };
  100. //计算基础说明映射
  101. const CalcStateMap = {
  102. 'FBFXHJ': '分部分项工程费',
  103. 'CSXMHJ': '措施项目费',
  104. 'ZZCSF': '组织措施项目费',
  105. 'QTXMHJ': '其他项目费',
  106. 'GF': '规费',
  107. 'SJ': '税金',
  108. 'SQGCZJ': '税前工程造价',
  109. 'RGF': '分部分项定额人工费',
  110. 'CLF': '分部分项定额材料费',
  111. 'JXF': '分部分项定额施工机具使用费',
  112. 'ZCF': '分部分项主材费',
  113. 'GR': '分部分项人工工日',
  114. 'JSCSF': '技术措施项目费',
  115. 'JSCS_RGF': '技术措施项目定额人工费',
  116. 'JSCS_CLF': '技术措施项目定额材料费',
  117. 'JSCS_JXF': '技术措施项目定额施工机具使用费',
  118. 'JSCS_ZCF': '技术措施项目主材费',
  119. 'JSCS_GR': '技术措施项目人工工日',
  120. 'JZMJ': '建筑面积',
  121. 'RCJJC': '人材机价差',
  122. 'RGJC': '人工价差',
  123. 'CLJC': '材料价差',
  124. 'JXJC': '施工机具使用费价差',
  125. 'JGRGF': '甲供人工费',
  126. 'JGCLF': '甲供材料费',
  127. 'JGJXF': '甲供施工机具使用费',
  128. 'JGZCF': '甲供主材费',
  129. 'JGSBF': '甲供设备费',
  130. 'FBF': '分包费',
  131. 'FBRGF': '分包定额人工费',
  132. 'FBCLF': '分包定额材料费',
  133. 'FBJXF': '分包定额机械费',
  134. 'FBZCF': '分包主材费',
  135. 'FBSBF': '分包设备费',
  136. 'FBGR': '分包人工工日',
  137. };
  138. // 通用设置和工具
  139. let _base = XML_EXPORT_BASE,
  140. _config = _base.CONFIG,
  141. _util = _base.UTIL,
  142. _cache = _base.CACHE;
  143. /*
  144. * 提取数据入口
  145. * @param {String}userID 用户ID
  146. * {Number}exportKind 导出类型(投标1、招标2、控制价3
  147. * {Object}projectData 项目数据(项目自身的数据、建设、单项、单位的数据(projects表的数据),不包含详细的清单定额等数据)
  148. * @return {Array} [{data: Object, exportKind: Number, fileName: String}]
  149. * */
  150. async function entry(userID, exportKind, projectData) {
  151. let _failList = _cache.getItem('failList');
  152. // 不导出的人材机类型数据:企业管理费、利润、一般风险费
  153. let skipGLJTypes = [6, 7, 8];
  154. //建设项目定义
  155. //source:来源数据
  156. function Project(source) {
  157. let attrs = [
  158. {name: '项目编号', value: _util.getValueByKey(source.basicInformation, 'projNum'), required: true, minLen: 1, maxLen: 255,
  159. whiteSpace: _config.WHITE_SPACE.COLLAPSE},
  160. {name: '项目名称', value: source.name, required: true, minLen: 1, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE},
  161. {name: '建设单位', value: _util.getValueByKey(source.basicInformation, 'constructionUnit'), required: true},
  162. {name: '标准版本号', value: '3.2.2', required: true},
  163. {name: '标准名称', value: '重庆造价软件数据交换标准(清单计价)', required: true,},
  164. {name: '文件类型', value: source.fileKind, required: true, enumeration: ['招标', '投标', '控制价', '结算', '其他']},
  165. {name: '计税方法', value: source.taxType, required: true, enumeration: ['营业税', '一般计税法', '简易计税法']},
  166. ];
  167. //唯一约束
  168. this.constraints = {
  169. engCode: [], //单项工程编号
  170. tenderCode: [], //单位工程编号
  171. billsCode: [], //清单项目项目编码(修改成了建设项目下唯一)
  172. };
  173. XML_EXPORT_BASE.Element.call(this, '标段', attrs);
  174. }
  175. //项目信息定义
  176. function ProjectInfo(source) {
  177. let attrs = [
  178. {name: '工程规模', value: _util.getValueByKey(source.basicInformation, 'projectScale'), required: true},
  179. {name: '工程所在地', value: _util.getValueByKey(source.basicInformation, 'projLocation'), required: true},
  180. {name: '工程地址', value: _util.getValueByKey(source.basicInformation, 'projAddress'), required: true},
  181. {name: '施工单位', value: _util.getValueByKey(source.basicInformation, 'buildingUnit')},
  182. {name: '编制单位', value: _util.getValueByKey(source.basicInformation, 'establishUnit'), required: true},
  183. {name: '审核单位', value: _util.getValueByKey(source.basicInformation, 'auditUnit')},
  184. {name: '编制人', value: _util.getValueByKey(source.basicInformation, 'establishUnitAuthor'), required: true},
  185. {name: '审核人', value: _util.getValueByKey(source.basicInformation, 'auditUnitAuditor')},
  186. {name: '开工日期', value: _util.getValueByKey(source.basicInformation, 'commencementDate'), type: _config.TYPE.DATE},
  187. {name: '竣工日期', value: _util.getValueByKey(source.basicInformation, 'completionDate'), type: _config.TYPE.DATE},
  188. {name: '编制日期', value: _util.getValueByKey(source.basicInformation, 'establishDate'), type: _config.TYPE.DATE, required: true},
  189. {name: '审核日期', value: _util.getValueByKey(source.basicInformation, 'auditDate'), type: _config.TYPE.DATE},
  190. {name: '材料价格期', value: _util.getValueByKey(source.basicInformation, 'materialPricePeriod'), required: true},
  191. {name: '合同价类型', value: _util.getValueByKey(source.basicInformation, 'contractPriceType')},
  192. ];
  193. XML_EXPORT_BASE.Element.call(this, '项目信息', attrs);
  194. }
  195. //招标信息定义
  196. function BiddingInfo(source) {
  197. //控制总价: 如果文件类型是“控制价”,则导出建设项目的工程造价;如果是“招标”、“投标”,则取0
  198. let attrs = [
  199. {name: '招标代理机构', value: _util.getValueByKey(source.basicInformation, 'agency')},
  200. {name: '造价工程师', value: _util.getValueByKey(source.basicInformation, 'tenderCostEngineer'), required: true},
  201. {name: '造价工程师注册证号', value: _util.getValueByKey(source.basicInformation, 'tenderingRegistrationCertificateNumber'), required: true},
  202. {name: '招标工期', value: _util.getValueByKey(source.basicInformation, 'tenderingPeriod'), required: true, type: _config.TYPE.INT},
  203. {name: '控制总价', value: exportKind === _config.EXPORT_KIND.Control ? source.summaryInfo.engineeringCost : '0',
  204. required: true, type: _config.TYPE.NUM2},
  205. ];
  206. XML_EXPORT_BASE.Element.call(this, '招标信息', attrs);
  207. }
  208. //投标信息定义
  209. function BidInfo(source) {
  210. let attrs = [
  211. {name: '投标人', value: _util.getValueByKey(source.basicInformation, 'bidder'), required: true},
  212. {name: '造价工程师', value: _util.getValueByKey(source.basicInformation, 'bidCostEngineer'), required: true},
  213. {name: '造价工程师注册证号', value: _util.getValueByKey(source.basicInformation, 'bidRegistrationCertificateNumber'), required: true},
  214. {name: '项目经理', value: _util.getValueByKey(source.basicInformation, 'projectManager')},
  215. {name: '投标工期', value: _util.getValueByKey(source.basicInformation, 'bidPeriod')},
  216. {name: '投标保证金', value: _util.getValueByKey(source.basicInformation, 'biddingMargin'), type: _config.TYPE.NUM2},
  217. {name: '质量承诺', value: _util.getValueByKey(source.basicInformation, 'qualityCommitment')},
  218. {name: '担保类型', value: _util.getValueByKey(source.basicInformation, 'guaranteeType'), enumeration: ['支票', '现金', '电汇', '汇票']},
  219. {name: '投标总价', value: source.summaryInfo.engineeringCost, required: true, type: _config.TYPE.NUM2},
  220. ];
  221. XML_EXPORT_BASE.Element.call(this, '投标信息', attrs);
  222. }
  223. //编制说明定义
  224. function CompilationIllustration(source) {
  225. let attrs = [
  226. {name: '内容', value: source.compilationIllustration, required: true},
  227. ];
  228. XML_EXPORT_BASE.Element.call(this, '编制说明', attrs);
  229. }
  230. //系统信息定义
  231. function SystemInfo(source) {
  232. let attrs = [
  233. {name: 'ID1', value: source.softInfo, required: true},
  234. {name: 'ID2', value: '', required: true},
  235. {name: '生成时间', value: source.generatedTime, type: _config.TYPE.DATE_TIME, required: true},
  236. ];
  237. XML_EXPORT_BASE.Element.call(this, '系统信息', attrs);
  238. }
  239. //费用构成定义
  240. /*
  241. * 1.投标文件时:
  242. * 在标段下,则取建设项目对应汇总数值;是在单项工程,则取单项工程对应汇总数值。
  243. * 2.招标文件时,全部取0。
  244. * 3.控制价文件时,分部分项清单合计、措施项目清单合计、其他项目清单合计、计日工合计、总承包服务费合计、签证索赔合计、规费、税金,均取0;其他按项目中汇总数据取值。
  245. * */
  246. function FeeFrom(summaryInfo) {
  247. let tenderKind = _config.EXPORT_KIND.Tender,
  248. controlKind = _config.EXPORT_KIND.Control;
  249. let attrs = [
  250. {name: '工程费合计',
  251. value: [tenderKind, controlKind].includes(exportKind) ? summaryInfo.engineeringCost : '0',
  252. required: true, type: _config.TYPE.NUM2},
  253. {name: '分部分项清单合计', value: exportKind === _config.EXPORT_KIND.Tender ? summaryInfo.subEngineering : '0', required: true, type: _config.TYPE.NUM2},
  254. {name: '措施项目清单合计', value: exportKind === _config.EXPORT_KIND.Tender ? summaryInfo.measure : '0', required: true, type: _config.TYPE.NUM2},
  255. {name: '安全文明施工专项费',
  256. value: [tenderKind, controlKind].includes(exportKind) ? summaryInfo.safetyConstruction : '0',
  257. required: true, type: _config.TYPE.NUM2},
  258. {name: '其他项目清单合计', value: exportKind === _config.EXPORT_KIND.Tender ? summaryInfo.other : '0', required: true, type: _config.TYPE.NUM2},
  259. {name: '暂列金额合计',
  260. value: [tenderKind, controlKind].includes(exportKind) ? summaryInfo.provisional : '0',
  261. type: _config.TYPE.NUM2},
  262. {name: '材料暂估价合计',
  263. value: [tenderKind, controlKind].includes(exportKind) ? summaryInfo.materialProvisional : '0',
  264. type: _config.TYPE.NUM2},
  265. {name: '专业工程暂估价合计',
  266. value: [tenderKind, controlKind].includes(exportKind) ? summaryInfo.engineeringEstimate : '0',
  267. type: _config.TYPE.NUM2},
  268. {name: '计日工合计', value: exportKind === _config.EXPORT_KIND.Tender ? summaryInfo.daywork : '0', type: _config.TYPE.NUM2},
  269. {name: '总承包服务费合计', value: exportKind === _config.EXPORT_KIND.Tender ? summaryInfo.turnKeyContract : '0', type: _config.TYPE.NUM2},
  270. {name: '签证索赔合计', value: exportKind === _config.EXPORT_KIND.Tender ? summaryInfo.claimVisa : '0', type: _config.TYPE.NUM2},
  271. {name: '规费', value: exportKind === _config.EXPORT_KIND.Tender ? summaryInfo.charge : '0', required: true, type: _config.TYPE.NUM2},
  272. {name: '税金', value: exportKind === _config.EXPORT_KIND.Tender ? summaryInfo.tax : '0', required: true, type: _config.TYPE.NUM2},
  273. ];
  274. XML_EXPORT_BASE.Element.call(this, '费用构成', attrs);
  275. }
  276. //单项工程定义
  277. function Engineering(source) {
  278. let attrs = [
  279. {name: '编号', value: '', required: true, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE},
  280. {name: '名称', value: source.name, required: true, minLen: 1, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE},
  281. {name: '金额', value: exportKind === _config.EXPORT_KIND.Tender ? source.summaryInfo.engineeringCost : '0', type: _config.TYPE.NUM2},
  282. ];
  283. XML_EXPORT_BASE.Element.call(this, '单项工程', attrs);
  284. }
  285. //单位工程定义
  286. function Tender(source) {
  287. const TAX = {
  288. '1': '一般计税',
  289. '2': '简易计税',
  290. };
  291. let attrs = [
  292. {name: '编号', value: '', required: true, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE},
  293. {name: '名称', value: source.name, required: true, minLen: 1, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE},
  294. {name: '专业', value: source.engineeringName, required: true, enumeration: [
  295. '土建工程', '装饰工程', '安装工程', '市政工程', '园林绿化工程',
  296. '仿古建筑工程', '房修工程', '轨道工程', '构筑物工程', '机械(爆破)土石方',
  297. '围墙工程', '幕墙工程', '市政安装工程', '城市轨道交通安装', '人工土石方',
  298. '房屋安装修缮工程', '房屋修缮单拆除'
  299. ]},
  300. {name: '金额', value: exportKind === _config.EXPORT_KIND.Tender
  301. ? source.summaryInfo.engineeringCost
  302. : '0', type: _config.TYPE.NUM2},
  303. {name: '定额库编码', value: source.defaultRationLibCode, enumeration: [
  304. 'CQ18TJ', 'CQ18ZS', 'CQ18AZ', 'CQ18SZ', 'CQ18YL', 'CQ18FG', 'CQ18GD', 'CQ18FS',
  305. 'CQ18LS', 'CQ18GZW', 'CQ18BP', 'CQ18ZP'
  306. ]},
  307. {name: '计税方法', value: TAX[source.taxType], required: true, enumeration: ['营业税', '一般计税', '简易计税']},
  308. ];
  309. this.constraints = {
  310. billsCode: [], //清单项目项目编码
  311. formulaMeasureNo: [], //公式计算措施项序号
  312. gljCode: [], //人材机代码
  313. provisionalDetailCode: [], //暂列金额明细编号
  314. engEstimateDetailCode: [], //专业工程暂估明细
  315. turnKeyContractCode: [], //总承包服务费费用项编号
  316. labourDayWorkCode: [], //人工计日工项目编号
  317. materialDayWorkCode: [], //材料计日工项目编号
  318. machineDayWorkCode: [], //机械计日工项目编号
  319. otherItemNo: [], //其他列项序号
  320. feeItemNo: [], //费用项序号
  321. mainBillsCode: [], //主要清单明细项目编码 (标准文件中constraint中没有定义此唯一性,但是主要清单明细的备注那里说明了,这里处理一下)
  322. appraisalDetailCode: [], //评审材料明细代码唯一(标准文件中constraint中没有定义此唯一性,但是评审材料明细的备注里说明了)
  323. detailCode: [] //材料明细代码唯一(标材料表 暂估价材料评表中)
  324. };
  325. XML_EXPORT_BASE.Element.call(this, '单位工程', attrs);
  326. }
  327. //工程特征定义
  328. function EngFeature(source) {
  329. let attrs = [
  330. {name: '建筑分类', value: source.feature.buildingClass, required: true},
  331. {name: '工程分类', value: source.feature.projClass, required: true},
  332. {name: '建设规模', value: source.feature.projectScale, required: true},
  333. {name: '工程类别', value: _util.getValueByKey(source.basicInformation, 'projectCategory'), required: true} //取建设项目的工程类别
  334. ];
  335. XML_EXPORT_BASE.Element.call(this, '工程特征', attrs);
  336. }
  337. //特征项定义
  338. function FeatureItem(feature) {
  339. let attrs = [
  340. {name: '编码', value: feature.code},
  341. {name: '名称', value: feature.dispName, required: true},
  342. {name: '内容', value: feature.value, required: true},
  343. ];
  344. XML_EXPORT_BASE.Element.call(this, '特征项', attrs);
  345. }
  346. //工程信息-信息项定义
  347. function InfoItem(info) {
  348. let attrs = [
  349. {name: '编码', value: info.code, required: true},
  350. {name: '内容', value: info.value, required: true},
  351. ];
  352. XML_EXPORT_BASE.Element.call(this, '信息项', attrs);
  353. }
  354. //单位工程费汇总定义
  355. function TenderFeeSummary() {
  356. XML_EXPORT_BASE.Element.call(this, '单位工程费汇总', []);
  357. }
  358. //计价程序费用行定义
  359. function FeeRow(source) {
  360. let attrs = [
  361. {name: '序号', value: source.code},
  362. {name: '行代号', value: source.rowCode, required: true},
  363. {name: '项目名称', value: source.name, required: true},
  364. {name: '计算基础表达式', value: source.calcBase, required: true},
  365. {name: '计算基础说明', value: source.calcBaseState},
  366. {name: '费率', value: exportKind === _config.EXPORT_KIND.Tender ? source.feeRate : '100'},
  367. {name: '金额', value: exportKind === _config.EXPORT_KIND.Tender ? _util.getFee(source.fees, 'common.totalFee') : '0', type: _config.TYPE.NUM2},
  368. {name: '其中暂估价', value: exportKind === _config.EXPORT_KIND.Tender ? _util.getFee(source.fees, 'estimate.totalFee') : '0', type: _config.TYPE.NUM2},
  369. {name: '费用类别', value: source.feeType, type: _config.TYPE.INT, required: true,
  370. enumeration: ['1100', '1200', '1204', '1300', '800', '900', '1800', '1'],
  371. failHint: `第${source.row}行清单-“费用类别”`
  372. },
  373. {name: '备注', value: source.remark},
  374. ];
  375. XML_EXPORT_BASE.Element.call(this, '计价程序费用行', attrs);
  376. }
  377. //分部分项清单
  378. function FBFXBills() {
  379. XML_EXPORT_BASE.Element.call(this, '分部分项清单', []);
  380. }
  381. //清单分部定义
  382. function FBBills(source) {
  383. let attrs = [
  384. {name: '编号', value: source.code, required: true, maxLen: 20,
  385. failHint: `第${source.row}行清单分部-“编码”`},
  386. {name: '名称', value: source.name, required: true, minLen: 1, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE,
  387. failHint: `第${source.row}行清单分部-“名称”`},
  388. {name: '金额', value: exportKind === _config.EXPORT_KIND.Tender ? _util.getFee(source.fees, 'common.totalFee') : '0', required: true, type: _config.TYPE.NUM2},
  389. {name: '其中暂估价', value: exportKind === _config.EXPORT_KIND.Tender ? _util.getFee(source.fees, 'estimate.totalFee') : '0', required: true},
  390. {name: '备注', value: source.remark}
  391. ];
  392. XML_EXPORT_BASE.Element.call(this, '清单分部', attrs);
  393. }
  394. //清单项目定义
  395. function FXbills(source) {
  396. let attrs = [
  397. {name: '项目编码', value: source.code, required: true, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE,
  398. failHint: `第${source.row}行清单-“编码”`},
  399. {name: '项目名称', value: source.name, required: true, minLen: 1, maxLen: 500, whiteSpace: _config.WHITE_SPACE.COLLAPSE,
  400. failHint: `第${source.row}行清单-“名称”`},
  401. {name: '单位', value: source.unit, required: true, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE,
  402. failHint: `第${source.row}行清单-“单位”`},
  403. {name: '工程量', value: source.quantity, required: true, type: _config.TYPE.DECIMAL,
  404. failHint: `第${source.row}行清单-“工程量”`},
  405. {name: '综合单价', value: exportKind === _config.EXPORT_KIND.Tender ? _util.getFee(source.fees, 'common.unitFee') : '0', required: true,
  406. type: _config.TYPE.DECIMAL},
  407. {name: '综合合价', value: exportKind === _config.EXPORT_KIND.Tender ? _util.getFee(source.fees, 'common.totalFee') : '0', required: true,
  408. type: _config.TYPE.NUM2},
  409. {name: '其中暂估价', value: exportKind === _config.EXPORT_KIND.Tender ? _util.getFee(source.fees, 'estimate.totalFee') : '0', required: true,
  410. type: _config.TYPE.NUM2},
  411. {name: '主要清单标志', value: !!source.mainBills, type: _config.TYPE.BOOL,
  412. failHint: `第${source.row}行清单-“主要清单标志”`},
  413. {name: '暂估清单标志', value: !!source.isEstimate, type: _config.TYPE.BOOL,
  414. failHint: `第${source.row}行清单-“暂估清单标志”`},
  415. {name: '最高限价', value: source.maxPrice, type: _config.TYPE.NUM2,
  416. failHint: `第${source.row}行清单-“最高限价”`},
  417. {name: '备注', value: source.remark},
  418. ];
  419. XML_EXPORT_BASE.Element.call(this, '清单项目', attrs);
  420. }
  421. //项目特征定义
  422. function ItemCharacter() {
  423. XML_EXPORT_BASE.Element.call(this, '项目特征', []);
  424. }
  425. //特征定义
  426. function Feature(source) {
  427. let attrs = [
  428. {name: '特征名称', value: source.name, required: true},
  429. {name: '特征描述', value: source.value, required: true},
  430. ];
  431. XML_EXPORT_BASE.Element.call(this, '特征', attrs);
  432. }
  433. //工程内容定义
  434. function JobContent() {
  435. XML_EXPORT_BASE.Element.call(this, '工程内容', []);
  436. }
  437. //内容定义
  438. function Content(content) {
  439. let attrs = [
  440. {name: '内容', value: content, required: true}
  441. ];
  442. XML_EXPORT_BASE.Element.call(this, '内容', attrs);
  443. }
  444. //组价内容定义
  445. function PriceContent() {
  446. XML_EXPORT_BASE.Element.call(this, '组价内容', []);
  447. }
  448. //定额子目定义
  449. function Ration(source) {
  450. let attrs = [
  451. {name: '定额编号', value: source.viewCode, required: true, minLen: 1, maxLen: 80, whiteSpace: _config.WHITE_SPACE.COLLAPSE,
  452. failHint: `第${source.row}行定额-“编码”`},
  453. {name: '项目名称', value: source.name, required: true, minLen: 1, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE,
  454. failHint: `第${source.row}行定额-“名称”`},
  455. {name: '单位', value: source.unit, required: true, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE,
  456. failHint: `第${source.row}行定额-“单位”`},
  457. {name: '定额库编码', value: source.libCode, required: true},
  458. {name: '原始定额编号', value: source.code, minLen: 1, maxLen: 80, whiteSpace: _config.WHITE_SPACE.COLLAPSE},
  459. {name: '子目类型', value: source.subType, required: true, type: _config.TYPE.INT, enumeration: ['0', '1', '2', '3', '4', '5', '6']},
  460. {name: '工程量', value: source.quantity, required: true, type: _config.TYPE.DECIMAL,
  461. failHint: `第${source.row}行定额-“工程量”`},
  462. {name: '工程量计算式', value: source.quantityEXP},
  463. {name: '定额单价', value: _util.getFee(source.fees, 'rationUnitPrice.unitFee'), required: true, type: _config.TYPE.DECIMAL},
  464. {name: '定额合价', value: _util.getFee(source.fees, 'rationUnitPrice.totalFee'), required: true, type: _config.TYPE.NUM2},
  465. {name: '综合单价', value: _util.getFee(source.fees, 'common.unitFee'), required: true, type: _config.TYPE.DECIMAL},
  466. {name: '综合合价', value: _util.getFee(source.fees, 'common.totalFee'), required: true, type: _config.TYPE.NUM2},
  467. {name: '单价构成文件ID', value: source.programID, required: true, type: _config.TYPE.INT},
  468. {name: '分包标志', value: !!source.isSubcontract, type: _config.TYPE.BOOL,
  469. failHint: `第${source.row}行定额-“分包标志”`},
  470. {name: '备注', value: source.remark}
  471. ];
  472. XML_EXPORT_BASE.Element.call(this, '定额子目', attrs);
  473. }
  474. //工料分析定义
  475. function GljAnalyze() {
  476. XML_EXPORT_BASE.Element.call(this, '工料分析', []);
  477. }
  478. //人材机含量定义
  479. function GljContent(source) {
  480. let attrs = [
  481. {name: '人材机代码', value: source.code, required: true, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE},
  482. {name: '消耗量', value: source.quantity, required: true, type: _config.TYPE.DECIMAL},
  483. {name: '数量', value: source.totalQuantity, required: true, type: _config.TYPE.DECIMAL},
  484. {name: '数量计算方式', value: 1, required: true, type: _config.TYPE.INT, enumeration: ['1', '2']},
  485. ];
  486. XML_EXPORT_BASE.Element.call(this, '人材机含量', attrs);
  487. }
  488. //费用组成
  489. function FeeContent(source) {
  490. let attrs = [
  491. {name: '基价人工费单价', value: _util.getFee(source.fees, 'labour.unitFee'), type: _config.TYPE.DECIMAL, required: true},
  492. {name: '基价人工费合价', value: _util.getFee(source.fees, 'labour.totalFee'), type: _config.TYPE.NUM2, required: true},
  493. {name: '定额人工基价调整单价', value: 0, type: _config.TYPE.DECIMAL}, //调整价目前只有08有,默认设置成0
  494. {name: '定额人工基价调整合价', value: 0, type: _config.TYPE.NUM2},
  495. {name: '基价材料费单价', value: _util.getFee(source.fees, 'material.unitFee'), type: _config.TYPE.DECIMAL, required: true},
  496. {name: '基价材料费合价', value: _util.getFee(source.fees, 'material.totalFee'), type: _config.TYPE.NUM2, required: true},
  497. {name: '基价机械费单价', value: _util.getFee(source.fees, 'machine.unitFee'), type: _config.TYPE.DECIMAL, required: true},
  498. {name: '基价机械费合价', value: _util.getFee(source.fees, 'machine.totalFee'), type: _config.TYPE.NUM2, required: true},
  499. {name: '定额机上人工基价调整单价', value: 0, type: _config.TYPE.DECIMAL, required: true},
  500. {name: '定额机上人工基价调整合价', value: 0, type: _config.TYPE.NUM2, required: true},
  501. {name: '未计价材料单价', value: _util.getFee(source.fees, 'unratedMaterial.unitFee'), type: _config.TYPE.DECIMAL, required: true},
  502. {name: '未计价材料合价', value: _util.getFee(source.fees, 'unratedMaterial.totalFee'), type: _config.TYPE.NUM2, required: true},
  503. {name: '人材机价差单价', value: scMathUtil.roundForObj(_util.getFee(source.fees, 'labourDiff.unitFee') +
  504. _util.getFee(source.fees, 'materialDiff.unitFee') + _util.getFee(source.fees, 'machineDiff.unitFee'), 2),
  505. type: _config.TYPE.DECIMAL, required: true}, //人材机价差通过人工、材料、机械价差相加得出
  506. {name: '人材机价差合价', value: scMathUtil.roundForObj(_util.getFee(source.fees, 'labourDiff.totalFee') +
  507. _util.getFee(source.fees, 'materialDiff.totalFee') + _util.getFee(source.fees, 'machineDiff.totalFee'), 2),
  508. type: _config.TYPE.NUM2, required: true},
  509. {name: '暂估材料单价', value: _util.getFee(source.fees, 'estimate.unitFee'), type: _config.TYPE.DECIMAL, required: true},
  510. {name: '暂估材料合价', value: _util.getFee(source.fees, 'estimate.totalFee'), type: _config.TYPE.NUM2, required: true},
  511. {name: '管理费单价', value: _util.getFee(source.fees, 'manage.unitFee'), type: _config.TYPE.DECIMAL, required: true},
  512. {name: '管理费合价', value: _util.getFee(source.fees, 'manage.totalFee'), type: _config.TYPE.NUM2, required: true},
  513. {name: '利润单价', value: _util.getFee(source.fees, 'profit.unitFee'), type: _config.TYPE.DECIMAL, required: true},
  514. {name: '利润合价', value: _util.getFee(source.fees, 'profit.totalFee'), type: _config.TYPE.NUM2, required: true},
  515. {name: '风险单价', value: scMathUtil.roundForObj(_util.getFee(source.fees, 'risk.unitFee') + _util.getFee(source.fees, 'otherRisk.unitFee'), 2),
  516. type: _config.TYPE.DECIMAL, required: true}, //一般风险费单价+其他风险费单价
  517. {name: '风险合价', value: scMathUtil.roundForObj(_util.getFee(source.fees, 'risk.totalFee') + _util.getFee(source.fees, 'otherRisk.totalFee'), 2),
  518. type: _config.TYPE.NUM2, required: true},
  519. {name: '一般风险单价', value: _util.getFee(source.fees, 'risk.unitFee'), type: _config.TYPE.DECIMAL, required: true},
  520. {name: '一般风险合价', value: _util.getFee(source.fees, 'risk.totalFee'), type: _config.TYPE.NUM2, required: true},
  521. {name: '其他风险单价', value: _util.getFee(source.fees, 'otherRisk.unitFee'), type: _config.TYPE.DECIMAL, required: true},
  522. {name: '其他风险合价', value: _util.getFee(source.fees, 'otherRisk.totalFee'), type: _config.TYPE.NUM2, required: true},
  523. ];
  524. XML_EXPORT_BASE.Element.call(this, '费用组成', attrs);
  525. }
  526. //措施项目清单定义
  527. function CSXMBills(source) {
  528. let attrs = [
  529. {name: '金额', value: exportKind === _config.EXPORT_KIND.Tender ? _util.getFee(source.fees, 'common.totalFee') : '0',
  530. type: _config.TYPE.NUM2, required: true},
  531. {name: '其中暂估价', value: exportKind === _config.EXPORT_KIND.Tender ? _util.getFee(source.fees, 'estimate.totalFee') : '0',
  532. type: _config.TYPE.NUM2, required: true},
  533. ];
  534. XML_EXPORT_BASE.Element.call(this, '措施项目清单', attrs);
  535. }
  536. //组织措施清单定义
  537. function ZZCSBills(source) {
  538. let attrs = [
  539. {name: '金额', value: exportKind === _config.EXPORT_KIND.Tender ? _util.getFee(source.fees, 'common.totalFee') : '0',
  540. type: _config.TYPE.NUM2, required: true},
  541. ];
  542. XML_EXPORT_BASE.Element.call(this, '组织措施清单', attrs);
  543. }
  544. //组织措施分类定义
  545. function ZZCSClass(source) {
  546. let attrs = [
  547. {name: '编码', value: source.code, maxLen: 20, required: true,
  548. failHint: `第${source.row}行组织措施清单-“编码”`},
  549. {name: '名称', value: source.name, minLen: 1, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true,
  550. failHint: `第${source.row}行组织措施清单-“名称”`},
  551. {name: '金额', value: exportKind === _config.EXPORT_KIND.Tender ? _util.getFee(source.fees, 'common.totalFee') : '0',
  552. type: _config.TYPE.NUM2, required: true},
  553. {name: '备注', value: source.remark}
  554. ];
  555. XML_EXPORT_BASE.Element.call(this, '组织措施分类', attrs);
  556. }
  557. //公式计算措施项
  558. function FormulaCalcMeasure(source) {
  559. let attrs = [
  560. {name: '序号', value: source.code, minLen: 1, maxLen:20, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true,
  561. failHint: `第${source.row}行清单-“编码”`},
  562. {name: '名称', value: source.name, minLen: 1, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true,
  563. failHint: `第${source.row}行清单-“名称”`},
  564. {name: '计算基础表达式', value: source.calcBase, required: true},
  565. {name: '计算基础说明', value: source.calcBaseState},
  566. {name: '费率', value: exportKind === _config.EXPORT_KIND.Tender ? source.feeRate : '0', required: true},
  567. {name: '金额', value: exportKind === _config.EXPORT_KIND.Tender ? _util.getFee(source.fees, 'common.totalFee') : '0', required: true},
  568. {name: '暂估价标志', value: !!source.isEstimate, type: _config.TYPE.BOOL},
  569. {name: '备注', value: source.remark},
  570. {name: '费用类别', value: source.feeType, enumeration: ['120201', '1204', '10041', '1206'], required: true,
  571. enumerationHint: ['组织措施费', '安全文明施工专项费', '建设工程竣工档案编制费', '住宅工程质量分户验收费'],
  572. failHint: `第${source.row}行清单-“固定费用类别”`},
  573. ];
  574. XML_EXPORT_BASE.Element.call(this, '公式计算措施项', attrs);
  575. }
  576. //技术措施清单定义
  577. function JSCSBills(source) {
  578. let attrs = [
  579. {name: '金额', value: exportKind === _config.EXPORT_KIND.Tender ? _util.getFee(source.fees, 'common.totalFee') : '0',
  580. type: _config.TYPE.NUM2, required: true},
  581. {name: '其中暂估价', value: exportKind === _config.EXPORT_KIND.Tender ? _util.getFee(source.fees, 'estimate.totalFee') : '0',
  582. type: _config.TYPE.NUM2, required: true},
  583. ];
  584. XML_EXPORT_BASE.Element.call(this, '技术措施清单', attrs);
  585. }
  586. //技术措施分类
  587. function JSCSClass(source) {
  588. let attrs = [
  589. {name: '编号', value: source.code},
  590. {name: '名称', value: source.name, required: true},
  591. {name: '金额', value: exportKind === _config.EXPORT_KIND.Tender ? _util.getFee(source.fees, 'common.totalFee') : '0',
  592. type: _config.TYPE.NUM2, required: true},
  593. {name: '其中暂估价', value: exportKind === _config.EXPORT_KIND.Tender ? _util.getFee(source.fees, 'estimate.totalFee') : '0',
  594. type: _config.TYPE.DECIMAL, required: true},
  595. ];
  596. XML_EXPORT_BASE.Element.call(this, '技术措施分类', attrs);
  597. }
  598. //其他项目清单定义
  599. function OtherBills() {
  600. XML_EXPORT_BASE.Element.call(this, '其他项目清单', []);
  601. }
  602. //暂列金额定义
  603. function Provisional(source) {
  604. let attrs = [
  605. {name: '金额', value: _util.getFee(source.fees, 'common.totalFee'), type: _config.TYPE.NUM2}
  606. ];
  607. XML_EXPORT_BASE.Element.call(this, '暂列金额', attrs);
  608. }
  609. //暂列金额明细定义
  610. function ProvisionalDetail(source) {
  611. let attrs = [
  612. {name: '编号', value: source.code, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true,
  613. failHint: `第${source.row}行暂列金额清单-“编码”`},
  614. {name: '项目名称', value: source.name, minLen: 1, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true,
  615. failHint: `第${source.row}行暂列金额清单-“名称”`},
  616. {name: '计量单位', value: source.unit, maxLen: 20, required: true,
  617. failHint: `第${source.row}行暂列金额清单-“单位”`},
  618. {name: '金额', value: _util.getFee(source.fees, 'common.totalFee'),
  619. type: _config.TYPE.NUM2, required: true},
  620. {name: '备注', value: source.remark, required: true}
  621. ];
  622. XML_EXPORT_BASE.Element.call(this, '暂列金额明细', attrs);
  623. }
  624. //专业工程暂估价定义
  625. function EngEstimate(source) {
  626. let attrs = [
  627. {name: '金额', value: _util.getFee(source.fees, 'common.totalFee')}
  628. ];
  629. XML_EXPORT_BASE.Element.call(this, '专业工程暂估价', attrs);
  630. }
  631. //专业工程暂估明细定义
  632. function EngEstimateDetail(source) {
  633. let attrs = [
  634. {name: '编号', value: source.code, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true,
  635. failHint: `第${source.row}行专业工程暂估清单-“编码”`},
  636. {name: '工程名称', value: source.name, minLen: 1, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true,
  637. failHint: `第${source.row}行专业工程暂估清单-“名称”`},
  638. {name: '工程内容', value: source.engineeringContent, maxLen: 2000, required: true,
  639. failHint: `第${source.row}行专业工程暂估清单-“工程内容”`},
  640. {name: '金额', value: _util.getFee(source.fees, 'common.totalFee'),
  641. type: _config.TYPE.NUM2, required: true},
  642. {name: '备注', value: source.remark, required: true}
  643. ];
  644. XML_EXPORT_BASE.Element.call(this, '专业工程暂估明细', attrs);
  645. }
  646. //计日工定义
  647. function DayWork(source) {
  648. let attrs = [
  649. {name: '金额', value: exportKind === _config.EXPORT_KIND.Tender ? _util.getFee(source.fees, 'common.totalFee') : '0'}
  650. ];
  651. XML_EXPORT_BASE.Element.call(this, '计日工', attrs);
  652. }
  653. //人工定义
  654. function Labour() {
  655. XML_EXPORT_BASE.Element.call(this, '人工', []);
  656. }
  657. //材料定义
  658. function Material() {
  659. XML_EXPORT_BASE.Element.call(this, '材料', []);
  660. }
  661. //施工机械定义
  662. function Machine() {
  663. XML_EXPORT_BASE.Element.call(this, '施工机械', []);
  664. }
  665. //计日工项目定义
  666. function DayWorkItem(source) {
  667. let attrs = [
  668. {name: '编号', value: source.code, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true,
  669. failHint: `第${source.row}行计日工清单-“编码”`},
  670. {name: '名称', value: source.name, minLen: 1, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true,
  671. failHint: `第${source.row}行计日工清单-“名称”`},
  672. {name: '单位', value: source.unit, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true,
  673. failHint: `第${source.row}行计日工清单-“单位”`},
  674. {name: '数量', value: source.quantity, type: _config.TYPE.DECIMAL, required: true},
  675. {name: '综合单价', value: exportKind === _config.EXPORT_KIND.Tender ? _util.getFee(source.fees, 'common.unitFee') : '0',
  676. type: _config.TYPE.DECIMAL, required: true},
  677. {name: '综合合价', value: exportKind === _config.EXPORT_KIND.Tender ? _util.getFee(source.fees, 'common.totalFee') : '0',
  678. type: _config.TYPE.NUM2, required: true},
  679. {name: '备注', value: source.remark}
  680. ];
  681. XML_EXPORT_BASE.Element.call(this, '计日工项目', attrs);
  682. }
  683. //总承包服务费定义
  684. function TurnKeyContract(source) {
  685. let attrs = [
  686. {name: '金额', value: exportKind === _config.EXPORT_KIND.Tender ? _util.getFee(source.fees, 'common.totalFee') : '0', type: _config.TYPE.NUM2}
  687. ];
  688. XML_EXPORT_BASE.Element.call(this, '总承包服务费', attrs);
  689. }
  690. //总承包服务费分类定义
  691. function TurnKeyContractClass(source) {
  692. let attrs = [
  693. {name:'编号', value: source.code, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE,
  694. failHint: `第${source.row}行承包服务费清单-“编码”`},
  695. {name:'名称', value: source.name, minLen: 1, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true,
  696. failHint: `第${source.row}行承包服务费清单-“名称”`},
  697. {name:'备注', value: source.remark}
  698. ];
  699. XML_EXPORT_BASE.Element.call(this, '总承包服务费分类', attrs);
  700. }
  701. //总承包服务费费用项定义
  702. function TurnKeyContractItem(source) {
  703. let attrs = [
  704. {name: '编号', value: source.code, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true,
  705. failHint: `第${source.row}行承包服务费清单-“编码”`},
  706. {name: '工程名称', value: source.name, minLen: 1, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true,
  707. failHint: `第${source.row}行承包服务费清单-“名称”`},
  708. {name: '计算基础', value: exportKind === _config.EXPORT_KIND.Tender ? source.calcBaseValue : '', type: _config.TYPE.DECIMAL, required: true},
  709. {name: '服务内容', value: source.serviceContent, maxLen: 255, required: true,
  710. failHint: `第${source.row}行承包服务费清单-“服务内容”`},
  711. {name: '费率', value: exportKind === _config.EXPORT_KIND.Tender ? source.feeRate : '0', type: _config.TYPE.DECIMAL, required: true},
  712. {name: '金额', value: exportKind === _config.EXPORT_KIND.Tender ? _util.getFee(source.fees, 'common.totalFee') : '0', type: _config.TYPE.NUM2, required: true},
  713. {name: '备注', value: source.remark}
  714. ];
  715. XML_EXPORT_BASE.Element.call(this, '总承包服务费费用项', attrs);
  716. }
  717. //签证索赔计价汇总费用项
  718. function ClaimVisaFeeItem(source) {
  719. let attrs = [
  720. {name: '编号', value: source.code, required: true},
  721. {name: '项目名称', value: source.name, required: true},
  722. {name: '计量单位', value: source.unit, required: true},
  723. {name: '数量', value: source.quantity, type: _config.TYPE.DECIMAL, required: true},
  724. {name: '单价', value: _util.getFee(source.fees, 'common.unitFee'),
  725. type: _config.TYPE.DECIMAL, required: true},
  726. {name: '合价', value: _util.getFee(source.fees, 'common.totalFee'),
  727. type: _config.TYPE.NUM2, required: true},
  728. {name: '依据', value: source.claimVisa, required: true},
  729. ];
  730. XML_EXPORT_BASE.Element.call(this, '签证索赔计价汇总费用项', attrs);
  731. }
  732. //其他定义
  733. function Other(source) {
  734. let attrs = [
  735. {name: '金额', value: exportKind === _config.EXPORT_KIND.Tender ? source.commonTotalFee : '0', type: _config.TYPE.NUM2}
  736. ];
  737. XML_EXPORT_BASE.Element.call(this, '其他', attrs);
  738. }
  739. //其他列项定义
  740. function OtherItem(source) {
  741. let attrs = [
  742. {name: '序号', value: source.code, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true,
  743. failHint: `第${source.row}行清单-“编码”`},
  744. {name: '名称', value: source.name, minLen: 1, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true,
  745. failHint: `第${source.row}行清单-“名称”`},
  746. {name: '计算基础', value: exportKind === _config.EXPORT_KIND.Tender ? source.calcBase : '', maxLen: 255,
  747. failHint: `第${source.row}行清单-“计算基础”`},
  748. {name: '费率', value: exportKind === _config.EXPORT_KIND.Tender ? source.feeRate : '100', type: _config.TYPE.DECIMAL},
  749. {name: '金额', value: exportKind === _config.EXPORT_KIND.Tender ? source.commonTotalFee : '0', type: _config.TYPE.NUM2, required: true},
  750. {name: '不计入合价标志', value: source.notSummray, type: _config.TYPE.BOOL},
  751. {name: '招标人标志', value: false, type: _config.TYPE.BOOL},
  752. {name: '备注', value: source.remark, maxLen: 255}
  753. ];
  754. XML_EXPORT_BASE.Element.call(this, '其他列项', attrs);
  755. }
  756. //规费和税金清单定义
  757. function ChargeTaxBills() {
  758. XML_EXPORT_BASE.Element.call(this, '规费和税金清单', []);
  759. }
  760. //费用项定义
  761. function FeeItem(source) {
  762. let attrs = [
  763. {name: '序号', value: source.code, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true,
  764. failHint: `第${source.row}行清单-“编号”`},
  765. {name: '行代号', value: source.rowCode, maxLen: 20, required: true},
  766. {name: '名称', value: source.name, minLen: 1, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true,
  767. failHint: `第${source.row}行清单-“名称”`},
  768. {name: '计算基础表达式', value: source.calcBase, maxLen: 255, required: true,
  769. failHint: `第${source.row}行清单-“计算基础表达式”`},
  770. {name: '计算基础说明', value: source.calcBaseState, maxLen: 255},
  771. {name: '费率', value: exportKind === _config.EXPORT_KIND.Tender ? source.feeRate : '0', type: _config.TYPE.DECIMAL, required: true},
  772. {name: '金额', value: exportKind === _config.EXPORT_KIND.Tender ? _util.getFee(source.fees, 'common.totalFee') : '0', type: _config.TYPE.NUM2, required: true},
  773. {name: '费用类别', value: source.feeType, enumeration: ['800', '900', '9001', '9002', '9003'], required: true,
  774. enumerationHint: ['规费', '税金', '增值税', '附加税', '环境保护税'],
  775. failHint: `第${source.row}行清单-“固定费用类别”`},
  776. {name: '备注', value: source.remark, maxLen: 255}
  777. ];
  778. XML_EXPORT_BASE.Element.call(this, '费用项', attrs);
  779. }
  780. //承包人材料差额法表
  781. function DifferentiaGlj() {
  782. XML_EXPORT_BASE.Element.call(this, '承包人材料差额法表', []);
  783. }
  784. //承包人材料差额法明细
  785. //如果是“控制价”、“招标”,则不导出;
  786. //如果是“投标”,且采用了信息价差额法,则导出;如果采用了指数法,则导出,但数量、风险系数、基准单价、投标单价,都取0。
  787. function DifferentiaGljDetail(adjustType, source) {
  788. let attrs = [
  789. {name: '关联材料号', value: getGljCode(source.id), minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true},
  790. {name: '名称', value: source.name, minLen: 1, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true},
  791. {name: '规格', value: source.specs, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE},
  792. {name: '单位', value: source.unit, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true},
  793. {name: '数量', value: adjustType === _config.ADJUST_TYPE.info ? source.quantity : '0', type: _config.TYPE.DECIMAL, required: true},
  794. {name: '风险系数', value: adjustType === _config.ADJUST_TYPE.info ? source.riskCoe : '0', type: _config.TYPE.DECIMAL, require: true},
  795. {name: '基准单价', value: source.standardPrice, type: _config.TYPE.DECIMAL, require: true},
  796. {name: '投标单价', value: adjustType === _config.ADJUST_TYPE.info ? source.marketPrice : '0', type: _config.TYPE.DECIMAL},
  797. {name: '确认单价', value: '0', type: _config.TYPE.DECIMAL},
  798. {name: '备注', value: source.remark, maxLen: 255,
  799. failHint: `承包人材料${source.code}-“备注”`},
  800. ];
  801. XML_EXPORT_BASE.Element.call(this, '承包人材料差额法明细', attrs);
  802. }
  803. //承包人材料指数法表
  804. function ExponentialGlj(fixedWeight) {
  805. let attrs = [
  806. {name: '定值权重A', value: fixedWeight, required: true, type: _config.TYPE.DECIMAL}
  807. ];
  808. XML_EXPORT_BASE.Element.call(this, '承包人材料指数法表', attrs);
  809. }
  810. //承包人材料指数法明细
  811. //如果是“控制价”、“招标”,则不导出;
  812. //如果是“投标”,且采用了指数法,则导出;如果采用了信息价差额法,则导出,但定值权重A取1,变值权重B、基本价格指数、现行价格指数取0。
  813. function ExponentialGljDetail(adjustType, source) {
  814. let attrs = [
  815. {name: '关联材料号', value: getGljCode(source.id), minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true},
  816. {name: '名称', value: source.name, minLen: 1, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true},
  817. {name: '规格', value: source.specs, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE},
  818. {name: '变值权重B', value: adjustType === _config.ADJUST_TYPE.coe ? source.varWeight : '0', type: _config.TYPE.DECIMAL, required: true},
  819. {name: '基本价格指数', value: adjustType === _config.ADJUST_TYPE.coe ? source.FO : '0', type: _config.TYPE.DECIMAL, require: true},
  820. {name: '现行价格指数', value: adjustType === _config.ADJUST_TYPE.coe ? source.FI : '0', type: _config.TYPE.DECIMAL, require: true},
  821. {name: '备注', value: source.remark, maxLen: 255,
  822. failHint: `承包人材料${source.code}-“备注”`},
  823. ];
  824. XML_EXPORT_BASE.Element.call(this, '承包人材料指数法明细', attrs);
  825. }
  826. //人材机汇总定义
  827. function GljSummary() {
  828. XML_EXPORT_BASE.Element.call(this, '人材机汇总', []);
  829. }
  830. //人材机定义
  831. function Glj(source) {
  832. let attrs = [
  833. {name: '代码', value: source.code, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true,
  834. failHint: `人材机${source.orgCode}-“编码”`},
  835. {name: '名称', value: source.name, minLen: 1, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true,
  836. failHint: `人材机${source.orgCode}-“名称”`},
  837. {name: '规格', value: source.specs, maxLen: 255,
  838. failHint: `人材机${source.orgCode}-“规格”`},
  839. {name: '单位', value: source.unit, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true,
  840. failHint: `人材机${source.orgCode}-“单位”`},
  841. {name: '原始代码', value: source.orgCode, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE},
  842. {name: '费用类别', value: source.feeType, enumeration: ['1', '2', '3', '4'], required: true},
  843. {name: '配比类别', value: source.ratioType, type: _config.TYPE.INT},
  844. {name: '主要材料类别', value: source.mainMaterialType, type: _config.TYPE.INT},
  845. {name: '主要材料单位系数', value: source.materialCoe, type: _config.TYPE.DECIMAL},
  846. {name: '材料耗用类型', value: 0, type: _config.TYPE.INT, required: true},
  847. {name: '供应方式', value: source.supply, type: _config.TYPE.INT, enumeration: ['1', '2']},
  848. {name: '暂估材料标志', value: source.is_evaluate, type: _config.TYPE.BOOL},
  849. {name: '不计税设备标志', value: source.no_tax_eqp, type: _config.TYPE.BOOL, required: true},
  850. {name: '单价不从明细汇总标志', value: source.notFromDetail, type: _config.TYPE.BOOL},
  851. {name: '定额价', value: source.basePrice, type: _config.TYPE.DECIMAL, required: true},
  852. {name: '定额价调整', value: source.adjPrice, type: _config.TYPE.DECIMAL, required: true},
  853. {name: '市场价', value: source.marketPrice, type: _config.TYPE.DECIMAL, required: true},
  854. {name: '数量', value: source.quantity, type: _config.TYPE.DECIMAL, required: true},
  855. {name: '产地', value: source.originPlace, maxLen: 255,
  856. failHint: `人材机${source.orgCode}-“产地”`},
  857. {name: '厂家', value: source.vender, maxLen: 255,
  858. failHint: `人材机${source.orgCode}-“厂家”`},
  859. {name: '质量等级', value: source.qualityGrace, maxLen: 255,
  860. failHint: `人材机${source.orgCode}-“质量等级”`},
  861. {name: '品牌', value: source.brand, maxLen: 255,
  862. failHint: `人材机${source.orgCode}-“品牌”`},
  863. {name: '备注', value: source.remark, maxLen: 255,
  864. failHint: `人材机${source.orgCode}-“备注”`},
  865. ];
  866. XML_EXPORT_BASE.Element.call(this, '人材机', attrs);
  867. }
  868. //人材机配比定义
  869. function GljRatio(source) {
  870. let attrs = [
  871. {name: '明细材料代码', value: source.code, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true},
  872. {name: '数量', value: source.quantity, type: _config.TYPE.DECIMAL, required: true}
  873. ];
  874. XML_EXPORT_BASE.Element.call(this, '人材机配比', attrs);
  875. }
  876. //评标材料表定义
  877. function EvalBidMaterial() {
  878. XML_EXPORT_BASE.Element.call(this, '评标材料表', []);
  879. }
  880. //暂估价材料表定义
  881. function EvalEstimateMaterial() {
  882. XML_EXPORT_BASE.Element.call(this, '暂估价材料表', []);
  883. }
  884. //材料明细定义
  885. function MaterialDetail(parentName, source) {
  886. let attrs = [
  887. {name: '序号', value: parentName === 'evalEstimateMaterial' ? source.orgCode : source.serialNo, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true},
  888. {name: '关联材料号', value: source.code, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE},
  889. {name: '材料名称', value: source.name, minLen: 1, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true},
  890. {name: '规格型号', value: source.specs, maxLen: 255},
  891. {name: '计量单位', value: source.unit, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true},
  892. {name: '数量', value: exportKind === _config.EXPORT_KIND.Tender ? source.quantity : '0', type: _config.TYPE.DECIMAL},
  893. {name: '单价', value: source.marketPrice, type: _config.TYPE.DECIMAL},
  894. {name: '合价', value: exportKind === _config.EXPORT_KIND.Tender ? source.totalPrice : '0', type: _config.TYPE.NUM2},
  895. {name: '产地', value: source.originPlace, maxLen: 255},
  896. {name: '厂家', value: source.vender, maxLen: 255},
  897. {name: '品牌', value: source.brand, maxLen: 255},
  898. {name: '质量等级', value: source.qualityGrace, maxLen: 255},
  899. {name: '备注', value: source.remark, maxLen: 255},
  900. ];
  901. XML_EXPORT_BASE.Element.call(this, '材料明细', attrs);
  902. }
  903. //清单综合单价计算程序定义
  904. function CalcProgram() {
  905. XML_EXPORT_BASE.Element.call(this, '清单综合单价计算程序', []);
  906. }
  907. //综合单价计算程序文件定义
  908. function CalcProgramFile(source) {
  909. let attrs = [
  910. {name: 'ID', value: source.ID, type: _config.TYPE.INT, required: true},
  911. {name: '名称', value: source.name, minLen: 1, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true}
  912. ];
  913. XML_EXPORT_BASE.Element.call(this, '综合单价计算程序文件', attrs);
  914. }
  915. //综合单价计算程序费用项定义
  916. function CalcProgramFeeItem(source) {
  917. let attrs = [
  918. {name: '序号', value: source.serialNo, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE},
  919. {name: '行代号', value: source.rowCode, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true},
  920. {name: '项目名称', value: source.name, minLen: 1, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true},
  921. {name: '计算基础表达式', value: source.calcBase, maxLen: 255, required: true},
  922. {name: '计算基础说明', value: source.statement, maxLen: 255},
  923. {name: '费率', value: source.feeRate, type: _config.TYPE.DECIMAL},
  924. {name: '费用类别', value: source.feeType, type: _config.TYPE.INT, required: true},
  925. {name: '备注', value: source.remark, maxLen: 255},
  926. ];
  927. XML_EXPORT_BASE.Element.call(this, '综合单价计算程序费用项', attrs);
  928. }
  929. //主要清单汇总定义
  930. function MainBillsSummary() {
  931. XML_EXPORT_BASE.Element.call(this, '主要清单汇总', []);
  932. }
  933. //主要清单明细定义
  934. function MainBillsItem(source) {
  935. let attrs = [
  936. {name: '项目编码', value: source.code, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true},
  937. {name: '项目名称', value: source.name, minLen: 1, maxLen: 500, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true},
  938. {name: '单位', value: source.unit, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true},
  939. {name: '工程量', value: source.quantity, type: _config.TYPE.DECIMAL, required: true},
  940. {name: '综合单价', value: _util.getFee(source.fees, 'common.unitFee'), type: _config.TYPE.DECIMAL, required: true},
  941. {name: '综合合价', value: _util.getFee(source.fees, 'common.totalFee'), type: _config.TYPE.NUM2, required: true},
  942. {name: '其中暂估价', value: _util.getFee(source.fees, 'estimate.totalFee'), type: _config.TYPE.DECIMAL},
  943. {name: '备注', value: source.remark, maxLen: 255},
  944. ];
  945. XML_EXPORT_BASE.Element.call(this, '主要清单明细', attrs);
  946. }
  947. //评审材料汇总定义
  948. function AppraisalSummary(){
  949. XML_EXPORT_BASE.Element.call(this, '评审材料汇总', []);
  950. }
  951. //评审材料明细定义
  952. function AppraisalDetail(source) {
  953. let attrs = [
  954. {name: '代码', value: source.code, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true},
  955. {name: '名称', value: source.name, minLen: 1, maxLen: 255, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true},
  956. {name: '规格', value: source.specs, maxLen: 255},
  957. {name: '单位', value: source.unit, minLen: 1, maxLen: 20, whiteSpace: _config.WHITE_SPACE.COLLAPSE, required: true},
  958. {name: '市场价', value: source.marketPrice, type: _config.TYPE.DECIMAL, required: true}
  959. ];
  960. XML_EXPORT_BASE.Element.call(this, '评审材料明细', attrs);
  961. }
  962. //目前的数据
  963. let curProjectEle = null, //建设项目节点
  964. curTenderEle = null; //单位工程节点
  965. // 获取需要导出的项目数据
  966. //@param {Number}tenderID(当前界面的单位工程ID,后台根据这个单位工程,去找其建设项目下所有数据)
  967. //@return {Object}(eleObj)
  968. async function loadProject(projectData) {
  969. // 标记自检提示的开始(一次性多出多个文件类型,会导出多次)
  970. _failList.push(_config.HINT_START);
  971. console.log(projectData);
  972. //标段
  973. let project = new Project({
  974. basicInformation: projectData.property.basicInformation,
  975. name: projectData.name,
  976. fileKind: FILE_KIND_TEXT[exportKind],
  977. taxType: projectData.property.taxType ? _config.TAX_TYPE[projectData.property.taxType] : ''
  978. });
  979. curProjectEle = project;
  980. //项目信息
  981. let projectInfo = new ProjectInfo({basicInformation: projectData.property.basicInformation});
  982. project.children.push(projectInfo);
  983. //招标信息
  984. let biddingInfo = new BiddingInfo({basicInformation: projectData.property.basicInformation, summaryInfo: projectData.summaryInfo[projectData.ID]});
  985. projectInfo.children.push(biddingInfo);
  986. //投标信息 导出类型为投标时,才导出
  987. if (exportKind === _config.EXPORT_KIND.Tender) {
  988. let bidInfo = new BidInfo({basicInformation: projectData.property.basicInformation, summaryInfo: projectData.summaryInfo[projectData.ID]});
  989. projectInfo.children.push(bidInfo);
  990. }
  991. //编制说明
  992. let compilationIll = new CompilationIllustration({compilationIllustration: projectData.property.compilationIllustration});
  993. project.children.push(compilationIll);
  994. //系统信息
  995. let generatedTime = moment(Date.now()).format('YYYY-MM-DDTHH:mm:ss'),
  996. sysInfoSource = {softInfo: projectData.softInfo, generatedTime},
  997. sysInfo = new SystemInfo(sysInfoSource);
  998. project.children.push(sysInfo);
  999. //费用构成
  1000. let feeForm = new FeeFrom(projectData.summaryInfo[projectData.ID]);
  1001. project.children.push(feeForm);
  1002. //主要清单汇总 主要清单明细在loadTender中设置
  1003. let mainBillsSummaryEle = new MainBillsSummary();
  1004. project.children.unshift(mainBillsSummaryEle); //必须要排在loadTender前,这样才能添加到明细数据
  1005. //评审材料汇总 评审材料明细在loadTender中设置
  1006. let appraisalSummary = new AppraisalSummary();
  1007. project.children.unshift(appraisalSummary);
  1008. //单项工程
  1009. for (let eng of projectData.children) {
  1010. let engElement = await loadEngineering(projectData.summaryInfo, eng);
  1011. project.children.push(engElement);
  1012. }
  1013. //主要清单汇总、评审材料汇总 排在后面
  1014. project.children = [...project.children.slice(2), mainBillsSummaryEle, appraisalSummary];
  1015. return [{
  1016. data: project,
  1017. exportKind: exportKind,
  1018. fileName: `重庆标准交换数据(${FILE_KIND_TEXT[exportKind]}).QTF`
  1019. }];
  1020. }
  1021. //单位工程内的人材机ID: 用于代码映射关系 //单位工程级别,C+数组下标 <==> gljID
  1022. let tenderGljs = [];
  1023. //获取人材机代码,eg: C0, C1....
  1024. function getGljCode(gljID) {
  1025. let idx = tenderGljs.findIndex(ID => ID === gljID);
  1026. if (~idx) {
  1027. return `C${idx}`;
  1028. }
  1029. tenderGljs.push(gljID);
  1030. return `C${tenderGljs.length - 1}`;
  1031. }
  1032. /*
  1033. * 加载单项工程数据
  1034. * @param {Object}summaryInfo(项目汇总信息映射) {Object}engData(单项工程数据)
  1035. * */
  1036. async function loadEngineering(summaryInfo, engData) {
  1037. let source = {summaryInfo: summaryInfo[engData.ID], name: engData.name};
  1038. let engineering = new Engineering(source);
  1039. //费用构成
  1040. let feeForm = new FeeFrom(summaryInfo[engData.ID]);
  1041. engineering.children.push(feeForm);
  1042. //分批次获取单位工程
  1043. let tenderDetailMap = _cache.getItem('tenderDetailMap');
  1044. for (let tenderData of engData.children) {
  1045. //需要请求项目详细数据的时候,间隔一段时间再初始单位工程数据,减少服务器压力
  1046. if (!tenderDetailMap[tenderData.ID]) {
  1047. await _util.setTimeoutSync(() => {}, _config.TIMEOUT_TIME);
  1048. }
  1049. //方便用户看错误来自哪个单位工程
  1050. _failList.push(`<span style="font-weight: bold">单位工程“${tenderData.name}”下:</span>`);
  1051. let orgLen = _failList.length;
  1052. let tender = await loadTender(summaryInfo, tenderData);
  1053. if (_failList.length === orgLen) { //只有上方的提示,说明该单位工程没有报错
  1054. _failList.pop();
  1055. }
  1056. tenderGljs = []; //清空单位工程内所有的人材机(ID)
  1057. engineering.children.push(tender);
  1058. }
  1059. return engineering;
  1060. }
  1061. /*
  1062. * 加载单位工程数据
  1063. * @param {Object}summaryInfo(项目汇总信息映射) {Object}tenderData(单位工程数据)
  1064. * @return {Object}
  1065. * */
  1066. async function loadTender(summaryInfo, tenderData) {
  1067. //获取单位工程详细数据
  1068. let tenderDetail = await _util.getTenderDetail(tenderData.ID, userID);
  1069. //设置定额库编码
  1070. tenderDetail.rationLibMap = {};
  1071. let defaultLib = null;
  1072. if (tenderDetail.projectInfo.engineeringInfo && Array.isArray(tenderDetail.projectInfo.engineeringInfo.ration_lib)) {
  1073. defaultLib = tenderDetail.projectInfo.engineeringInfo.ration_lib.find(data => data.isDefault);
  1074. for (let lib of tenderDetail.projectInfo.engineeringInfo.ration_lib) {
  1075. tenderDetail.rationLibMap[lib.id] = lib;
  1076. }
  1077. }
  1078. //初始化项目人材机代号(人材机生成的代号要由排序后的项目人材机从C0开始生成),定额下的人材机含量提前使用到了这个代码,所以需要先初始化
  1079. let allGljs = gljUtil.sortRationGLJ(tenderDetail.projectGLJ.datas.gljList); //人材机汇总排序
  1080. tenderGljs = allGljs.map(glj => glj.id);
  1081. //单位工程
  1082. let tenderSource = {
  1083. name: tenderData.name,
  1084. engineeringName: tenderData.property.engineeringName,
  1085. summaryInfo: summaryInfo[tenderData.ID],
  1086. defaultRationLibCode: defaultLib.libCode,
  1087. taxType: tenderData.property.taxType
  1088. };
  1089. let tender = curTenderEle = new Tender(tenderSource);
  1090. //工程特征
  1091. let featureObj = _util.arrayToObj(tenderData.property.projectFeature);
  1092. let engFeature = new EngFeature({feature:featureObj, basicInformation: tenderDetail.projectInfo.property.basicInformation});
  1093. tender.children.push(engFeature);
  1094. //特征项:每一项工程特征
  1095. for (let data of tenderData.property.projectFeature) {
  1096. let featureItem = new FeatureItem(data);
  1097. engFeature.children.push(featureItem);
  1098. }
  1099. //工程信息 : 筛选设置了编码的基本信息数据
  1100. let constructInfo = new XML_EXPORT_BASE.Element('工程信息', []);
  1101. tenderDetail.projectInfo.property.basicInformation.forEach(pItem => {
  1102. pItem.items.forEach(info => {
  1103. if (info.code) {
  1104. constructInfo.children.push(new InfoItem(info));
  1105. }
  1106. });
  1107. });
  1108. if (constructInfo.children.length) {
  1109. tender.children.push(constructInfo)
  1110. }
  1111. //单位工程费汇总
  1112. tender.children.push(loadDXFY(tenderDetail));
  1113. //分部分项清单
  1114. tender.children.push(loadFBFX(tenderDetail));
  1115. //措施项目清单
  1116. tender.children.push(loadCSXM(tenderDetail));
  1117. //其他项目清单
  1118. let other = loadOtherBills(tenderDetail);
  1119. if (other) {
  1120. tender.children.push(other);
  1121. }
  1122. //规费和税金清单
  1123. let chargeTax = loadChargeTax(tenderDetail);
  1124. tender.children.push(chargeTax);
  1125. //建设项目下评审材料汇总设置评审材料明细
  1126. let curAppraisalSummary = curProjectEle.children.find(ele => ele.name === '评审材料汇总');
  1127. //人材机汇总相关
  1128. let gljSumarryInfo = loadGlj(curAppraisalSummary, tenderDetail);
  1129. if (gljSumarryInfo) {
  1130. //投标导出承包人材料相关
  1131. if (exportKind === _config.EXPORT_KIND.Tender) {
  1132. let adjustType = tenderData.property.gljAdjustType || _config.ADJUST_TYPE.info;
  1133. //承包人材料差额法表
  1134. let diffGljs = materialAdjustObj.getPirceInfoDatas(tenderDetail.projectGLJ.datas.gljList);
  1135. if (diffGljs.length) {
  1136. let diffP = new DifferentiaGlj();
  1137. diffGljs.forEach(data => diffP.children.push(new DifferentiaGljDetail(adjustType, data)));
  1138. tender.children.push(diffP);
  1139. }
  1140. //承包人材料指数法表
  1141. let engineeringCostNode = tenderDetail.Bills.tree.roots.find(node => node.getFlag() === fixedFlag.ENGINEERINGCOST);
  1142. if (engineeringCostNode) {
  1143. let ecTotalFee = _util.getFee(engineeringCostNode.data.fees, 'common.totalFee');
  1144. let exponentialGljs = materialAdjustObj.getPriceCoeDatas(tenderDetail.projectGLJ.datas.gljList, ecTotalFee);
  1145. if (exponentialGljs.length) {
  1146. // 变值权重B累加
  1147. let totalVarWeight = exponentialGljs.reduce((acc, cur) => acc += cur.varWeight || 0, 0);
  1148. // 如果采用指数法,定值权重A = 1 - 变值权重B累加。如果不是指数法,取1
  1149. let fixedWeight = adjustType === _config.ADJUST_TYPE.coe ? 1 - totalVarWeight : '1';
  1150. let exP = new ExponentialGlj(fixedWeight);
  1151. exponentialGljs.forEach(data => {
  1152. exP.children.push(new ExponentialGljDetail(adjustType, data));
  1153. });
  1154. tender.children.push(exP);
  1155. }
  1156. }
  1157. }
  1158. let {gljSummary, evalBidMaterial, evalEstimateMaterial} = gljSumarryInfo;
  1159. //投标导出人材机汇总
  1160. if (exportKind === _config.EXPORT_KIND.Tender) {
  1161. tender.children.push(gljSummary);
  1162. }
  1163. //评标材料表
  1164. if (evalBidMaterial && evalBidMaterial.children.length) {
  1165. tender.children.push(evalBidMaterial);
  1166. }
  1167. //暂估价材料表
  1168. if (evalEstimateMaterial && evalEstimateMaterial.children.length) {
  1169. tender.children.push(evalEstimateMaterial);
  1170. }
  1171. }
  1172. // 清单综合单价计算程序
  1173. let calcProgram = loadCalcProgram(tenderDetail);
  1174. if (calcProgram) {
  1175. tender.children.push(calcProgram);
  1176. }
  1177. //给建设项目下主要清单汇总设置主要清单明细
  1178. let curMainBillsSummary = curProjectEle.children.find(ele => ele.name === '主要清单汇总');
  1179. if (curMainBillsSummary) {
  1180. loadMainBillsItems(curMainBillsSummary, tenderDetail);
  1181. }
  1182. return tender;
  1183. }
  1184. /*
  1185. * 加载计算程序费用行
  1186. * @param {Object}detail(单位工程的详细数据,清单定额等等)
  1187. * @return {Object}
  1188. * */
  1189. function loadDXFY(detail) {
  1190. //单位工程费汇总
  1191. let tenderFeeSummary = new TenderFeeSummary();
  1192. //计价程序费用行,筛选大项费用
  1193. let feeNodes = detail.Bills.tree.roots;
  1194. for (let node of feeNodes) {
  1195. let mainTreeNode = detail.mainTree.getNodeByID(node.data.ID),
  1196. serialNo = mainTreeNode ? mainTreeNode.serialNo() + 1 : 1;
  1197. let flag = node.getFlag() || 0;
  1198. let source = {
  1199. row: serialNo,
  1200. code: node.data.code,
  1201. rowCode: `F${serialNo}`,
  1202. name: node.data.name,
  1203. calcBase: _util.transformCalcBase(exportKind, detail, node, {CalcBaseMap, FlagCalcBaseMap}),
  1204. feeRate: _util.hasValue(node.data.feeRate) ? node.data.feeRate : 100,
  1205. fees: node.data.fees,
  1206. feeType: FEE_TYPE[flag] || FEE_TYPE['0'],
  1207. remark: node.data.remark
  1208. };
  1209. source.calcBaseState = _util.transformCalcBaseState(detail, source.calcBase, CalcStateMap);
  1210. let feeRow = new FeeRow(source);
  1211. tenderFeeSummary.children.push(feeRow);
  1212. }
  1213. return tenderFeeSummary;
  1214. }
  1215. /*
  1216. * 加载清单项目
  1217. * @param {Object}node(清单树节点) {Object}detail
  1218. * */
  1219. function loadBills(node, detail) {// allRation, allRationGlj, decimal,
  1220. let allRation = detail.Ration.datas,
  1221. allRationGlj = detail.ration_glj.datas,
  1222. decimal = detail.projectInfo.property.decimal;
  1223. // 处理最高限价,输出最高限价时,若最高限价为空,则取综合单价,否则取最高限价
  1224. let maxPrice = 0;
  1225. if (exportKind === _config.EXPORT_KIND.Control && node.data.outPutMaxPrice) {
  1226. maxPrice = _util.isDef(node.data.maxPrice)
  1227. ? node.data.maxPrice
  1228. : _util.getFee(node.data.fees, 'common.unitFee')
  1229. }
  1230. let source = {
  1231. row: detail.mainTree.nodes[detail.mainTree.prefix + node.data.ID].serialNo() + 1,
  1232. code: node.data.code,
  1233. name: node.data.name,
  1234. unit: node.data.unit,
  1235. quantity: node.data.quantity,
  1236. fees: node.data.fees,
  1237. mainBills: node.data.mainBills,
  1238. maxPrice: maxPrice,
  1239. isEstimate: node.data.isEstimate,
  1240. remark: node.data.remark
  1241. };
  1242. let bills = new FXbills(source);
  1243. //清单项目项目编码要在建设项目中唯一
  1244. _util.checkUnique(curProjectEle.constraints.billsCode, source.code, `第${source.row}行`,`清单项目编码${source.code}`);
  1245. //加载特征及内容
  1246. function loadFeatureContent() {
  1247. let job = [],
  1248. feature = [];
  1249. let jobText = node.data.jobContentText || '';
  1250. let featureText = node.data.itemCharacterText || '';
  1251. let jobSplit = jobText.split(/[\r,\n]/g),
  1252. featureSplit = featureText.split(/[\r,\n]/g);
  1253. //将特征和内容分类,通过[项目特征][工作内容]区分。若没有,则不区分:工作内容列全部数据为工作内容,项目特征列全部数据为项目特征
  1254. //@param {Array}data(splitdata) {String}field(job、feature)
  1255. function classifyData(data, field) {
  1256. let rst = {
  1257. job: [],
  1258. feature: []
  1259. };
  1260. let featureIndex = data.findIndex(x => x === '[项目特征]');
  1261. if (featureIndex < 0) {
  1262. rst[field] = data;
  1263. return rst;
  1264. }
  1265. let jobIndex = data.findIndex(x => x === '[工作内容]');
  1266. if (jobIndex < 0) { //有[项目特征],没有[工作内容],则其数据全为项目特征数据
  1267. rst.feature = data;
  1268. return rst;
  1269. }
  1270. //有[项目特征],有[工作内容],进行数据分类
  1271. rst.feature = data.slice(featureIndex, jobIndex);
  1272. rst.job = data.slice(jobIndex);
  1273. return rst;
  1274. }
  1275. let classifiedJob = classifyData(jobSplit, 'job');
  1276. job = job.concat(classifiedJob.job);
  1277. feature = feature.concat(classifiedJob.feature);
  1278. let classifiedFeature = classifyData(featureSplit, 'feature');
  1279. job = job.concat(classifiedFeature.job);
  1280. feature = feature.concat(classifiedFeature.feature);
  1281. job = job.filter(x => x && !['[项目特征]', '[工作内容]'].includes(x));
  1282. feature = feature.filter(x => x && !['[项目特征]', '[工作内容]'].includes(x));
  1283. //创建项目特征节点
  1284. if (feature.length > 0) {
  1285. let itemChac = new ItemCharacter();
  1286. let reg = /(.{0,}):(.{0,})/;
  1287. for (let f of feature) {
  1288. let source = {name: '', value: ''};
  1289. let execRst = reg.exec(f);
  1290. if (execRst) {
  1291. source.name = execRst[1].replace(/^\d+\.{1}/, '').trim(); //去除开头(1.)序号,首位空格
  1292. source.value = execRst[2].trim();
  1293. }
  1294. let featureEle = new Feature(source);
  1295. //let featureEle = new Feature({name: f.trim(), value: ''});
  1296. itemChac.children.push(featureEle);
  1297. }
  1298. bills.children.push(itemChac);
  1299. }
  1300. //创建工作内容节点
  1301. if (job.length > 0) {
  1302. let jobContent = new JobContent();
  1303. for (let j of job) {
  1304. let data = j.replace(/^\d+\.{1}/, '').trim();
  1305. let content = new Content(data);
  1306. //let content = new Content(j.trim());
  1307. jobContent.children.push(content);
  1308. }
  1309. bills.children.push(jobContent);
  1310. }
  1311. }
  1312. loadFeatureContent();
  1313. //解析工程量计算式
  1314. function parseQuantityExp(rationData) {
  1315. if (rationData.quantityEXP === 'QDL') { //取清单工程量
  1316. return node.data.quantity;
  1317. } else if (rationData.quantityEXP === 'GCLMXHJ') { //从明细汇总成数值
  1318. let referDetail = detail.quantity_detail.datas.filter(data => data.rationID === rationData.ID && data.isSummation);
  1319. if (referDetail.length === 0) {
  1320. return '';
  1321. }
  1322. let rst = 0;
  1323. for (let d of referDetail) {
  1324. rst = scMathUtil.roundForObj(rst + d.result, detail.projectInfo.property.decimal.process);
  1325. }
  1326. return scMathUtil.roundForObj(rst, detail.projectInfo.property.decimal.ration.quantity);
  1327. } else {
  1328. return rationData.quantityEXP;
  1329. }
  1330. }
  1331. /*
  1332. * 加载定额子目
  1333. * @param {Array}rationData(清单项目下定额数据) {Array}rationGljData(定额的人材机数据) {Object}decimal(项目小数位数)
  1334. * @return {Object}
  1335. * */
  1336. function loadRation(rationData, rationGljData) {
  1337. let viewCode = rationData.code;
  1338. if (rationData.prefix) {
  1339. viewCode = rationData.prefix + viewCode;
  1340. }
  1341. if (rationData.adjustState) {
  1342. viewCode += '换';
  1343. }
  1344. //子目类型 补充定额为“1”,标准定额无换算为“0”,标准定额有换算为“2”,安装费用,即自动生成的安装子目,为“3”,子目级人材机,即量价、与定额同级的人材机 其他待完善……
  1345. let subType;
  1346. if (rationData.type === rationType.ration && rationData.from === 'cpt') {
  1347. subType = '1';
  1348. } else if (rationData.type === rationType.ration && !rationData.adjustState) {
  1349. subType = '0';
  1350. } else if (rationData.type === rationType.ration && rationData.adjustState) {
  1351. subType = '2';
  1352. } else if (rationData.type === rationType.install) {
  1353. subType = '3';
  1354. } else if (rationData.type === rationType.volumePrice) {
  1355. subType = '6';
  1356. }
  1357. let rNode = detail.mainTree.nodes[detail.mainTree.prefix + rationData.ID];
  1358. let rationSource = {
  1359. row: rNode ? rNode.serialNo() + 1 : -1,
  1360. viewCode: viewCode,
  1361. name: rationData.name,
  1362. unit: rationData.unit,
  1363. libCode: '',
  1364. code: rationData.code,
  1365. subType: subType,
  1366. quantity: rationData.quantity,
  1367. quantityEXP: parseQuantityExp(rationData),
  1368. fees: rationData.fees,
  1369. isSubcontract: rationData.isSubcontract,
  1370. programID: rationData.programID,
  1371. remark: rationData.remark
  1372. };
  1373. if (rationData.from === 'std' && _util.isDef(rationData.libID)) { //来自标准库,设置定额库编码
  1374. rationSource.libCode = detail.rationLibMap[rationData.libID].libCode;
  1375. }
  1376. let ration = new Ration(rationSource);
  1377. //创建工料分析
  1378. let gljAnalyze = new GljAnalyze();
  1379. ration.children.push(gljAnalyze);
  1380. //定额人材机排序
  1381. rationGljData = gljUtil.sortRationGLJ(rationGljData);
  1382. for (let rGlj of rationGljData) {
  1383. if (skipGLJTypes.includes(rGlj.type)) {
  1384. continue;
  1385. }
  1386. let gljSource = {
  1387. //code: rGlj.code,
  1388. code: getGljCode(rGlj.projectGLJID),
  1389. quantity: rGlj.quantity,
  1390. totalQuantity: gljUtil.getTotalQuantity(rGlj, rationData, decimal.glj.quantity, decimal.ration.quantity)
  1391. };
  1392. let gljContent = new GljContent(gljSource);
  1393. gljAnalyze.children.push(gljContent);
  1394. }
  1395. //创建费用组成
  1396. let feeContent = new FeeContent({fees: rationData.fees});
  1397. ration.children.push(feeContent);
  1398. return ration;
  1399. }
  1400. //投标加载组价内容、费用组成
  1401. if (exportKind === _config.EXPORT_KIND.Tender) {
  1402. let rationData = allRation.filter(x => x.billsItemID === node.data.ID);
  1403. if (rationData.length > 0) {
  1404. let priceContent = new PriceContent();
  1405. bills.children.push(priceContent);
  1406. //加载定额子目
  1407. rationData.sort((x, y) => x.serialNo - y.serialNo); //定额排序
  1408. for (let rData of rationData) {
  1409. let rationGlj = allRationGlj.filter(x => x.rationID === rData.ID);
  1410. priceContent.children.push(loadRation(rData, rationGlj));
  1411. }
  1412. }
  1413. //清单费用组成
  1414. let feeContent = new FeeContent({fees: node.data.fees});
  1415. bills.children.push(feeContent);
  1416. }
  1417. return bills;
  1418. }
  1419. /*
  1420. * 加载分部分项清单
  1421. * @param {Object}detail
  1422. * @return {Object || NULL}
  1423. * */
  1424. function loadFBFX(detail) {
  1425. let fbfxBills = new FBFXBills();
  1426. let subEngNode = detail.Bills.tree.roots.find((node) => node.getFlag() === fixedFlag.SUB_ENGINERRING);
  1427. if (!subEngNode) {
  1428. _failList.push('不存在分部分项清单');
  1429. return fbfxBills;
  1430. }
  1431. //是否有清单分类,分部分项下,清单分类和清单项目不可同层存在,如果有了清单分类,则提示其他清单项目:
  1432. //清单xx行应是清单分类,其下必须有清单项目
  1433. let hasBillsClass = subEngNode.children && subEngNode.children.some(node => node.children && node.children.length);
  1434. for (let node of subEngNode.children) {
  1435. if (node.data.type === billType.FB) {
  1436. //创建清单分部节点
  1437. let fbSource = {
  1438. row: detail.mainTree.nodes[detail.mainTree.prefix + node.data.ID].serialNo() + 1,
  1439. code: node.data.code,
  1440. name: node.data.name,
  1441. fees: node.data.fees,
  1442. remark: node.data.remark
  1443. };
  1444. if (node.children.length === 0) {
  1445. _failList.push(`第${fbSource.row}行清单分部下至少要有一条清单项目。`);
  1446. }
  1447. let fbBills = new FBBills(fbSource);
  1448. fbfxBills.children.push(fbBills);
  1449. //创建清单项目节点
  1450. for (let subNode of node.children) {
  1451. //detail.mainTree.nodes[detail.mainTree.prefix + node.data.ID].serialNo() + 1,
  1452. let fx = loadBills(subNode, detail);
  1453. fbBills.children.push(fx);
  1454. }
  1455. } else {
  1456. //第一层有了分部,不能有分项
  1457. if (hasBillsClass) {
  1458. let row = detail.mainTree.nodes[detail.mainTree.prefix + node.data.ID].serialNo() + 1;
  1459. _failList.push(`第${row}行清单应是清单分部,其下必须有清单项目。<span style="color: red">(错误清单结构)</span>`);
  1460. }
  1461. let fxBills = loadBills(node, detail);
  1462. fbfxBills.children.push(fxBills);
  1463. }
  1464. }
  1465. return fbfxBills;
  1466. }
  1467. /*
  1468. * 加载措施项目清单
  1469. * @param {Object}detail
  1470. * @return {Object}
  1471. * */
  1472. function loadCSXM(detail) {
  1473. let measureNode = detail.Bills.tree.roots.find((node) => node.getFlag() === fixedFlag.MEASURE);
  1474. if (!measureNode) {
  1475. _failList.push('不存在措施项目清单');
  1476. return new XML_EXPORT_BASE.Element('措施项目清单', []);
  1477. }
  1478. let csxmBills = new CSXMBills({fees: measureNode.data.fees});
  1479. //加载组织措施清单
  1480. let zzcsNode = detail.Bills.tree.items.find(node => node.getFlag() === fixedFlag.CONSTRUCTION_ORGANIZATION);
  1481. if (zzcsNode) {
  1482. let zzcsBills = new ZZCSBills({fees: zzcsNode.data.fees});
  1483. csxmBills.children.push(zzcsBills);
  1484. loadZZCS(zzcsBills, zzcsNode.children);
  1485. }
  1486. //加载技术措施清单
  1487. let jscsNode = detail.Bills.tree.items.find(node => node.getFlag() === fixedFlag.CONSTRUCTION_TECH);
  1488. let maxDepth = 2; //技术措施清单最多深度是2层:技术措施分类-清单项目
  1489. if (jscsNode) {
  1490. let jscsBills = new JSCSBills({fees: jscsNode.data.fees});
  1491. csxmBills.children.push(jscsBills);
  1492. let isValidDepth = _util.validDepth(maxDepth, jscsNode);
  1493. if (!isValidDepth) {
  1494. _failList.push('技术措施清单子项超过两层');
  1495. } else {
  1496. loadJSCS(jscsBills, jscsNode.children);
  1497. }
  1498. }
  1499. return csxmBills;
  1500. function loadZZCS(parent, nodes) {
  1501. let hasBillsClass = nodes && nodes.some(node => node.children && node.children.length);
  1502. //组织措施分类和公式计算措施项不能出现在同层中
  1503. for (let node of nodes) {
  1504. if (node.children.length > 0) { //组织措施分类
  1505. let classSource = {
  1506. row: detail.mainTree.nodes[detail.mainTree.prefix + node.data.ID].serialNo() + 1,
  1507. code: node.data.code,
  1508. name: node.data.name,
  1509. fees: node.data.fees,
  1510. remark: node.data.remark
  1511. };
  1512. let zzcsClass = new ZZCSClass(classSource);
  1513. parent.children.push(zzcsClass);
  1514. loadZZCS(zzcsClass, node.children);
  1515. } else { //公式计算措施项
  1516. let source = {
  1517. row: detail.mainTree.nodes[detail.mainTree.prefix + node.data.ID].serialNo() + 1,
  1518. code: node.data.code,
  1519. name: node.data.name,
  1520. calcBase: _util.transformCalcBase(exportKind, detail, node, {CalcBaseMap, FlagCalcBaseMap}),
  1521. feeRate: _util.hasValue(node.data.feeRate) ? node.data.feeRate : 100,
  1522. fees: node.data.fees,
  1523. remark: node.data.remark,
  1524. feeType: FEE_TYPE[node.getFlag()] || FEE_TYPE['0']
  1525. };
  1526. source.calcBaseState = _util.transformCalcBaseState(detail, source.calcBase, CalcStateMap);
  1527. if (hasBillsClass) {
  1528. _failList.push(`第${source.row}行清单应是组织措施分类,其下必须有公式计算措施项。<span style="color: red">(错误清单结构)</span>`);
  1529. }
  1530. let formula = new FormulaCalcMeasure(source);
  1531. _util.checkUnique(curTenderEle.constraints.formulaMeasureNo, source.code, `第${source.row}行`,`公式计算措施项编码${source.code}`);
  1532. parent.children.push(formula);
  1533. }
  1534. }
  1535. if (parent instanceof ZZCSClass) { //组织措施分类下的只能有一个组织措施分类
  1536. let filters = parent.children.filter(data => data instanceof ZZCSClass);
  1537. if (filters.length) {
  1538. _failList.push('组织措施分类下只能有一个组织措施分类');
  1539. }
  1540. }
  1541. }
  1542. function loadJSCS(parent, nodes) {
  1543. let hasBillsClass = nodes && nodes.some(node => node.children && node.children.length);
  1544. for (let node of nodes) {
  1545. if (node.children.length > 0) { //技术措施分类
  1546. let classSource = {
  1547. code: node.data.code,
  1548. name: node.data.name,
  1549. fees: node.data.fees
  1550. };
  1551. let jscsClass = new JSCSClass(classSource);
  1552. parent.children.push(jscsClass);
  1553. loadJSCS(jscsClass, node.children);
  1554. } else { //清单项目
  1555. if (hasBillsClass) {
  1556. let row = detail.mainTree.nodes[detail.mainTree.prefix + node.data.ID].serialNo() + 1;
  1557. _failList.push(`第${row}行清单应是清单分类,其下必须有清单项目。<span style="color: red">(错误清单结构)</span>`);
  1558. }
  1559. parent.children.push(loadBills(node, detail));
  1560. }
  1561. }
  1562. }
  1563. }
  1564. /*
  1565. * 加载其他项目清单,要出现此节点,需要遵循标准条件(至少含有一条相关明细)
  1566. * @param {Object}detail
  1567. * @return {Object || Null}
  1568. * */
  1569. function loadOtherBills(detail) {
  1570. //其他项目清单元素
  1571. let otherEle = new OtherBills();
  1572. let otherNode = detail.Bills.tree.roots.find(node => node.getFlag() === fixedFlag.OTHER);
  1573. if (otherNode.children.length === 0) {
  1574. return otherEle;
  1575. }
  1576. //添加暂列金额元素
  1577. let provisionalNode = detail.Bills.tree.items.find(node => node.getFlag() === fixedFlag.PROVISIONAL);
  1578. if (provisionalNode && provisionalNode.children.length > 0) {
  1579. otherEle.children.push(loadProvisional(provisionalNode));
  1580. }
  1581. //添加专业工程暂估价元素
  1582. let engEstimateNode = detail.Bills.tree.items.find(node => node.getFlag() === fixedFlag.ENGINEERING_ESITIMATE);
  1583. if (engEstimateNode && engEstimateNode.children.length > 0) {
  1584. otherEle.children.push(loadEngEstimate(engEstimateNode));
  1585. }
  1586. //添加计日工元素
  1587. let dayWorkNode = detail.Bills.tree.items.find(node => node.getFlag() === fixedFlag.DAYWORK);
  1588. let dayWorkEle = new DayWork({fees: dayWorkNode.data.fees});
  1589. if (dayWorkNode && dayWorkNode.children.length > 0) {
  1590. //要显示计日工元素,人工、材料、施工机械,最少有一条含有子项(计日工项目)
  1591. let filterNodes = dayWorkNode.children.filter(node => [fixedFlag.LABOUR, fixedFlag.MATERIAL, fixedFlag.MACHINE].includes(node.getFlag()));
  1592. for (let fNode of filterNodes) {
  1593. let ele,
  1594. constraints;
  1595. let flag = fNode.getFlag();
  1596. if (flag === fixedFlag.LABOUR) {
  1597. ele = new Labour();
  1598. constraints = curTenderEle.constraints.labourDayWorkCode;
  1599. } else if (flag === fixedFlag.MATERIAL) {
  1600. ele = new Material();
  1601. constraints = curTenderEle.constraints.materialDayWorkCode;
  1602. } else if (flag === fixedFlag.MACHINE) {
  1603. ele = new Machine();
  1604. constraints = curTenderEle.constraints.machineDayWorkCode;
  1605. }
  1606. if (fNode.children.length > 0) {
  1607. let isValidDepth = _util.validDepth(1, fNode);
  1608. if (!isValidDepth) {
  1609. _failList.push(`计日工${ele.name}子项超过一层`);
  1610. } else {
  1611. for (let itemNode of fNode.children) {
  1612. ele.children.push(loadDayWorkItem(itemNode, constraints, `${ele.name}计日工项目编号`));
  1613. }
  1614. dayWorkEle.children.push(ele);
  1615. }
  1616. }
  1617. }
  1618. //如果计日工下有计日工项目,则显示计日工元素
  1619. if (dayWorkEle.children.length > 0) {
  1620. otherEle.children.push(dayWorkEle);
  1621. }
  1622. }
  1623. //添加总承包服务费元素
  1624. let tkcNode = detail.Bills.tree.items.find(node => node.getFlag() === fixedFlag.TURN_KEY_CONTRACT);
  1625. if (tkcNode && tkcNode.children.length > 0) { //必须要有子项才显示总承包服务费元素
  1626. let isValidDepth = _util.validDepth(2, tkcNode); //最多2层子项:总承包服务费分类-总承包服务费费用项
  1627. if (!isValidDepth) {
  1628. _failList.push('总承包服务费子项超过两层');
  1629. } else {
  1630. let tkcEle = new TurnKeyContract({fees: tkcNode.data.fees});
  1631. otherEle.children.push(tkcEle);
  1632. loadService(tkcEle, tkcNode.children);
  1633. }
  1634. }
  1635. //添加索赔计价汇总元素
  1636. let claimNode = detail.Bills.tree.items.find(node => node.getFlag() === fixedFlag.CLAIM);
  1637. if (claimNode && claimNode.children.length > 0) { //必须要有子项才能显示索赔计价汇总元素
  1638. let claimEle = new XML_EXPORT_BASE.Element('索赔计价汇总', [
  1639. {name: '金额', value: _util.getFee(claimNode.data.fees, 'common.totalFee')}]);
  1640. for (let n of claimNode.children) {
  1641. claimEle.children.push(new ClaimVisaFeeItem(n.data));
  1642. }
  1643. otherEle.children.push(claimEle);
  1644. }
  1645. //添加现场签证计价汇总元素
  1646. let visaNode = detail.Bills.tree.items.find(node => node.getFlag() === fixedFlag.VISA);
  1647. if (visaNode && visaNode.children.length > 0) { //必须要有子项才能显示现场签证计价汇总元素
  1648. let visaEle = new XML_EXPORT_BASE.Element('现场签证计价汇总', [
  1649. {name: '金额', value: _util.getFee(visaNode.data.fees, 'common.totalFee')}
  1650. ]);
  1651. for (let n of visaNode.children) {
  1652. visaEle.children.push(new ClaimVisaFeeItem(n.data));
  1653. }
  1654. otherEle.children.push(visaEle);
  1655. }
  1656. //添加其他元素
  1657. let posetriy = otherNode.getPosterity();
  1658. let subOtherEle = loadOthers(posetriy);
  1659. if (subOtherEle) {
  1660. otherEle.children.push(subOtherEle);
  1661. }
  1662. // 不需要有子节点,也可以输出显示
  1663. return otherEle;
  1664. //加载暂列金额
  1665. function loadProvisional(node) {
  1666. let provisionalEle = new Provisional({fees: node.data.fees});
  1667. //暂列金额最多只有一层子节点
  1668. let isValidDepth = _util.validDepth(1, node);
  1669. if (!isValidDepth) {
  1670. _failList.push('暂列金额子项超过一层');
  1671. } else { //加载暂列金额明细
  1672. for (let n of node.children) {
  1673. let pDetailSource = {
  1674. row: detail.mainTree.nodes[detail.mainTree.prefix + n.data.ID].serialNo() + 1,
  1675. code: n.data.code,
  1676. name: n.data.name,
  1677. unit: n.data.unit,
  1678. fees: n.data.fees,
  1679. remark: n.data.remark
  1680. },
  1681. pDetailEle = new ProvisionalDetail(pDetailSource);
  1682. //暂列金额明细编号在单位工程中唯一
  1683. _util.checkUnique(curTenderEle.constraints.provisionalDetailCode, pDetailSource.code,
  1684. `第${pDetailSource.row}行`, `暂列金额明细编码${pDetailSource.code}`);
  1685. provisionalEle.children.push(pDetailEle);
  1686. }
  1687. }
  1688. return provisionalEle;
  1689. }
  1690. //加载专业工程暂估价
  1691. function loadEngEstimate(node) {
  1692. let engEstimateEle = new EngEstimate({fees: node.data.fees});
  1693. //专业工程暂估价最多只有一层子节点
  1694. let isValidDepth = _util.validDepth(1, node);
  1695. if (!isValidDepth) {
  1696. _failList.push('专业工程暂估价子项超过一层');
  1697. } else { //加载专业工程暂估明细
  1698. for (let n of node.children) {
  1699. let eDetailSource = {
  1700. row: detail.mainTree.nodes[detail.mainTree.prefix + n.data.ID].serialNo() + 1,
  1701. code: n.data.code,
  1702. name: n.data.name,
  1703. engineeringContent: n.data.engineeringContent,
  1704. fees: n.data.fees,
  1705. remark: n.data.remark
  1706. },
  1707. eDetailEle = new EngEstimateDetail(eDetailSource);
  1708. //暂列金额明细编号在单位工程中唯一
  1709. _util.checkUnique(curTenderEle.constraints.engEstimateDetailCode, eDetailSource.code,
  1710. `第${eDetailSource.row}行`, `专业工程暂估明细编码${eDetailSource.code}`);
  1711. engEstimateEle.children.push(eDetailEle);
  1712. }
  1713. }
  1714. return engEstimateEle;
  1715. }
  1716. //加载计日工项目
  1717. function loadDayWorkItem(node, constraints, hint) {
  1718. let source = {
  1719. row: detail.mainTree.nodes[detail.mainTree.prefix + node.data.ID].serialNo() + 1,
  1720. code: node.data.code,
  1721. name: node.data.name,
  1722. unit: node.data.unit,
  1723. quantity: node.data.quantity,
  1724. fees: node.data.fees,
  1725. remark: node.data.remark
  1726. };
  1727. _util.checkUnique(constraints, source.code, `第${source.row}行`, `计日工项目编码${source.code}`);
  1728. return new DayWorkItem(source);
  1729. }
  1730. //加载服务费项
  1731. function loadService(parent, nodes) {
  1732. let hasBillsClass = nodes && nodes.some(node => node.children && node.children.length);
  1733. for (let node of nodes) {
  1734. if (node.children.length > 0) { //总承包服务费分类
  1735. let classSource = {
  1736. row: detail.mainTree.nodes[detail.mainTree.prefix + node.data.ID].serialNo() + 1,
  1737. code: node.data.code,
  1738. name: node.data.name,
  1739. remark: node.data.remark
  1740. };
  1741. let tkcClass = new TurnKeyContractClass(classSource);
  1742. parent.children.push(tkcClass);
  1743. loadService(tkcClass, node.children);
  1744. } else { //总承包服务费费用项
  1745. let source = {
  1746. row: detail.mainTree.nodes[detail.mainTree.prefix + node.data.ID].serialNo() + 1,
  1747. code: node.data.code,
  1748. name: node.data.name,
  1749. serviceContent: node.data.serviceContent,
  1750. calcBaseValue: node.data.calcBaseValue,
  1751. feeRate: _util.hasValue(node.data.feeRate) ? node.data.feeRate : 100,
  1752. fees: node.data.fees,
  1753. remark: node.data.remark
  1754. };
  1755. if (hasBillsClass) {
  1756. _failList.push(`第${source.row}行清单应是清单分类,其下必须有清单项目。<span style="color: red">(错误清单结构)</span>`);
  1757. }
  1758. _util.checkUnique(curTenderEle.constraints.turnKeyContractCode, source.code, `第${source.row}行`, `总承包服务费费用项编码${source.code}`);
  1759. parent.children.push(new TurnKeyContractItem(source));
  1760. }
  1761. }
  1762. }
  1763. //加载其他列项,不符合上述情况的,其他所有清单子项
  1764. function loadOthers(nodes) {
  1765. //排除项
  1766. let exclusionFlags = [
  1767. fixedFlag.PROVISIONAL,
  1768. fixedFlag.MATERIAL_PROVISIONAL, // 材料(工程设备)暂估价 不导出
  1769. fixedFlag.ENGINEERING_ESITIMATE,
  1770. fixedFlag.LABOUR,
  1771. fixedFlag.MATERIAL,
  1772. fixedFlag.MACHINE,
  1773. fixedFlag.TURN_KEY_CONTRACT,
  1774. fixedFlag.CLAIM,
  1775. fixedFlag.VISA
  1776. ];
  1777. //生成其他列项
  1778. let otherItems = [],
  1779. summaryFee = 0;
  1780. for (let node of nodes) {
  1781. let belongFlag = node.belongToFlag();
  1782. if (node.children.length > 0 || (belongFlag && exclusionFlags.includes(belongFlag))) {
  1783. continue;
  1784. }
  1785. //汇总其他列项金额
  1786. let totalFee = _util.getFee(node.data.fees, 'common.totalFee');
  1787. summaryFee = scMathUtil.roundForObj(summaryFee + totalFee, detail.projectInfo.property.decimal.bills.totalPrice);
  1788. let otherItemSource = {
  1789. row: detail.mainTree.nodes[detail.mainTree.prefix + node.data.ID].serialNo() + 1,
  1790. code: node.data.code,
  1791. name: node.data.name,
  1792. calcBase: _util.transformCalcBase(exportKind, detail, node, {CalcBaseMap, FlagCalcBaseMap}),
  1793. feeRate: _util.hasValue(node.data.feeRate) ? node.data.feeRate : 100,
  1794. commonTotalFee: totalFee,
  1795. notSummary: belongFlag && belongFlag === fixedFlag.MATERIAL_PROVISIONAL, //不计入合价,只有材料(工程设备)暂估价固定节点
  1796. remark: node.data.remark
  1797. };
  1798. let otherItemEle = new OtherItem(otherItemSource);
  1799. otherItems.push(otherItemEle);
  1800. _util.checkUnique(curTenderEle.constraints.otherItemNo, otherItemSource.code,
  1801. `第${otherItemSource.row}行`, `清单编码${otherItemSource.code}`);
  1802. }
  1803. let otherEle = new Other({commonTotalFee: summaryFee});
  1804. for (let ele of otherItems) {
  1805. otherEle.children.push(ele);
  1806. }
  1807. return otherEle.children.length > 0 ? otherEle : null; //有其他列项才能显示其他元素
  1808. }
  1809. }
  1810. /*
  1811. * 加载规费和税金清单,固定显示:规费、规费子项、税金、增值税、附加税、环境保护税这几个清单
  1812. * @param {Object}detail
  1813. * @return {Object}
  1814. * */
  1815. function loadChargeTax(detail) {
  1816. let chargeTaxEle = new ChargeTaxBills();
  1817. let filterFlags = [
  1818. fixedFlag.CHARGE,
  1819. fixedFlag.TAX,
  1820. fixedFlag.ADDED_VALUE_TAX,
  1821. fixedFlag.ADDITIONAL_TAX,
  1822. fixedFlag.ENVIRONMENTAL_PROTECTION_TAX
  1823. ];
  1824. let filterNodes = detail.Bills.tree.items.filter(node => filterFlags.includes(node.getFlag()));
  1825. // 规费子项
  1826. let chargeNode = filterNodes.find(node => node.getFlag() === fixedFlag.CHARGE);
  1827. if (chargeNode) {
  1828. filterNodes.splice(filterNodes.indexOf(chargeNode) + 1, 0, ...chargeNode.children);
  1829. }
  1830. for (let node of filterNodes) {
  1831. let mainTreeNode = detail.mainTree.getNodeByID(node.data.ID),
  1832. serialNo = mainTreeNode ? mainTreeNode.serialNo() + 1 : 1;
  1833. // 规费和规费子项费用类别相同
  1834. let feeType = node === chargeNode || node.parent === chargeNode
  1835. ? FEE_TYPE[chargeNode.getFlag()]
  1836. : FEE_TYPE[node.getFlag()] || FEE_TYPE['0'];
  1837. let source = {
  1838. row: detail.mainTree.nodes[detail.mainTree.prefix + node.data.ID].serialNo() + 1,
  1839. code: node.data.code,
  1840. rowCode: `F${serialNo}`,
  1841. name: node.data.name,
  1842. calcBase: _util.transformCalcBase(exportKind, detail, node, {CalcBaseMap, FlagCalcBaseMap}),
  1843. feeRate: _util.hasValue(node.data.feeRate) ? node.data.feeRate : 100,
  1844. fees: node.data.fees,
  1845. feeType: feeType,
  1846. remark: node.data.remark
  1847. };
  1848. source.calcBaseState = _util.transformCalcBaseState(detail, source.calcBase, CalcStateMap);
  1849. //序号唯一
  1850. _util.checkUnique(curTenderEle.constraints.feeItemNo, source.code,
  1851. `第${source.row}行`, `清单编码${source.code}`);
  1852. chargeTaxEle.children.push(new FeeItem(source));
  1853. }
  1854. return chargeTaxEle;
  1855. }
  1856. /*
  1857. * 加载主要清单明细
  1858. * @param {Obejct}parent(设置到的父项:主要清单汇总元素) {Object}detail
  1859. * @return {void}
  1860. * */
  1861. function loadMainBillsItems(parent, detail) {
  1862. let mainBills = detail.Bills.datas.filter(data => {
  1863. let billsNode = detail.Bills.tree.nodes[`${detail.Bills.tree.prefix}${data.ID}`];
  1864. return data.mainBills && billsNode && billsNode.children.length === 0;
  1865. });
  1866. for (let bills of mainBills) {
  1867. let source = {
  1868. code: bills.code,
  1869. name: bills.name,
  1870. unit: bills.unit,
  1871. quantity: bills.quantity,
  1872. fees: bills.fees,
  1873. remark: bills.remark
  1874. };
  1875. let mainBillsItemEle = new MainBillsItem(source);
  1876. //主要清单明细项目编码唯一
  1877. _util.checkUnique(curTenderEle.constraints.mainBillsCode, source.code, '主要清单明细项目编码');
  1878. parent.children.push(mainBillsItemEle);
  1879. }
  1880. }
  1881. /*
  1882. * 加载人材机汇总相关:人材机汇总、评标、暂估
  1883. * @param {Object}appraisalSummary(建设项目下的评审材料汇总) {Object}detail
  1884. * @return {Object}
  1885. * */
  1886. function loadGlj(appraisalSummary, detail) {
  1887. let gljList = detail.projectGLJ.datas.gljList;
  1888. let evalBidSeq = 1, //评标序号
  1889. evalEstSeq = 1; //暂估序号
  1890. if (gljList.length > 0) {
  1891. //创建人材机汇总节点
  1892. let gljSummary = new GljSummary();
  1893. //创建评标材料表节点
  1894. let evalBidMaterial = new EvalBidMaterial();
  1895. //创建暂估价材料表节点
  1896. let evalEstimateMaterial = new EvalEstimateMaterial();
  1897. //人材机节点
  1898. let allGljs = gljUtil.sortRationGLJ(gljList); //人材机汇总排序
  1899. //计算总消耗量
  1900. gljUtil.calcProjectGLJQuantity(detail.projectGLJ.datas,
  1901. detail.ration_glj.datas, detail.Ration.datas, detail.Bills.datas, detail.projectInfo.property.decimal.glj.quantity, _, scMathUtil);
  1902. //类型-配比类别映射
  1903. let ratioMapping = {
  1904. '202': '1', //为“混凝土”时,取“1”;
  1905. '205': '2', //为“商品混凝土”时,取“2”;
  1906. '203': '3', //为“砂浆”时,取“3”;
  1907. '206': '4', //为“商品砂浆”时,取“4”;
  1908. '204': '5' //为“配合比”时,取“5”
  1909. };
  1910. //三材类别-主要材料类别映射 三材类型:钢材1、钢筋2、木材3、水泥4、商品砼5、商品砂浆6
  1911. let mainMaterialMapping = {
  1912. '1': '100', //为“钢材”、“钢筋”时,取“100”;
  1913. '2': '100',
  1914. '4': '200', //为“水泥”时,取“200”;
  1915. '3': '300', //为“木材”时,取“300”;
  1916. '5': '400', //为“商品砼”、商品砂浆”时,取“400”。
  1917. '6': '400'
  1918. };
  1919. for (let glj of allGljs) {
  1920. // 企业管理费、利润、一般风险费不导出
  1921. if (skipGLJTypes.includes(glj.type)) {
  1922. continue;
  1923. }
  1924. // 总消耗量为0不导出
  1925. if (!+glj.quantity) {
  1926. continue;
  1927. }
  1928. let price = gljUtil.getGLJPrice(glj, detail.projectGLJ.datas,
  1929. detail.projectInfo.property.calcOptions, detail.labourCoe.datas, detail.projectInfo.property.decimal, false, _, scMathUtil);
  1930. //调整价
  1931. /*let adjPrice = gljUtil.getAdjustPrice(glj, detail.projectGLJ.datas,
  1932. detail.projectInfo.property.calcOptions, detail.labourCoe.datas, detail.projectInfo.property.decimal, false, _, scMathUtil);*/
  1933. let adjPrice = 0;
  1934. //获取人材机费用类别: 1=人工费 2=材料费 3=机械费 4=未计价费
  1935. let feeType = String(glj.type)[0];
  1936. if (feeType && !['1', '2', '3'].includes(feeType)) {
  1937. feeType = '4';
  1938. }
  1939. let gljSource = {
  1940. //code: glj.code,
  1941. code: getGljCode(glj.id),
  1942. name: glj.name,
  1943. specs: glj.specs,
  1944. unit: glj.unit,
  1945. orgCode: glj.code, //不取原始编码了,直接取编码
  1946. feeType: feeType,
  1947. ratioType: ratioMapping[glj.type],
  1948. mainMaterialType: mainMaterialMapping[glj.materialType],
  1949. materialCoe: glj.materialCoe,
  1950. supply: glj.supply === 2 ? 2 : 1, //供货方式为“完全甲供”,取“2”;否则取“1”。
  1951. is_evaluate: !!glj.is_evaluate,
  1952. no_tax_eqp: !!glj.no_tax_eqp,
  1953. notFromDetail: !glj.ratio_data.length, //单价不从明细汇总标志,如果有配比组成,取“false”;否则取“true”。
  1954. basePrice: price.basePrice,
  1955. adjPrice: adjPrice,
  1956. marketPrice: price.marketPrice,
  1957. quantity: glj.quantity,
  1958. originPlace: glj.originPlace,
  1959. vender: glj.vender,
  1960. qualityGrace: glj.qualityGrace,
  1961. brand: glj.brand,
  1962. remark: glj.remark
  1963. };
  1964. let gljEle = new Glj(gljSource);
  1965. //人材机代码唯一
  1966. _util.checkUnique(curTenderEle.constraints.gljCode, gljSource.code, '人材机代码', gljSource.orgCode);
  1967. //人材机配比
  1968. let connectKey = gljUtil.getIndex(glj, gljKeyArray),
  1969. ratioData = detail.projectGLJ.datas.mixRatioMap[connectKey];
  1970. if (ratioData && Array.isArray(ratioData)) {
  1971. for (let ratio of ratioData) {
  1972. let pGLJ = detail.projectGLJ.datas.gljList.find(d => d.original_code === ratio.code);
  1973. if (pGLJ) {
  1974. let gljRatio = new GljRatio({code: getGljCode(pGLJ.id), quantity: ratio.consumption});
  1975. gljEle.children.push(gljRatio);
  1976. }
  1977. }
  1978. }
  1979. gljSummary.children.push(gljEle);
  1980. gljSource.totalPrice = scMathUtil.roundForObj(gljSource.quantity * gljSource.marketPrice,
  1981. detail.projectInfo.property.decimal.bills.totalPrice);
  1982. //评标和暂估材料表下的材料明细中的人材机代码,要求单位工程内唯一,由于人材机汇总也有这个限制,所以这里不再处理
  1983. if (glj.is_eval_material) { //评标
  1984. gljSource.serialNo = evalBidSeq++;
  1985. evalBidMaterial.children.push(new MaterialDetail('evalBidMaterial', gljSource));
  1986. //给建设项目下的评审材料汇总设置明细数据,这里需要检测代码(编号)唯一性,因为是汇总所有单位工程的,要求所有单位工程内评审材料代码唯一
  1987. appraisalSummary.children.push(new AppraisalDetail(gljSource));
  1988. //_util.checkUnique(curTenderEle.constraints.appraisalDetailCode, gljSource.code, '评审材料明细代码', gljSource.orgCode);
  1989. _util.checkUnique(curTenderEle.constraints.detailCode, gljSource.code, '材料明细关联材料号', gljSource.orgCode);
  1990. }
  1991. if (glj.is_evaluate) { //暂估
  1992. gljSource.serialNo = evalEstSeq++;
  1993. evalEstimateMaterial.children.push(new MaterialDetail('evalEstimateMaterial', gljSource));
  1994. _util.checkUnique(curTenderEle.constraints.detailCode, gljSource.code, '材料明细关联材料号', gljSource.orgCode);
  1995. }
  1996. }
  1997. return {gljSummary, evalBidMaterial, evalEstimateMaterial};
  1998. }
  1999. }
  2000. /*
  2001. * 加载清单综合单价计算程序
  2002. * */
  2003. function loadCalcProgram(detail) {
  2004. let calcProgram = detail.calcProgram;
  2005. if (!calcProgram) {
  2006. return null;
  2007. }
  2008. let calcProramTemplates = calcProgram.templates;
  2009. if (!Array.isArray(calcProramTemplates) || calcProramTemplates.length === 0) {
  2010. return null;
  2011. }
  2012. //创建清单综合单价计算程序
  2013. let calcProgramEle = new CalcProgram();
  2014. //创建综合单价计算程序文件
  2015. for (let calcFile of calcProramTemplates) {
  2016. let calcFileEle = new CalcProgramFile({ID: calcFile.ID, name: calcFile.name});
  2017. //创建计算程序费用项
  2018. for (let calcItem of calcFile.calcItems) {
  2019. let idx = calcFile.calcItems.indexOf(calcItem);
  2020. //如果是有[]的基数则转换为其简称,如“[定额人工费]”对应的检查是"RGF"
  2021. let calcBase = calcItem.dispExpr.replace(/\[[\u4e00-\u9fa5]+\]/g, str => rationBaseShort[str] ? rationBaseShort[str] : '');
  2022. let feeType = calcProgram.feeTypes.find(data => data.type === calcItem.fieldName);
  2023. feeType = feeType ? feeType.code : '1800';
  2024. let source = {
  2025. serialNo: idx + 1,
  2026. rowCode: `F${idx + 1}`,
  2027. name: calcItem.name,
  2028. calcBase: calcBase,
  2029. statement: calcItem.statement,
  2030. feeRate: _util.hasValue(calcItem.feeRate) ? calcItem.feeRate : 100,
  2031. feeType: feeType,
  2032. remark: calcItem.memo
  2033. };
  2034. let calcItemEle = new CalcProgramFeeItem(source);
  2035. calcFileEle.children.push(calcItemEle);
  2036. }
  2037. if (calcFileEle.children.length > 0) { //计算程序文件必须有费用项
  2038. calcProgramEle.children.push(calcFileEle);
  2039. }
  2040. }
  2041. return calcProgramEle.children.length > 0 ? calcProgramEle : null;
  2042. }
  2043. // 返回提取的数据
  2044. return await loadProject(projectData);
  2045. }
  2046. /*
  2047. * 重置工程编号,因为每一个费用定额,导出的结构都不相同,重置工程编号的逻辑需要各自定义
  2048. * @param {Array}codes 工程编号
  2049. * {Array}extractData 提取的数据
  2050. * @return {void}
  2051. * */
  2052. function resetContentCode(codes, extractData) {
  2053. // 提取到的数据全是以建设项目为根元素的数据,每份数据都要重置编号
  2054. extractData.forEach(obj => {
  2055. let idx = 0;
  2056. // 从建设项目元素中筛选出单项工程元素
  2057. let engs = _util.getElementFromSrc(obj.data, '单项工程');
  2058. engs.forEach(eng => {
  2059. // 从属性中找到编号项
  2060. let codeItem = eng.attrs.find(attr => attr.name === '编号');
  2061. codeItem.value = codes[idx++];
  2062. // 从单项工程元素中筛选出单位工程元素
  2063. let tenders = _util.getElementFromSrc(eng, '单位工程');
  2064. tenders.forEach(tender => {
  2065. let codeItem = tender.attrs.find(attr => attr.name === '编号');
  2066. codeItem.value = codes[idx++];
  2067. });
  2068. });
  2069. });
  2070. }
  2071. /*
  2072. * 导出文件的结构逻辑,每个费用定额导出的最终文件结构要求可能不同,需要各自定义
  2073. * 重庆18费用定额,只有一个文件的时候直接导出qtf文件,文件数大于1时,导出zip压缩包
  2074. * @param {Array}fileData 文件数据
  2075. * @return {void}
  2076. * */
  2077. async function saveAsFile(fileData) {
  2078. if (fileData.length === 1) {
  2079. saveAs(fileData[0].blob, fileData[0].fileName);
  2080. } else if (fileData.length > 1) { //导出压缩包
  2081. let zip = new JSZip();
  2082. for (let file of fileData) {
  2083. zip.file(file.fileName, file.blob, {binary: true});
  2084. }
  2085. let zipFile = await zip.generateAsync({type: 'blob'});
  2086. saveAs(zipFile, '重庆标准交换数据.zip');
  2087. }
  2088. }
  2089. return {
  2090. entry,
  2091. resetContentCode,
  2092. saveAsFile
  2093. };
  2094. })();