shandong_common.js 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541
  1. // INTERFACE_EXPORT =,必须这么写,这样才能在导出时动态加载脚本后,覆盖前端代码
  2. // 参考广东中山导出接口
  3. INTERFACE_EXPORT = (() => {
  4. "use strict";
  5. const feeRateMap = {
  6. 冬季施工增加费: "DJSGZJFFL",
  7. 冬季施工: "DJSGZJFFL",
  8. 雨季施工增加费: "YUJSGZJFFL",
  9. 雨季施工: "YUJSGZJFFL",
  10. 夜间施工增加费: "YEJSGZJFFL",
  11. 夜间施工: "YEJSGZJFFL",
  12. 高原地区施工增加费: "GYDQSGZJFFL",
  13. 高原施工: "GYDQSGZJFFL",
  14. 风沙地区施工增加费: "FSDQSGZJFFL",
  15. 风沙施工: "FSDQSGZJFFL",
  16. 沿海地区施工增加费: "YHDQSGZJFFL",
  17. 沿海施工: "YHDQSGZJFFL",
  18. 行车干扰施工增加费: "XCGRGCSGZJFFL",
  19. 行车干扰: "XCGRGCSGZJFFL",
  20. 工地转移费: "GDZYFFL",
  21. '工地转移(km)': "GDZYFFL",
  22. 施工辅助费: "SGFZFFL",
  23. 施工辅助: "SGFZFFL",
  24. 基本费用: "JBFYFL",
  25. 主副食运费补贴: "ZFSYFBTFL",
  26. '综合里程(km)': "ZFSYFBTFL",
  27. 职工探亲路费: "ZGTQLFFL",
  28. 职工探亲: "ZGTQLFFL",
  29. 职工取暖补贴: "ZGQNBTFL",
  30. 职工取暖: "ZGQNBTFL",
  31. 财务费用: "CWFYFL",
  32. 养老保险费: "YANGLBXFFL",
  33. 失业保险费: "SYBXFFL",
  34. 医疗保险费: "YILBXFFL",
  35. 工伤保险费: "GSBXFL",
  36. 养老保险: "YANGLBXFFL",
  37. 失业保险: "SYBXFFL",
  38. 医疗保险: "YILBXFFL",
  39. 工伤保险: "GSBXFL",
  40. 住房公积金: "ZFGJJFL",
  41. 规费: "GFZHFL",
  42. 利润: "LRL",
  43. 税金: "SL",
  44. 土方: "TF",
  45. 石方: "SF",
  46. 运输: "YS",
  47. 路面: "LM",
  48. "路面(不计雨)": "LM",
  49. 隧道: "SD",
  50. 构造物I: "GZW1",
  51. "构造物I(不计冬)": "GZW1",
  52. "构造物I(不计雨)": "GZW1",
  53. 构造物II: "GZW2",
  54. "构造物III(桥梁)": "GZW3",
  55. "构造物III(除桥以外)": "GZW3",
  56. "构造物III(除桥以外不计雨夜)": "GZW3",
  57. 技术复杂大桥: "JSFZDQ",
  58. "钢材及钢结构(桥梁)": "GJG",
  59. "钢材及钢结构(除桥以外)": "GJG",
  60. "钢材及钢结构(除桥以外不计夜)": "GJG",
  61. };
  62. //计算程序有,这里没有:施工机械使用费\施工机械人工费\定额人工费\定额材料费\定额施工机械使用费
  63. const itemFeeMap = {
  64. 'marketLabour': 'RGF',
  65. 'marketMaterial': 'CLF',
  66. 'marketMachine':'JXSYF',
  67. 'marketEquipment': 'SBGZF',
  68. 'direct': 'DEZJF',
  69. 'equipment': 'DESBF',
  70. 'marketDirect': 'ZJF',
  71. 'measure': 'CSF',
  72. 'measure1': 'CSF1',
  73. 'measure2': 'CSF2',
  74. 'manage': 'QYGLF',
  75. 'force': 'GF',
  76. 'profit': 'LR',
  77. 'tax': 'SJ',
  78. 'common': 'JAF',
  79. 'rationCommon': 'DEJAF'
  80. };
  81. const feeLibNoMap = {
  82. 'eba0e7c0-cfe6-11ea-ba15-739be477d1fe': 'GYSFL-000000-2018-86',
  83. '451d3180-e02e-11ea-8056-1514dfc2f39e': 'GYSFL-340000-2019-210',
  84. '32923ff0-e912-11ea-8b20-d93bc370e960': 'GYSFL-440000-2019-544'
  85. };
  86. const FixedCostMap = {
  87. //折旧费、检修费、维护费、安拆辅助费
  88. '折旧费': 1,
  89. '检修费': 1,
  90. '维护费': 1,
  91. '安拆辅助费':1
  92. }
  93. const RoadGradeMap = {
  94. "高速公路": "0",
  95. "一级公路": "1",
  96. "二级公路": "2",
  97. "三级公路": "3",
  98. "四级公路": "4",
  99. "等外公路": "5",
  100. "独立桥梁": "6",
  101. "独立隧道": "7"
  102. }
  103. const sectionNameMap = {
  104. "清单 第100章 总则": true,
  105. "清单 第200章 路基": true,
  106. "清单 第300章 路面": true,
  107. "清单 第400章 桥梁、涵洞": true,
  108. "清单 第500章 隧道": true,
  109. "清单 第600章 安全设施及预埋管线": true,
  110. "清单 第700章 绿化及环境保护设施": true,
  111. // "清单 第800章 机电工程": true,
  112. // "清单 第900章 附属区房建工程":true
  113. }
  114. const ListCodeMap = {
  115. "第100章至700章清单":"1",
  116. "清单 第100章 总则": "一",
  117. "清单 第200章 路基": "二",
  118. "清单 第300章 路面": "三",
  119. "清单 第400章 桥梁、涵洞": "四",
  120. "清单 第500章 隧道": "五",
  121. "清单 第600章 安全设施及预埋管线": "六",
  122. "清单 第700章 绿化及环境保护设施": "七",
  123. // "清单 第800章 机电工程": "八",
  124. // "清单 第900章 附属区房建工程": "九",
  125. "已包含在清单合计中的材料、工程设备、专业工程暂估价合计": "10",
  126. "清单合计减去材料、工程设备、专业工程暂估价合计": "11",
  127. "计日工合计": "12",
  128. "劳务": "12.1",
  129. "材料": "12.2",
  130. "机械": "12.3",
  131. "暂列金额(不含计日工总额)": "13",
  132. "投标报价": "14"
  133. }
  134. const ratioCodeMap = {
  135. "01ZJF":"0",
  136. "02JXF":"1",
  137. "03WHF":"2",
  138. "04ACFZF":"3"
  139. }
  140. function getBasePrice(projectGLJID, tenderProject) {
  141. let glj = _.find(tenderProject.projectGLJ.datas.gljList, {
  142. id: projectGLJID
  143. })
  144. return glj ? gljUtil.getBasePrice(glj, null, null, null, decimalObj, false, _, scMathUtil) : 0;
  145. }
  146. function getFeeRate(programID, fieldName, tenderProject) {
  147. let rate = 0;
  148. let template = tenderProject.calcProgram.compiledTemplates;
  149. if (template[programID]) {
  150. let item = _.find(template[programID].calcItems, {
  151. fieldName: fieldName
  152. })
  153. if (item) rate = item.feeRate;
  154. }
  155. return rate
  156. }
  157. function billNameChecking(bNode,projectName,fixedFlag) {
  158. let data = bNode.data;
  159. let fail = null;
  160. let pass = true;
  161. if (data.flagsIndex && data.flagsIndex.fixed) {
  162. let flag = data.flagsIndex.fixed.flag;
  163. switch (flag) {
  164. case fixedFlag.ONE_SEVEN_BILLS:
  165. pass = data.name == "第100章至700章清单" || data.name == "第100章至700章清单合计";
  166. break;
  167. case fixedFlag.PROVISIONAL_TOTAL:
  168. pass = data.name == "已包含在清单合计中的材料、工程设备、专业工程暂估价合计";
  169. break;
  170. case fixedFlag.BILLS_TOTAL_WT_PROV:
  171. pass = data.name == "清单合计减去材料、工程设备、专业工程暂估价合计";
  172. break;
  173. case fixedFlag.DAYWORK_LABOR:
  174. pass = data.name == "计日工合计";
  175. break;
  176. /* case fixedFlag.LABOUR_SERVICE:
  177. pass = data.name == "劳务";
  178. break;
  179. case fixedFlag.MATERIAL:
  180. pass = data.name == "材料";
  181. break;
  182. case fixedFlag.CONSTRUCTION_MACHINE:
  183. pass = data.name == "机械";
  184. break; */
  185. case fixedFlag.PROVISIONAL:
  186. pass = data.name == "暂列金额(不含计日工总额)";
  187. break;
  188. case fixedFlag.TOTAL_COST:
  189. pass = data.name == "投标报价";
  190. break;
  191. case fixedFlag.ONE_HUNDRED_BILLS:
  192. pass = data.name == "清单 第100章 总则";
  193. break;
  194. }
  195. } else {
  196. if (bNode.parent) {
  197. const pdata = bNode.parent.data;
  198. if (pdata.flagsIndex && pdata.flagsIndex.fixed && pdata.flagsIndex.fixed.flag == fixedFlag.ONE_SEVEN_BILLS) {
  199. if (!sectionNameMap[data.name]) pass = false
  200. }
  201. }
  202. }
  203. // if(pass == false)fail = { hint: `清单:"${data.name?data.name:""}",名字不符合规范!`, type: projectName } // 不检测了,有问题不管,2022-12-28与潘林QQ中立贴为证
  204. return fail;
  205. }
  206. /**
  207. *
  208. * @param {String} areaKey - 地区标识,如:'安徽@马鞍山',有些地区的接口只是取值上有不同,共有一个接口脚本, 需要通过地区标识确定一些特殊处理
  209. * @param {Number} exportKind - 导出类型,招标、投标、控制价
  210. * @param {Object} projectData - 项目表数据:{ 建设项目Data, children: [单位工程...] }
  211. * @param {Object} tenderDetailMap - 单位工程ID与getData接口数据(projectObj.project的结构)的映射。
  212. * @return {Promise<Array>} - 返回的数据结构必须按照规定:[{ data, exportKind, fileName }],参考web\building_saas\standard_interface\index.js中的注释说明
  213. */
  214. async function entry(areaKey, exportKind, projectData, tenderDetailMap) {
  215. const {
  216. CONFIG: {
  217. TYPE
  218. },
  219. UTIL,
  220. Element
  221. } = INTERFACE_EXPORT_BASE;
  222. const {
  223. EXPORT_KIND: {
  224. BID_INVITATION,
  225. BID_SUBMISSION,
  226. CONTROL
  227. },
  228. fixedFlag,
  229. } = window.commonConstants;
  230. let cprjType = {
  231. 1: "GCLQD", // 招标
  232. 2: "TBBJ", // 投标
  233. 3: "ZBKZJ", // 控制价
  234. };
  235. const isBidInvitation = exportKind === BID_INVITATION; // 是否是招标
  236. const isBidSubmission = exportKind === BID_SUBMISSION; // 是否是投标
  237. const isControl = exportKind === CONTROL; // 是否是控制价
  238. function emptyElement(name) {
  239. this.name = name;
  240. this.attrs = [];
  241. this.children = [];
  242. }
  243. // 建设项目根节点信息
  244. function CprjInfo(projectName) {
  245. const attrs = [{
  246. name: "CprjName",
  247. value: projectName,
  248. },
  249. {
  250. name: "CprjType",
  251. value: cprjType[exportKind],
  252. },
  253. ];
  254. Element.call(this, "CprjInfo", attrs);
  255. }
  256. // 项目基本信息
  257. function SystemInfo(projectData) {
  258. let baseInfo = _.find(projectData.property.basicInformation, {
  259. dispName: "基本信息",
  260. });
  261. //“招标工程量清单”、“招标控制价”时,输出该字段,为导出该文件的当前时间
  262. let makeData = {
  263. value : UTIL.getNowFormatTime(true)
  264. }
  265. //投标的时候取基本信息的makeData字段
  266. if(isBidSubmission) makeData = _.find(baseInfo.items, { "key": "makeDate" });
  267. // 取编制软件序列号所属单位。读取项目属性-建设项目基本信息的“投标单位”字段。该字段需要模板中新增。等确定后再修改
  268. // let softwareNumHolder = _.find(baseInfo.items, { "key": "bidderName" });
  269. let softwareNumHolder = userCompany; // userCompany是在main界面上已经有现成的(类似userAccount, userID)
  270. let hardID = UTIL.generateHardwareId();
  271. let [cpuId, diskId, macId] = hardID.split(";");
  272. // const orgScretInfoStr = `SoftwareName=纵横公路工程造价管理软件,SoftwareVer=V${VERSION},SoftwareCompany=珠海纵横创新软件有限公司,SoftwareNumber=${userID},HardNumber=${diskId},MacAddress=${macId},SoftwareNumberHolder=${softwareNumHolder}`
  273. const orgScretInfoStr = `SoftwareName=纵横公路工程造价管理软件,SoftwareVer=V${VERSION},SoftwareCompany=珠海纵横创新软件有限公司,SoftwareNumber=${window.btoa(userID)},HardNumber=${window.btoa(diskId)},MacAddress=${window.btoa(macId)},SoftwareNumberHolder=${softwareNumHolder}`
  274. let scretInfo = sm3Digest(orgScretInfoStr);
  275. const attrs = [{
  276. name: "Name",
  277. value: "公路工程造价数据标准",
  278. },
  279. {
  280. name: "Version",
  281. value: "1.0",
  282. },
  283. {
  284. name: "SoftwareName",
  285. value: "纵横公路工程造价管理软件",
  286. },
  287. {
  288. name: "SoftwareVer",
  289. value: "V" + VERSION,
  290. },
  291. {
  292. name: "SoftwareCompany",
  293. value: "珠海纵横创新软件有限公司",
  294. },
  295. {
  296. name: "MakeDate",
  297. value: makeData?makeData.value:"",
  298. },
  299. {
  300. name: "SoftwareNumber",
  301. value: window.btoa(userID),
  302. },
  303. {
  304. name: "HardNumber",
  305. value: window.btoa(diskId),
  306. },
  307. {
  308. name: "MacAddress",
  309. value: window.btoa(macId),
  310. },
  311. {
  312. name: "SoftwareNumberHolder",
  313. value: softwareNumHolder,
  314. },
  315. {
  316. name: "SecretInfo",
  317. value: scretInfo,
  318. },
  319. ];
  320. Element.call(this, "SystemInfo", attrs);
  321. }
  322. //造价依据
  323. function CostBasis() {
  324. // ItemStandardNo="GYSFX-000000-2018-86"
  325. const attrs = [{
  326. name: "MakeRuleNo",
  327. value: "GYSBB-000000-2018-86",
  328. },
  329. {
  330. name: "MakeRuleName",
  331. value: "公路工程建设项目概算预算编制办法",
  332. },
  333. {
  334. name: "ItemStandardNo",
  335. value: "GYSFX-000000-2018-86",
  336. },
  337. ];
  338. Element.call(this, "CostBasis", attrs);
  339. //定额库信息
  340. //to do 改成实际的值
  341. function NormLib() {
  342. const attrs = [{
  343. name: "NormLibNo",
  344. value: "YSDE-000000-2018-86",
  345. },
  346. {
  347. name: "NormLibName",
  348. value: "部颁公路工程预算定额(2018)",
  349. },
  350. {
  351. name: "Type",
  352. value: "ZDEK",
  353. },
  354. ];
  355. Element.call(this, "NormLib", attrs);
  356. }
  357. this.children.push(new NormLib());
  358. }
  359. function Rate(tenderProject, feeRateInfo, seirNo) {
  360. //RateNo="1" Name="纵横软件测试版本" RateLibNo="GYSFL-000000-2018-86"
  361. const attrs = [{
  362. name: "RateNo",
  363. value: seirNo,
  364. },
  365. {
  366. name: "Name",
  367. value: feeRateInfo.name,
  368. },
  369. {
  370. name: "RateLibNo",
  371. value: feeLibNoMap[feeRateInfo.libID],
  372. },
  373. ];
  374. Element.call(this, "Rate", attrs);
  375. let RateParams = new emptyElement("RateParams");
  376. let subRates = projectObj.project.FeeRate.getAllSubRates(feeRateInfo.rates);
  377. for (let s of subRates) {
  378. let sname = s.name.replace("(%)", "");
  379. sname = sname.replace("(%)", "");
  380. if (feeRateMap[sname]) {
  381. let value = "";
  382. if (s.editable) {
  383. let sel = _.find(s.optionList, {
  384. selected: true,
  385. });
  386. if (sel) {
  387. value = sel.name;
  388. } else if (gljUtil.isDef(s.value)) {
  389. value = s.value;
  390. }
  391. } else {
  392. value = _.findIndex(s.optionList, {
  393. selected: true,
  394. });
  395. if (value == -1) value = 0;
  396. }
  397. /* if (sname == '利润') tenderProject.ProfitRate = value;
  398. if (sname == '税金') tenderProject.TaxRate = value; */
  399. RateParams.children.push(new RateParam(feeRateMap[sname], value));
  400. }
  401. }
  402. this.children.push(RateParams);
  403. function RateParam(RateTypeNo, RateParamNo) {
  404. //<RateParam RateTypeNo="DJSGZJFFL" RateParamNo="0" Ratio="100"/>
  405. const attrs = [{
  406. name: "RateTypeNo",
  407. value: RateTypeNo,
  408. },
  409. {
  410. name: "RateParamNo",
  411. value: RateParamNo,
  412. },
  413. {
  414. name: "Ratio",
  415. value: "100",
  416. },
  417. ];
  418. Element.call(this, "RateParam", attrs);
  419. }
  420. let RateValues = new emptyElement("RateValues");
  421. function RateValue(CostTypeNo, RateTypeNo, value) {
  422. const attrs = [{
  423. name: "CostTypeNo",
  424. value: CostTypeNo,
  425. },
  426. {
  427. name: "RateTypeNo",
  428. value: RateTypeNo,
  429. },
  430. {
  431. name: "RateValue",
  432. value: value,
  433. },
  434. ];
  435. Element.call(this, "RateValue", attrs);
  436. }
  437. let prefix = "";
  438. for (let r of feeRateInfo.rates) {
  439. if (!r.ParentID && feeRateMap[r.name]) prefix = feeRateMap[r.name];
  440. if (feeRateMap[r.name] && r.ParentID) {
  441. RateValues.children.push(new RateValue(prefix, feeRateMap[r.name], r.rate));
  442. }
  443. }
  444. this.children.push(RateValues);
  445. }
  446. function Pract(tpdata, seriNo) {
  447. let pgljData = tpdata.projectGLJ.datas;
  448. let decimalObj = tpdata.property.decimal;
  449. const attrs = [{
  450. name: "PractNo",
  451. value: seriNo,
  452. },
  453. {
  454. name: "Name",
  455. value: pgljData.constData.usedUnitPriceInfo.name,
  456. },
  457. ];
  458. Element.call(this, "Pract", attrs);
  459. let Param = {
  460. name: "Param",
  461. attrs: [{
  462. name: "TaxLibNo",
  463. value: "CCSBZ-440000-2019-544",
  464. },
  465. {
  466. name: "AuxRate",
  467. value: pgljData.constData.assistProductionFeeRate,
  468. },
  469. ],
  470. children: [],
  471. };
  472. if (isBidSubmission || isControl) { //导出到招标文件中,不输出这一部分。
  473. let elecDatas = electrovalenceObj.getElectrovalenceDatas(null, pgljData.com_electrovalence, pgljData.gljList);
  474. electrovalenceObj.calcPertElectrovalenceMarketPrice(elecDatas);
  475. for (let e of elecDatas) {
  476. let Electro = {
  477. name: "Electro",
  478. attrs: [{
  479. name: "Code",
  480. value: e.code,
  481. },
  482. {
  483. name: "Price",
  484. value: e.electPrice,
  485. },
  486. {
  487. name: "Ratio",
  488. value: e.coe,
  489. },
  490. ],
  491. children: [],
  492. };
  493. Param.children.push(Electro);
  494. }
  495. }
  496. this.children.push(Param);
  497. function Mp(g) {
  498. const attrs = [{
  499. name: "Code",
  500. value: g.code,
  501. },
  502. {
  503. name: "PractName",
  504. value: g.name,
  505. },
  506. {
  507. name: "Spec",
  508. value: g.specs,
  509. },
  510. {
  511. name: "Unit",
  512. value: g.unit,
  513. },
  514. {
  515. name: "BudgetPrice",
  516. value: g.priceInfo.tenderPrice,
  517. },
  518. {
  519. name: "NormPrice",
  520. value: g.priceInfo.basePrice,
  521. },
  522. {
  523. name: "IsAdd",
  524. value: g.unit_price.is_add,
  525. },
  526. ];
  527. Element.call(this, "Mp", attrs);
  528. }
  529. function Material(g) {
  530. const attrs = [{
  531. name: "Code",
  532. value: g.code,
  533. },
  534. {
  535. name: "PractName",
  536. value: g.name,
  537. },
  538. {
  539. name: "Spec",
  540. value: g.specs,
  541. },
  542. {
  543. name: "Unit",
  544. value: g.unit,
  545. },
  546. {
  547. name: "BudgetPrice",
  548. value: g.priceInfo.tenderPrice,
  549. },
  550. {
  551. name: "NormPrice",
  552. value: g.priceInfo.basePrice,
  553. },
  554. {
  555. name: "IsAdd",
  556. value: g.unit_price.is_add,
  557. },
  558. {
  559. name: "OrgPrice",
  560. value: g.unit_price.originalPrice ? g.unit_price.originalPrice : 0,
  561. },
  562. {
  563. name: "TransFee",
  564. value: g.unit_price.unitFreight ? g.unit_price.unitFreight : 0,
  565. },
  566. {
  567. name: "GwRate",
  568. value: g.unit_price.grossWeightCoe_n ? g.unit_price.grossWeightCoe_n : 0,
  569. },
  570. {
  571. name: "OffSiteLf",
  572. value: g.unit_price.offSiteTransportLossRate_n ? g.unit_price.offSiteTransportLossRate_n : 0,
  573. },
  574. {
  575. name: "OnSiteLf",
  576. value: 0,
  577. },
  578. {
  579. name: "LoadLf",
  580. value: g.unit_price.handlingLossRate_n ? g.unit_price.handlingLossRate_n : 0,
  581. },
  582. {
  583. name: "StoreRate",
  584. value: g.unit_price.purchaseStorageRate_n ? g.unit_price.purchaseStorageRate_n : 0,
  585. },
  586. {
  587. name: "PackageRecycleFee",
  588. value: g.unit_price.packageRecoverValue ? g.unit_price.packageRecoverValue : 0,
  589. },
  590. ];
  591. Element.call(this, "Material", attrs);
  592. // if (g.unit_price.calcMaterial == 1) { //有材料计算
  593. // let index = gljUtil.getIndex(g);
  594. // let orList = [];
  595. // for (let o of pgljData.originalList) {
  596. // if (o.connect_key == index) orList.push(new OrgPrices(o));
  597. // }
  598. // if (orList.length > 0) this.children = orList;
  599. // }
  600. function CostStructure(r) {
  601. //待获取
  602. this.name = "CostStructure";
  603. this.attrs = [];
  604. this.children = [];
  605. }
  606. function Consume(r, o) {
  607. this.name = "Consume";
  608. this.attrs = [];
  609. this.children = [];
  610. for (let g of o.ration_gljs) {
  611. if (g.rationID == r.ID) {
  612. let r_quantity = scMathUtil.roundForObj(r.quantity, tpdata.property.decimal.ration.quantity);
  613. this.children.push(new ConsumeItem(g, r_quantity));
  614. }
  615. }
  616. }
  617. function ConsumeItem(g, ration_quantity) {
  618. const attrs = [{
  619. name: "Code", //待获取
  620. value: g.code,
  621. },
  622. {
  623. name: "Consumption",
  624. value: scMathUtil.roundForObj(ration_quantity * parseFloat(g.quantity), tpdata.property.decimal.glj.quantity),
  625. },
  626. ];
  627. Element.call(this, "ConsumeItem", attrs);
  628. }
  629. function Norm(r, o) {
  630. const attrs = [{
  631. name: "NormLibNo", //待获取
  632. value: "",
  633. },
  634. {
  635. name: "DisplayCode",
  636. value: r.code,
  637. },
  638. {
  639. name: "Name",
  640. value: r.name,
  641. },
  642. {
  643. name: "Unit",
  644. value: r.unit,
  645. },
  646. {
  647. name: "Num",
  648. value: r.quantity,
  649. },
  650. {
  651. name: "CostTypeNo",
  652. value: "", //待获取
  653. },
  654. {
  655. name: "FabricationCost", //待获取
  656. value: "",
  657. },
  658. {
  659. name: "AdjustStatus",
  660. value: "",
  661. },
  662. ];
  663. Element.call(this, "Norm", attrs);
  664. this.children.push(new CostStructure(r));
  665. this.children.push(new Consume(r, o));
  666. }
  667. function SelfCollect(o) {
  668. const attrs = [{
  669. name: "OtherCost",
  670. value: 0,
  671. }, ];
  672. Element.call(this, "SelfCollect", attrs);
  673. for (let r of o.rations) {
  674. this.children.push(new Norm(r, o));
  675. }
  676. }
  677. function OrgPrices(o) {
  678. const attrs = [{
  679. name: "OrgPricevalue",
  680. value: o.supplyPrice,
  681. },
  682. {
  683. name: "Ratio",
  684. value: o.coe,
  685. },
  686. ];
  687. Element.call(this, "OrgPrices", attrs);
  688. if (!o.rations) return;
  689. this.children.push(new SelfCollect(o));
  690. }
  691. }
  692. function Mech(g,gljKeyMap) {
  693. const attrs = [{
  694. name: "Code",
  695. value: g.code,
  696. },
  697. {
  698. name: "PractName",
  699. value: g.name,
  700. },
  701. {
  702. name: "Spec",
  703. value: g.specs,
  704. },
  705. {
  706. name: "Unit",
  707. value: g.unit,
  708. },
  709. {
  710. name: "BudgetPrice",
  711. value: g.priceInfo.tenderPrice,
  712. },
  713. {
  714. name: "NormPrice",
  715. value: g.priceInfo.basePrice,
  716. },
  717. {
  718. name: "IsAdd",
  719. value: g.unit_price.is_add,
  720. },
  721. ];
  722. Element.call(this, "Mech", attrs);
  723. let FixedCostItems = [];
  724. let fcsum = 0;
  725. let VariableCostItems = [];
  726. let vcsum = 0;
  727. if (g.ratio_data && g.ratio_data.length > 0) {
  728. for (let ratio of g.ratio_data) {
  729. let rIndex = gljUtil.getIndex(ratio);
  730. let rglj = gljKeyMap[rIndex];
  731. let ts = scMathUtil.roundForObj(parseFloat(ratio.consumption) * rglj.priceInfo.tenderPrice, decimalObj.glj.unitPrice);
  732. if (FixedCostMap[ratio.name]) {
  733. FixedCostItems.push(new FixedCostItem(ratio));
  734. fcsum = scMathUtil.roundForObj(fcsum + ts, decimalObj.glj.unitPrice);
  735. } else {
  736. VariableCostItems.push(new VariableCostItem(ratio));
  737. vcsum = scMathUtil.roundForObj(vcsum + ts, decimalObj.glj.unitPrice);
  738. }
  739. }
  740. }
  741. if (FixedCostItems.length > 0) {
  742. let fc = new FixedCost(fcsum);
  743. fc.children = FixedCostItems;
  744. this.children.push(fc);
  745. }
  746. if (VariableCostItems.length > 0) {
  747. let vc = new VariableCost(vcsum);
  748. vc.children = VariableCostItems;
  749. this.children.push(vc);
  750. }
  751. function VariableCost(sum) {
  752. const attrs = [{
  753. name: "VariableCostSum",
  754. value: sum,
  755. }];
  756. Element.call(this, "VariableCost", attrs);
  757. }
  758. function VariableCostItem(item) {
  759. const attrs = [{
  760. name: "VariableCostNo",
  761. value: item.code,
  762. },{
  763. name: "Consumption",
  764. value: item.consumption,
  765. }]
  766. Element.call(this, "VariableCostItem", attrs);
  767. }
  768. function FixedCost(sum) {
  769. const attrs = [{
  770. name: "FixedCostSum",
  771. value: sum,
  772. }, {
  773. name: "FixedRate",
  774. value: 1,
  775. }];
  776. Element.call(this, "FixedCost", attrs);
  777. }
  778. function FixedCostItem(item) {
  779. const attrs = [{
  780. name: "FixedCostNo",
  781. value: ratioCodeMap[item.code],
  782. },{
  783. name: "Sum",
  784. value: item.consumption,
  785. }]
  786. Element.call(this, "FixedCostItem", attrs);
  787. }
  788. }
  789. let Mps = new emptyElement("Mps");
  790. let Materials = new emptyElement("Materials");
  791. let Mechs = new emptyElement("Mechs");
  792. let gljKeyMap = {};
  793. let temMechs = [];
  794. if (isBidSubmission || isControl) { //导出到招标文件中,不输出这一部分。
  795. for (let g of pgljData.gljList) {
  796. if (!g.quantity) {
  797. continue;
  798. }
  799. let type = g.type + "";
  800. gljKeyMap[gljUtil.getIndex(g)] = g;
  801. type = type.charAt(0);
  802. if (type == "1") {
  803. Mps.children.push(new Mp(g));
  804. } else if (type == "2" || type == 5) {
  805. Materials.children.push(new Material(g));
  806. } else if (type == "3") {
  807. temMechs.push(g);
  808. }
  809. }
  810. for (let t of temMechs) {
  811. Mechs.children.push(new Mech(t,gljKeyMap));
  812. }
  813. }
  814. this.children.push(Mps);
  815. this.children.push(Materials);
  816. this.children.push(Mechs);
  817. }
  818. function EprjInfo(tenderProject) {
  819. let bills = tenderProject.Bills.datas;
  820. let feature = tenderProject.property.projectFeature ? tenderProject.property.projectFeature : [];
  821. let totalItem = null;
  822. let proItem = null; //暂列金额项
  823. let safeItem = null;
  824. let oneToSevenItem = null;
  825. for (let b of bills) {
  826. if (b.flagsIndex && b.flagsIndex.fixed && b.flagsIndex.fixed.flag == fixedFlag.TOTAL_COST) totalItem = b;
  827. if (b.flagsIndex && b.flagsIndex.fixed && b.flagsIndex.fixed.flag == fixedFlag.PROVISIONAL) proItem = b;
  828. if (b.flagsIndex && b.flagsIndex.fixed && b.flagsIndex.fixed.flag == fixedFlag.ONE_SEVEN_BILLS) oneToSevenItem = b;
  829. if(b.code == "102-3" && b.name=="安全生产费") safeItem = b;
  830. }
  831. const attrs = [{
  832. name: "Name",
  833. value: tenderProject.projectInfo.name,
  834. },
  835. {
  836. name: "Sums",
  837. value: totalItem.feesIndex && totalItem.feesIndex.common && totalItem.feesIndex.common.tenderTotalFee ? totalItem.feesIndex.common.tenderTotalFee : 0,
  838. },
  839. ];
  840. //输出控制价、投标文件时,取调价后的标段总造价。
  841. //输出招标文件时,取0
  842. if (isBidInvitation) attrs[1].value = 0;
  843. Element.call(this, "EprjInfo", attrs);
  844. this.children.push(new SummaryOfCost(totalItem, proItem,safeItem,oneToSevenItem,feature));
  845. this.children.push(new MakeInfo(tenderProject));
  846. this.children.push(new Params(tenderProject));
  847. this.children.push(new getBillsItems(tenderProject));
  848. this.children.push(new getIndexs(tenderProject));
  849. let bidEvaluationMainMaterials = getBidEvaluationMainMaterial(tenderProject);
  850. if(bidEvaluationMainMaterials.length > 0) this.children.push(...bidEvaluationMainMaterials);
  851. //山东接口还需要增加几个表的数据(就是把原报表的显示数据转到投标文件里)
  852. // 1. 投标报价汇总表
  853. this.children.push(new quoteSummary(tenderProject));
  854. // 2. 计日工表
  855. let spdw = sporadicWork(tenderProject);
  856. if (spdw) {
  857. this.children.push(spdw);
  858. }
  859. // 3. 材料暂估价表
  860. let estMaterialRpt = materialEstimate(tenderProject);
  861. if (estMaterialRpt) {
  862. this.children.push(estMaterialRpt);
  863. }
  864. // 4. 工程设备暂估价表
  865. let estMachineRpt = getMachineTempEst(tenderProject);
  866. if (estMachineRpt) {
  867. this.children.push(estMachineRpt);
  868. }
  869. // 5. 专业工程暂估价表
  870. let estSpecPrjRpt = getSpecPrjEst(tenderProject);
  871. if (estSpecPrjRpt) {
  872. this.children.push(estSpecPrjRpt);
  873. }
  874. // 6. 工程量清单单价分析表
  875. let billAnalyzeRpt = getBillsAnalyze(tenderProject);
  876. if (billAnalyzeRpt) {
  877. this.children.push(billAnalyzeRpt);
  878. }
  879. }
  880. function _getBidGljCode(tenderProject, orgGlj) {
  881. let rst = orgGlj.code;
  882. if (tenderProject.bid_evaluation_list && tenderProject.bid_evaluation_list.datas) {
  883. for (let bGlj of tenderProject.bid_evaluation_list.datas) {
  884. if (bGlj.projectGLJID === orgGlj.id) {
  885. rst = bGlj.seq;
  886. break;
  887. }
  888. }
  889. }
  890. return rst;
  891. }
  892. function _getFee(bill, key = 'common', valueKey = 'tenderTotalFee') {
  893. let rstSum = 0;
  894. if (bill) {
  895. let dtlB = (bill.data) ? bill.data : bill;
  896. if (dtlB.fees) {
  897. for (let fee of dtlB.fees) {
  898. if (fee.fieldName === key) {
  899. rstSum = fee[valueKey];
  900. break;
  901. }
  902. }
  903. }
  904. }
  905. return rstSum;
  906. };
  907. function _getNumValueByExportKind(orgSum) {
  908. let rst = orgSum;
  909. // const isBidInvitation = exportKind === BID_INVITATION; // 是否是招标
  910. // const isBidSubmission = exportKind === BID_SUBMISSION; // 是否是投标
  911. // const isControl = exportKind === CONTROL; // 是否是控制价
  912. //根据导出类型(上面3个),输出实际合计或price
  913. if (isBidInvitation) {
  914. rst = 0;
  915. }
  916. return rst;
  917. }
  918. function _getStrValueByExportKind(orgStr) {
  919. let rst = orgStr;
  920. // const isBidInvitation = exportKind === BID_INVITATION; // 是否是招标
  921. // const isBidSubmission = exportKind === BID_SUBMISSION; // 是否是投标
  922. // const isControl = exportKind === CONTROL; // 是否是控制价
  923. //根据导出类型(上面3个),输出实际合计或price
  924. if (isBidInvitation) {
  925. rst = '';
  926. }
  927. return rst;
  928. }
  929. function quoteSummary(tenderProject) {
  930. let quoteSummaryItem = new emptyElement('QuoteSummary');
  931. // let attrs = [];
  932. //1. 取固定清单,
  933. // 1.1 100~700章总清单(flags有属性为19的那个) -> topNode100To700
  934. // 1.2 已包含在清单合计中的材料、工程设备、专业工程暂估价合计 标记:20
  935. // 1.3 清单合计减去材料、工程设备、专业工程暂估价|合计 标记:21
  936. // 1.4 计日工合计 标记:22
  937. // 1.5 暂列金额(不含计日工总额) 标记:26
  938. // 1.6 投标报价 标记:9
  939. let topNode100To700, nodeZXZDJ, nodeQDKCZXZDJ, nodeJRG, nodeZLJE, nodeTBBJ;
  940. let chapterNodes = [];
  941. tenderProject.Bills.datas.forEach((bill)=> {
  942. if (bill.flags && bill.flags.length > 0) {
  943. for (let flag of bill.flags) {
  944. switch(flag.flag) {
  945. case 19 :
  946. topNode100To700 = bill;
  947. break;
  948. case 20 :
  949. nodeZXZDJ = bill;
  950. break;
  951. case 21 :
  952. nodeQDKCZXZDJ = bill;
  953. break;
  954. case 22 :
  955. nodeJRG = bill;
  956. break;
  957. case 26 :
  958. nodeZLJE = bill;
  959. break;
  960. case 9 :
  961. nodeTBBJ = bill;
  962. break;
  963. default :
  964. break;
  965. }
  966. }
  967. }
  968. });
  969. //2. 然后获取topNode100To700下的所有次一级清单(100章...700章)
  970. if (topNode100To700) {
  971. for (let rootBill of tenderProject.Bills.tree.roots) {
  972. // 100~700章总清单在top级别(山东养护)
  973. if (rootBill.data.ID === topNode100To700.ID) {
  974. rootBill.children.forEach((subBill)=> {
  975. if (subBill.data.name.includes('00章')) {
  976. chapterNodes.push(subBill);
  977. }
  978. });
  979. break;
  980. }
  981. }
  982. }
  983. //3. 拼凑数据
  984. let nodeAttrs = [];
  985. if (topNode100To700) {
  986. let order = 1;
  987. //读取投标报价汇总表信息。1.ItemNo 序号。2.ChapterNo 章次。 3.Name 科目名称。 4.Sum 金额。
  988. chapterNodes.forEach((cnode)=> {
  989. let chapterIdx = cnode.data.name.indexOf("00章");
  990. nodeAttrs.push({ItemNo: order, ChapterNo: cnode.data.name.substr(chapterIdx - 1, 3), Name: cnode.data.name, Sum: _getFee(cnode)});
  991. order++;
  992. });
  993. nodeAttrs.push({ItemNo: order, ChapterNo: '', Name: '第100章至700章清单合计', Sum: _getFee(topNode100To700)});
  994. order++;
  995. if (nodeZXZDJ) {
  996. nodeAttrs.push({ItemNo: order, ChapterNo: '', Name: '已包含在清单合计中的材料、工程设备、专业工程暂估价合计', Sum: _getFee(nodeZXZDJ)});
  997. order++;
  998. }
  999. if (nodeQDKCZXZDJ) {
  1000. nodeAttrs.push({ItemNo: order, ChapterNo: '', Name: `清单合计减去材料、工程设备、专业工程暂估价合计(即${order - 2}-${order - 1})=${order}`, Sum: _getFee(nodeQDKCZXZDJ)});
  1001. order++;
  1002. }
  1003. if (nodeJRG) {
  1004. nodeAttrs.push({ItemNo: order, ChapterNo: '', Name: `计日工合计`, Sum: _getFee(nodeJRG)});
  1005. order++;
  1006. }
  1007. if (nodeZLJE) {
  1008. nodeAttrs.push({ItemNo: order, ChapterNo: '', Name: `暂列金额(不含计日工总额)`, Sum: _getFee(nodeZLJE)});
  1009. order++;
  1010. }
  1011. if (nodeTBBJ) {
  1012. nodeAttrs.push({ItemNo: order, ChapterNo: '', Name: `投标报价(${chapterNodes.length + 1} + ${order - 2}+${order - 1})=${order}`, Sum: _getFee(nodeTBBJ)});
  1013. order++;
  1014. }
  1015. }
  1016. function _Item(item) {
  1017. const attrs = [
  1018. { name: 'ItemNo',
  1019. value: item.ItemNo
  1020. },
  1021. { name: 'ChapterNo',
  1022. value: item.ChapterNo
  1023. },
  1024. { name: 'Name',
  1025. value: item.Name
  1026. },
  1027. { name: 'Sum',
  1028. value: _getNumValueByExportKind(item.Sum)
  1029. // value: 0 // 所有清单的金额都是0
  1030. }
  1031. ];
  1032. let rst = new emptyElement('Item');
  1033. rst.attrs.push(...attrs);
  1034. return rst;
  1035. }
  1036. for (let attr of nodeAttrs) {
  1037. quoteSummaryItem.children.push(_Item(attr));
  1038. }
  1039. return quoteSummaryItem;
  1040. }
  1041. function sporadicWork(tenderProject) {
  1042. //计日工表,含:劳务、材料、施工机械、计日工汇总
  1043. let hasSporadicWork = false;
  1044. let sporadicWorkItem = new Element('SporadicWork');
  1045. let nodeLabour, nodeMaterial, nodeMachine;
  1046. //首先收集过滤计日工相关清单
  1047. tenderProject.Bills.datas.forEach((bill)=> {
  1048. if (bill.flags && bill.flags.length > 0) {
  1049. for (let flag of bill.flags) {
  1050. switch(flag.flag) {
  1051. case 23 :
  1052. nodeLabour = bill;
  1053. break;
  1054. case 24 :
  1055. nodeMaterial = bill;
  1056. break;
  1057. case 25 :
  1058. nodeMachine = bill;
  1059. break;
  1060. default :
  1061. break;
  1062. }
  1063. }
  1064. }
  1065. });
  1066. const _buildWorkNodeItem = function(orgNode, subNodes, parentKey, childKey) {
  1067. let parentNode = new Element(parentKey);
  1068. sporadicWorkItem.children.push(parentNode);
  1069. const pSumAttrs = [
  1070. {
  1071. name: 'Sum',
  1072. value: _getNumValueByExportKind(_getFee(orgNode))
  1073. // value: 0
  1074. }
  1075. ];
  1076. // Element.call(this, parentKey, pSumAttrs);
  1077. parentNode.attrs.push(...pSumAttrs);
  1078. subNodes.forEach((node)=> {
  1079. let childNode = new Element(childKey);
  1080. parentNode.children.push(childNode);
  1081. const attrs = [
  1082. { name: 'ItemNo',
  1083. value: node.code
  1084. }, {
  1085. name: 'Name',
  1086. value: node.name
  1087. }, {
  1088. name: 'Unit',
  1089. value: node.unit
  1090. }, {
  1091. name: 'Num',
  1092. value: node.quantity
  1093. }, {
  1094. name: 'Price',
  1095. value: _getNumValueByExportKind(_getFee(node, 'common', 'tenderUnitFee'))
  1096. // value: 0
  1097. }, {
  1098. name: 'Sum',
  1099. value: _getNumValueByExportKind(_getFee(node))
  1100. // value: 0
  1101. }
  1102. ];
  1103. childNode.attrs.push(...attrs);
  1104. });
  1105. };
  1106. //1. 判断劳务
  1107. if (nodeLabour) {
  1108. let subNodes = [];
  1109. tenderProject.Bills.datas.forEach((bill)=> {
  1110. if (bill.ParentID === nodeLabour.ID) {
  1111. subNodes.push(bill);
  1112. }
  1113. });
  1114. if (subNodes.length > 0) {
  1115. hasSporadicWork = true;
  1116. //创建劳务Mps节点及劳务Mps下Mp子节点
  1117. _buildWorkNodeItem(nodeLabour, subNodes, 'Mps', 'Mp');
  1118. }
  1119. }
  1120. //2. 判断材料
  1121. if (nodeMaterial) {
  1122. let subNodes = [];
  1123. tenderProject.Bills.datas.forEach((bill)=> {
  1124. if (bill.ParentID === nodeMaterial.ID) {
  1125. subNodes.push(bill);
  1126. }
  1127. });
  1128. if (subNodes.length > 0) {
  1129. hasSporadicWork = true;
  1130. //创建材料Materials节点及劳务Materials下Material子节点
  1131. _buildWorkNodeItem(nodeMaterial, subNodes, 'Materials', 'Material');
  1132. }
  1133. }
  1134. //3. 判断施工机械
  1135. if (nodeMachine) {
  1136. let subNodes = [];
  1137. tenderProject.Bills.datas.forEach((bill)=> {
  1138. if (bill.ParentID === nodeMachine.ID) {
  1139. subNodes.push(bill);
  1140. }
  1141. });
  1142. if (subNodes.length > 0) {
  1143. hasSporadicWork = true;
  1144. //创建施工机械Meehs节点及劳务Meehs下Meeh子节点
  1145. _buildWorkNodeItem(nodeMachine, subNodes, 'Mechs', 'Mech');
  1146. }
  1147. }
  1148. //4. 判断计日工汇总
  1149. if (hasSporadicWork) {
  1150. let summaryNode = new Element('Summary');
  1151. sporadicWorkItem.children.push(summaryNode);
  1152. const pSumAttrs = [
  1153. {
  1154. name: 'Sum',
  1155. // value: _getFee(nodeLabour) + _getFee(nodeMaterial) + _getFee(nodeMachine)
  1156. value: _getNumValueByExportKind(_getFee(nodeLabour) + _getFee(nodeMaterial) + _getFee(nodeMachine))
  1157. }
  1158. ];
  1159. summaryNode.attrs = pSumAttrs;
  1160. //把劳务、材料、施工机械
  1161. function _workItem(node, name, remark='') {
  1162. let childNode = new Element('Item');
  1163. summaryNode.children.push(childNode);
  1164. const attrs = [
  1165. {
  1166. name: "Name",
  1167. value: name,
  1168. },
  1169. {
  1170. name: "Sum",
  1171. value: _getNumValueByExportKind(_getFee(node)),
  1172. },
  1173. {
  1174. name: "Remark",
  1175. value: remark,
  1176. }
  1177. ]
  1178. childNode.attrs.push(...attrs);
  1179. }
  1180. _workItem(nodeLabour, '劳务');
  1181. _workItem(nodeMaterial, '材料');
  1182. _workItem(nodeMachine, '机械');
  1183. }
  1184. //返回
  1185. if (hasSporadicWork) {
  1186. return sporadicWorkItem;
  1187. } else {
  1188. return null;
  1189. }
  1190. }
  1191. function materialEstimate(tenderProject) {
  1192. let mEstNode = new emptyElement('MaterialEstimate');
  1193. let items = [];
  1194. let billItems = [];
  1195. let itemNo = 1;
  1196. //材料暂估价明细
  1197. tenderProject.Bills.datas.forEach((bill)=> {
  1198. if (bill.specialProvisional === '材料暂估') {
  1199. billItems.push(bill);
  1200. }
  1201. });
  1202. if (billItems.length > 0) {
  1203. billItems.forEach((bill)=> {
  1204. let mEstItemNode = new emptyElement('Item');
  1205. mEstNode.children.push(mEstItemNode);
  1206. let attrs = [
  1207. {name: 'ItemNo', value: itemNo},
  1208. {name: 'Code', value: bill.code},
  1209. {name: 'Number', value: bill.code},
  1210. {name: 'Name', value: bill.name},
  1211. {name: 'Unit', value: bill.unit},
  1212. {name: 'Num', value: bill.quantity},
  1213. {name: 'Price', value: _getNumValueByExportKind(_getFee(bill, 'common', 'tenderUnitFee'))},
  1214. {name: 'Sum', value: _getNumValueByExportKind(scMathUtil.roundForObj(_getFee(bill), 0)), type:TYPE.DECIMAL},
  1215. // {name: 'Price', value: 0},
  1216. // {name: 'Sum', value: 0},
  1217. {name: 'Remark', value: (bill.remark) ? bill.remark : ''}
  1218. ];
  1219. itemNo++;
  1220. mEstItemNode.attrs.push(...attrs);
  1221. });
  1222. }
  1223. tenderProject.projectGLJ.datas.gljList.forEach((glj)=> {
  1224. if (glj.is_evaluate && glj.type !== 5 && glj.type !== 301) {
  1225. items.push(glj);
  1226. }
  1227. });
  1228. if (items.length > 0) {
  1229. items.forEach((glj)=> {
  1230. let mEstItemNode = new emptyElement('Item');
  1231. mEstNode.children.push(mEstItemNode);
  1232. let gljName = glj.name;
  1233. if (tenderProject.evaluate_list.datas && tenderProject.evaluate_list.datas.length > 0) {
  1234. for (let relGlj of tenderProject.evaluate_list.datas) {
  1235. if (relGlj.projectGLJID == glj.id) {
  1236. gljName = relGlj.name;
  1237. break;
  1238. }
  1239. }
  1240. }
  1241. let attrs = [
  1242. {name: 'ItemNo', value: itemNo},
  1243. {name: 'Code', value: _getBidGljCode(tenderProject, glj)},
  1244. {name: 'Number', value: glj.code},
  1245. {name: 'Name', value: gljName},
  1246. {name: 'Unit', value: glj.unit},
  1247. {name: 'Num', value: glj.tenderQuantity},
  1248. // {name: 'Price', value: _getNumValueByExportKind(glj.unit_price.market_price)},
  1249. {name: 'Price', value: glj.unit_price.market_price}, //暂估材料输出price,不需判断导出类型
  1250. {name: 'Sum', value: _getNumValueByExportKind(scMathUtil.roundForObj(glj.tenderQuantity * glj.unit_price.market_price, 0)), type:TYPE.DECIMAL},
  1251. // {name: 'Price', value: 0},
  1252. // {name: 'Sum', value: 0},
  1253. {name: 'Remark', value: (glj.remark) ? glj.remark : ''}
  1254. ];
  1255. itemNo++;
  1256. mEstItemNode.attrs.push(...attrs);
  1257. });
  1258. }
  1259. if (billItems.length > 0 || items.length > 0) {
  1260. return mEstNode;
  1261. } else {
  1262. return null;
  1263. }
  1264. }
  1265. function getMachineTempEst(tenderProject) {
  1266. let mEstNode = new emptyElement('PrjDeviceEstimate');
  1267. let items = [];
  1268. let billItems = [];
  1269. let itemNo = 1;
  1270. //工程设备明细
  1271. tenderProject.Bills.datas.forEach((bill)=> {
  1272. console.log(`bill.specialProvisional: ${bill.specialProvisional}`);
  1273. if (bill.specialProvisional === '工程设备') {
  1274. billItems.push(bill);
  1275. }
  1276. });
  1277. if (billItems.length > 0) {
  1278. billItems.forEach((bill)=> {
  1279. let mEstItemNode = new emptyElement('Item');
  1280. mEstNode.children.push(mEstItemNode);
  1281. let attrs = [
  1282. {name: 'ItemNo', value: itemNo},
  1283. {name: 'Code', value: bill.code},
  1284. {name: 'Number', value: bill.code},
  1285. {name: 'Name', value: bill.name},
  1286. {name: 'Unit', value: bill.unit},
  1287. {name: 'Num', value: bill.quantity},
  1288. {name: 'Price', value: _getNumValueByExportKind(_getFee(bill, 'common', 'tenderUnitFee'))},
  1289. {name: 'Sum', value: _getNumValueByExportKind(scMathUtil.roundForObj(_getFee(bill), 0)), type:TYPE.DECIMAL},
  1290. // {name: 'Price', value: 0},
  1291. // {name: 'Sum', value: 0},
  1292. {name: 'Remark', value: (bill.remark) ? glj.remark : ''}
  1293. ];
  1294. itemNo++;
  1295. mEstItemNode.attrs.push(...attrs);
  1296. });
  1297. }
  1298. tenderProject.projectGLJ.datas.gljList.forEach((glj)=> {
  1299. if (glj.is_evaluate && glj.type === 5) {
  1300. items.push(glj);
  1301. }
  1302. });
  1303. if (items.length > 0) {
  1304. items.forEach((glj, sno)=> {
  1305. let mEstItemNode = new emptyElement('Item');
  1306. mEstNode.children.push(mEstItemNode);
  1307. let attrs = [
  1308. {name: 'ItemNo', value: itemNo},
  1309. {name: 'Code', value: _getBidGljCode(tenderProject, glj)},
  1310. {name: 'Number', value: glj.code},
  1311. {name: 'Name', value: glj.name},
  1312. {name: 'Unit', value: glj.unit},
  1313. {name: 'Num', value: glj.tenderQuantity},
  1314. // {name: 'Price', value: _getNumValueByExportKind(glj.unit_price.market_price)},
  1315. {name: 'Price', value: glj.unit_price.market_price}, // 暂估设备直接输出price
  1316. {name: 'Sum', value: _getNumValueByExportKind(scMathUtil.roundForObj(glj.tenderQuantity * glj.unit_price.market_price, 0)), type:TYPE.DECIMAL},
  1317. // {name: 'Price', value: 0},
  1318. // {name: 'Sum', value: 0},
  1319. {name: 'Remark', value: (glj.remark) ? glj.remark : ''}
  1320. ];
  1321. itemNo++;
  1322. mEstItemNode.attrs.push(...attrs);
  1323. });
  1324. }
  1325. if (billItems.length > 0 || items.length > 0) {
  1326. return mEstNode;
  1327. } else {
  1328. return null;
  1329. }
  1330. }
  1331. function getSpecPrjEst(tenderProject) {
  1332. let mEstNode = new emptyElement('SpecPrjEstimate');
  1333. let sum = 0;
  1334. let items = [];
  1335. //专业工程暂估明细
  1336. tenderProject.Bills.datas.forEach((bill)=> {
  1337. if (bill.specialProvisional === '专业工程') {
  1338. items.push(bill);
  1339. }
  1340. });
  1341. if (items.length > 0) {
  1342. items.forEach((bill, sno)=> {
  1343. let mEstItemNode = new emptyElement('Item');
  1344. mEstNode.children.push(mEstItemNode);
  1345. let ttl = _getFee(bill);
  1346. sum += ttl;
  1347. let jobContent = '';
  1348. if (bill.jobContent && bill.jobContent.length > 0) {
  1349. jobContent = bill.jobContent.toString();
  1350. } else {
  1351. jobContent = bill.jobContentText;
  1352. }
  1353. let attrs = [
  1354. {name: 'ItemNo', value: sno + 1},
  1355. {name: 'Code', value: bill.code},
  1356. {name: 'Number', value: bill.code},
  1357. {name: 'Name', value: bill.name},
  1358. {name: 'Content', value: jobContent},
  1359. // {name: 'Sum', value: _getNumValueByExportKind(scMathUtil.roundForObj(ttl, 0)), type:TYPE.DECIMAL},
  1360. {name: 'Sum', value: ttl, type:TYPE.DECIMAL},
  1361. // {name: 'Sum', value: 0, type:TYPE.DECIMAL},
  1362. ];
  1363. mEstItemNode.attrs.push(...attrs);
  1364. });
  1365. mEstNode.attrs.push({name: 'Sum', value: sum});
  1366. return mEstNode;
  1367. } else {
  1368. return null;
  1369. }
  1370. }
  1371. function getBillsAnalyze(tenderProject) {
  1372. // 本函数是尽量复刻【5.5表】工程量清单单价分析表的‘综合’计算式脚本的相关逻辑,具体细节根据实际环境有所调整(前端环境已有不少现成的结构及数据,能少跑不少逻辑)
  1373. let djfxbNode = new emptyElement('ListUnitPriceAnalysis');
  1374. let decimalObj = tenderProject.property.decimal;
  1375. // 工程量清单单价分析(100~700章 清单下所有定额工料机的综合)
  1376. let topNode100To700;
  1377. let sno = 1;
  1378. const prefix = '_';
  1379. let filterMtlTypes = [202, 203, 204, 301];
  1380. for (let bill of tenderProject.Bills.datas) {
  1381. if (bill.flags && bill.flags.length > 0) {
  1382. for (let flag of bill.flags) {
  1383. if (flag.flag === 19) {
  1384. for (let rootBill of tenderProject.Bills.tree.roots) {
  1385. if (rootBill.data.ID === bill.ID) {
  1386. topNode100To700 = rootBill;
  1387. break;
  1388. }
  1389. }
  1390. break;
  1391. }
  1392. }
  1393. }
  1394. }
  1395. const cacheObj = {};
  1396. const proKeysArr = [];
  1397. const addedGljCodeCache = {};
  1398. //说明:根据实际情况,用户会直接在清单下加工料机,此工料机属于定额层次,那么算工程量的时候要加上这个(沟通后这种几率很小,暂时返回0,如有再补上)
  1399. const _getAdhocGljQty = function(billsId, rationCode, rstType = 1) {
  1400. let rst = 0;
  1401. // for (let nbidx = 0; nbidx < newRBillsIdArr.length; nbidx++) {
  1402. // if (newRBillsIdArr[nbidx] === billsId && newRCodeArr[nbidx] === rationCode) {
  1403. // rst = (rstType === 1) ? newRQtyArr[nbidx] : newTtlArr[nbidx];
  1404. // break;
  1405. // }
  1406. // }
  1407. return rst;
  1408. };
  1409. const _getCacheObjInitialedItem = function(bill = null, glj = null) {
  1410. let rst = {
  1411. code: (bill) ? bill.code : ((glj) ? glj.code : ''),
  1412. name: (bill) ? bill.name : ((glj) ? glj.name : ''),
  1413. quantity: (bill) ? bill.quantity : 1,
  1414. labourConsume: 0,
  1415. labourUnitPrice: 0,
  1416. labourTotalPrice: 0,
  1417. mainMaterialFee: 0,
  1418. auxiliaryMaterialFee: 0,
  1419. materialUnitFee: (bill) ? _getFee(bill, 'marketMaterial', 'unitFee') : 0,
  1420. machineFee: (bill) ? _getFee(bill, 'marketMachine') : 0,
  1421. otherFee: (bill) ? _getFee(bill, 'measure') : 0, //措施费
  1422. managementFee: (bill) ? (_getFee(bill, 'manage') + _getFee(bill, 'force')) : 0, //管理+规费
  1423. taxFee: (bill) ? _getFee(bill, 'tax') : 0,
  1424. profitFee: (bill) ? _getFee(bill, 'profit') : 0,
  1425. unitPrice: (bill) ? _getFee(bill, 'common', 'unitFee') : 0,
  1426. items: []
  1427. };
  1428. return rst;
  1429. };
  1430. const _getPrjGLJ = function(gljID) {
  1431. let rst = null;
  1432. for (let glj of tenderProject.projectGLJ.datas.gljList) {
  1433. if (glj.id === gljID) {
  1434. rst = glj;
  1435. break;
  1436. }
  1437. }
  1438. return rst;
  1439. };
  1440. const _getRation = function(rationId) {
  1441. let rst = null;
  1442. for (let ration of tenderProject.Ration.datas) {
  1443. if (ration.ID === rationId) {
  1444. rst = ration;
  1445. break;
  1446. }
  1447. }
  1448. return rst;
  1449. };
  1450. const _createNode = function(billIdKey, bill) {
  1451. if (cacheObj[billIdKey]) {
  1452. //1. 叶子清单,先创建清单Item
  1453. let bQtn = 1;
  1454. if (bill.data.hasOwnProperty('quantity')) {
  1455. bQtn = parseFloat(bill.data.quantity);
  1456. if (isNaN(bQtn)) bQtn = 1;
  1457. }
  1458. let billMainMaterialTtl = cacheObj[billIdKey].mainMaterialFee/bQtn;
  1459. let billAuxiliaryMaterialTtl = cacheObj[billIdKey].auxiliaryMaterialFee/bQtn;
  1460. // scMathUtil.roundForObj(cacheObj[billIdKey].labourConsume / bQtn, decimalObj.glj.unitPrice)
  1461. let leafBillAttrs = [
  1462. {name: 'ItemNo', value: sno},
  1463. {name: 'Code', value: cacheObj[billIdKey].code},
  1464. {name: 'Name', value: cacheObj[billIdKey].name},
  1465. {name: 'LaborWorkDays', value: _getNumValueByExportKind(scMathUtil.roundForObj(cacheObj[billIdKey].labourConsume / bQtn, decimalObj.glj.quantity))},
  1466. {name: 'LaborUnitPrice', value: _getNumValueByExportKind(scMathUtil.roundForObj(cacheObj[billIdKey].labourUnitPrice, decimalObj.glj.unitPrice))},
  1467. {name: 'LaborUnitTotal', value: _getNumValueByExportKind(scMathUtil.roundForObj(cacheObj[billIdKey].labourTotalPrice / bQtn, decimalObj.glj.unitPrice))},
  1468. {name: 'MainMaterialConsume', value: 0},
  1469. {name: 'MainMaterialUnit', value: ''},
  1470. {name: 'MainMaterialUnitPrice', value: 0},
  1471. {name: 'MainMaterialTotal', value: _getNumValueByExportKind(scMathUtil.roundForObj(billMainMaterialTtl, decimalObj.glj.unitPrice))},
  1472. {name: 'AuxiliaryMaterialFee', value: _getNumValueByExportKind(scMathUtil.roundForObj(billAuxiliaryMaterialTtl, decimalObj.glj.unitPrice))},
  1473. {name: 'MaterialSum', value: _getNumValueByExportKind(scMathUtil.roundForObj(billMainMaterialTtl + billAuxiliaryMaterialTtl, decimalObj.glj.unitPrice))},
  1474. {name: 'MachUsageFee', value: _getNumValueByExportKind(scMathUtil.roundForObj(cacheObj[billIdKey].machineFee/bQtn, decimalObj.glj.unitPrice))},
  1475. {name: 'OtherFee', value: _getNumValueByExportKind(scMathUtil.roundForObj(cacheObj[billIdKey].otherFee/bQtn, decimalObj.glj.unitPrice))},
  1476. {name: 'ManageFee', value: _getNumValueByExportKind(scMathUtil.roundForObj(cacheObj[billIdKey].managementFee/bQtn, decimalObj.glj.unitPrice))},
  1477. {name: 'Tax', value: _getNumValueByExportKind(scMathUtil.roundForObj(cacheObj[billIdKey].taxFee/bQtn, decimalObj.glj.unitPrice))},
  1478. {name: 'Profit', value: _getNumValueByExportKind(scMathUtil.roundForObj(cacheObj[billIdKey].profitFee/bQtn, decimalObj.glj.unitPrice))},
  1479. {name: 'Price', value: _getNumValueByExportKind(scMathUtil.roundForObj(_getFee(bill, 'common', 'tenderUnitFee'), decimalObj.glj.unitPrice))},
  1480. ];
  1481. sno++;
  1482. let leafItemNode = new emptyElement('Item');
  1483. djfxbNode.children.push(leafItemNode);
  1484. // leafItemNode.attrs.push(...leafBillAttrs);
  1485. leafItemNode.attrs = leafBillAttrs;
  1486. //2. 清单下工料机
  1487. cacheObj[billIdKey].items.forEach((gljItem)=> {
  1488. let showQty = gljItem.mainMaterialConsume/bQtn;
  1489. showQty = Math.round(showQty * 1000000) / 1000000;
  1490. let gljAttrs = [
  1491. {name: 'ItemNo', value: sno},
  1492. {name: 'Code', value: gljItem.code},
  1493. {name: 'Name', value: gljItem.name},
  1494. {name: 'LaborWorkDays', value: 0},
  1495. {name: 'LaborUnitPrice', value: 0},
  1496. {name: 'LaborUnitTotal', value: 0},
  1497. // {name: 'MainMaterialConsume', value: scMathUtil.roundForObj(showQty, decimalObj.glj.quantity)},
  1498. {name: 'MainMaterialConsume', value: _getNumValueByExportKind(scMathUtil.roundForObj(showQty, decimalObj.glj.quantity))},
  1499. // {name: 'MainMaterialUnit', value: gljItem.mainMaterialUnit},
  1500. {name: 'MainMaterialUnit', value: _getStrValueByExportKind(gljItem.mainMaterialUnit)},
  1501. {name: 'MainMaterialUnitPrice', value: _getNumValueByExportKind(scMathUtil.roundForObj(gljItem.mainMaterialUnitPrice, decimalObj.glj.unitPrice))},
  1502. {name: 'MainMaterialTotal', value: _getNumValueByExportKind(scMathUtil.roundForObj(showQty * gljItem.mainMaterialUnitPrice, decimalObj.glj.unitPrice))},
  1503. {name: 'AuxiliaryMaterialFee', value: 0},
  1504. {name: 'MaterialSum', value: 0},
  1505. {name: 'MachUsageFee', value: 0},
  1506. {name: 'OtherFee', value: 0},
  1507. {name: 'ManageFee', value: 0},
  1508. {name: 'Tax', value: 0},
  1509. {name: 'Profit', value: 0},
  1510. // {name: 'Price', value: _getNumValueByExportKind(scMathUtil.roundForObj(_getFee(bill), decimalObj.glj.unitPrice))},
  1511. {name: 'Price', value: 0},
  1512. ];
  1513. sno++;
  1514. let gljItemNode = new emptyElement('Item');
  1515. djfxbNode.children.push(gljItemNode);
  1516. // gljItemNode.attrs.push(...gljAttrs);
  1517. gljItemNode.attrs = gljAttrs;
  1518. });
  1519. }
  1520. };
  1521. const _getAllGlj = function(parentBill) {
  1522. if (parentBill.children.length > 0) {
  1523. parentBill.children.forEach((subBill)=> {
  1524. _getAllGlj(subBill);
  1525. });
  1526. } else {
  1527. let billIdKey = prefix + parentBill.data.ID;
  1528. if (!cacheObj.hasOwnProperty(billIdKey)) {
  1529. cacheObj[billIdKey] = _getCacheObjInitialedItem(parentBill.data);
  1530. addedGljCodeCache[billIdKey] = [];
  1531. proKeysArr.push(billIdKey);
  1532. }
  1533. tenderProject.ration_glj.datas.forEach((rglj)=> {
  1534. if (rglj.billsItemID === parentBill.data.ID) {
  1535. let gljQty = parseFloat(rglj.quantity);
  1536. if (isNaN(gljQty)) gljQty = 0;
  1537. let ration = _getRation(rglj.rationID);
  1538. let gljRationQty = 0;
  1539. if (ration) gljRationQty = parseFloat(ration.quantity);
  1540. if (isNaN(gljRationQty)) gljRationQty = 0;
  1541. let gljCns = gljQty * gljRationQty;
  1542. let prjGlj = _getPrjGLJ(rglj.projectGLJID);
  1543. let gljUnitPrice = parseFloat(prjGlj.unit_price.market_price);
  1544. let gljTotalPrice = gljCns * gljUnitPrice;
  1545. let gljCode = rglj.code;
  1546. if (rglj.type === 1) {
  1547. //人工
  1548. cacheObj[billIdKey].labourConsume = cacheObj[billIdKey].labourConsume + gljCns;
  1549. cacheObj[billIdKey].labourUnitPrice = gljUnitPrice;
  1550. cacheObj[billIdKey].labourTotalPrice = cacheObj[billIdKey].labourTotalPrice + gljTotalPrice;
  1551. } else if (filterMtlTypes.indexOf(rglj.type) < 0) {
  1552. if (!addedGljCodeCache[billIdKey].includes(gljCode)) {
  1553. addedGljCodeCache[billIdKey].push(gljCode);
  1554. }
  1555. if (prjGlj.is_main_material) {
  1556. let dtlObj = {};
  1557. dtlObj.code = gljCode;
  1558. dtlObj.name = rglj.name;
  1559. dtlObj.specs = rglj.specs;
  1560. //
  1561. let adhocGljQty = _getAdhocGljQty(parentBill.data.ID, dtlObj.code);
  1562. let adhocGljTtl = adhocGljQty * gljUnitPrice;
  1563. dtlObj.mainMaterialConsume = gljCns + adhocGljQty; //考虑清单单独加工料机的情况,需要补上消耗量
  1564. dtlObj.mainMaterialUnitPrice = gljUnitPrice;
  1565. dtlObj.mainMaterialTotalPrice = gljTotalPrice;
  1566. dtlObj.mainMaterialUnit = rglj.unit;
  1567. let isAdd = 0;
  1568. for (let i = 0; i < cacheObj[billIdKey].items.length; i++) {
  1569. //先比较对象中是否已存在同一条工料机,存在,则累加汇总消耗量和金额;否则添加。
  1570. if (dtlObj.code === cacheObj[billIdKey].items[i].code && dtlObj.name === cacheObj[billIdKey].items[i].name && dtlObj.mainMaterialUnit === cacheObj[billIdKey].items[i].mainMaterialUnit && dtlObj.specs === cacheObj[billIdKey].items[i].specs) {
  1571. cacheObj[billIdKey].items[i].mainMaterialConsume = cacheObj[billIdKey].items[i].mainMaterialConsume + gljCns;
  1572. cacheObj[billIdKey].items[i].mainMaterialTotalPrice = cacheObj[billIdKey].items[i].mainMaterialTotalPrice + gljTotalPrice;
  1573. isAdd = 1;
  1574. break;
  1575. }
  1576. }
  1577. if (isAdd === 0) {
  1578. cacheObj[billIdKey].items.push(dtlObj);
  1579. }
  1580. cacheObj[billIdKey].mainMaterialFee = cacheObj[billIdKey].mainMaterialFee + gljTotalPrice + adhocGljTtl;
  1581. } else {
  1582. cacheObj[billIdKey].auxiliaryMaterialFee = cacheObj[billIdKey].auxiliaryMaterialFee + gljTotalPrice;
  1583. }
  1584. }
  1585. }
  1586. });
  1587. // 整理完后,开始创建XML节点(这里与参考脚本逻辑不一样了,直接开始创建)
  1588. _createNode(billIdKey, parentBill);
  1589. }
  1590. };
  1591. if (topNode100To700) {
  1592. topNode100To700.children.forEach((topChapterBill)=> {
  1593. _getAllGlj(topChapterBill);
  1594. });
  1595. }
  1596. //...
  1597. return djfxbNode;
  1598. }
  1599. function getBidEvaluationMainMaterial(tenderProject) {
  1600. let bidMaterials = [];
  1601. let i = 1;
  1602. for (let b of tenderProject.bidMaterialData) {
  1603. bidMaterials.push(new BidEvaluationMainMaterial(b, i));
  1604. i++
  1605. }
  1606. return bidMaterials;
  1607. function BidEvaluationMainMaterial(b, index) {
  1608. const attrs = [{
  1609. name: "Code",
  1610. value: b.seq,
  1611. },
  1612. {
  1613. name: "Number",
  1614. value: b.code
  1615. },
  1616. {
  1617. name: "Name",
  1618. value: b.name
  1619. },
  1620. {
  1621. name: "Specification",
  1622. value: b.specs
  1623. },
  1624. {
  1625. name: "Unit",
  1626. value: b.unit
  1627. },
  1628. {
  1629. name: "Price",
  1630. value: _getNumValueByExportKind(b.marketPrice || '0'),
  1631. type: TYPE.DECIMAL
  1632. },
  1633. {
  1634. name: "LimitedPrice",
  1635. value: _getNumValueByExportKind(b.marketPrice || '0'),
  1636. type: TYPE.DECIMAL
  1637. },
  1638. {
  1639. name: "Quantity",
  1640. value: b.quantity,
  1641. type: TYPE.DECIMAL
  1642. },
  1643. {
  1644. name: "Total",
  1645. value: 0
  1646. },
  1647. {
  1648. name: "Remark",
  1649. value: b.remark
  1650. }
  1651. ];
  1652. if (isBidSubmission || isControl) {
  1653. attrs[7].value = b.quantity;
  1654. attrs[8].value = b.totalPrice;
  1655. }
  1656. Element.call(this, "BidEvaluationMainMaterial", attrs);
  1657. }
  1658. }
  1659. function getIndexs(tenderProject) {
  1660. let Indexs = new emptyElement('Indexs');
  1661. let feature = tenderProject.property.projectFeature ? tenderProject.property.projectFeature : [];
  1662. for (let f of feature) {
  1663. if (f.code) Indexs.children.push(new IndexItem(f))
  1664. }
  1665. return Indexs;
  1666. function IndexItem(fea) {
  1667. const attrs = [{
  1668. name: "Code",
  1669. value: fea.code,
  1670. },
  1671. {
  1672. name: "Name",
  1673. value: fea.dispName,
  1674. },
  1675. {
  1676. name: "Unit",
  1677. value: fea.unit,
  1678. },
  1679. {
  1680. name: "Value",
  1681. value: fea.value,
  1682. },
  1683. {
  1684. name: "Remark",
  1685. value: fea.remark,
  1686. }
  1687. ]
  1688. Element.call(this, "IndexItem", attrs);
  1689. }
  1690. }
  1691. function getBillsItems(tenderProject) {
  1692. let items = new emptyElement("Items");
  1693. let rootNodes = tenderProject.mainTree.roots;
  1694. for (let r of rootNodes) {
  1695. setItem(r, -1, items.children);
  1696. }
  1697. return items;
  1698. function setItem(bNode, level, list) {
  1699. if (bNode.sourceType == ModuleNames.ration) return;
  1700. let item = new bill(bNode, level);
  1701. if (bNode.children && bNode.children.length > 0) {
  1702. level += 1;
  1703. for (let c of bNode.children) {
  1704. setItem(c, level, item.children);
  1705. }
  1706. }
  1707. list.push(item);
  1708. function getCalcType(node) {
  1709. /*
  1710. 判断是否父项:
  1711. 是父项,则取1;
  1712. 是叶子项,则判断其下有无套定额/量价/工料机:
  1713. 有则取1;
  1714. 无则判断有无基数计算:
  1715. 有则取2;
  1716. 无则取3 */
  1717. if (node.children && node.children.length > 0) {
  1718. return 1; //是父项,则取1, 有套定额/量价/工料机,也取1
  1719. } else {
  1720. return node.data.calcBase && node.data.calcBase != "" ? 2 : 3
  1721. }
  1722. }
  1723. function getItemType(node) {
  1724. let Bills = projectObj.project.Bills;
  1725. //是100~900章部分、或是计日工部分,叶子清单输出1,父项输出0;
  1726. if (Bills.isBelongOneToSeven(node)||Bills.isBelongDayWork(node)) {
  1727. if (node.children && node.children.length > 0) {
  1728. return node.children[0].sourceType == ModuleNames.ration ? 1 : 0
  1729. }
  1730. return 1 //叶子清单输出1
  1731. } else {
  1732. return 0;
  1733. /* //非100~900章部分,
  1734. // 是暂列金额,判断暂列金额的金额等于0,则输出为0;暂列金额的金额不等于0,则输出为1;
  1735. if (node.data.name && node.data.name.indexOf("暂列金额") != -1) {
  1736. let sum = node.data.feesIndex && node.data.feesIndex.common ? node.data.feesIndex.common.tenderTotalFee : "";
  1737. return gljUtil.isNotEmpty(sum) ? 1 : 0
  1738. } else { //非暂列金额,则判断清单的工程量是否等于0,等于0,则输出0;不等于0,则输出1
  1739. return gljUtil.isNotEmpty(node.data.quantity) ? 1 : 0
  1740. } */
  1741. }
  1742. }
  1743. function bill(bNode, level) {
  1744. let data = bNode.data;
  1745. let CostKind = 3;
  1746. if (data.name && data.name.indexOf("安全生产费") != -1) CostKind = 1;
  1747. if (data.name && data.name.indexOf("暂列金额") != -1) CostKind = 2;
  1748. //1 = 工程量×综合单价;2 = 计算基数×费率;3 = 工程量×单价。
  1749. let CalcType = getCalcType(bNode);
  1750. //取暂估价类型。读取造价书界面的专项暂定列。0=材料暂估价,1=工程设备暂估价,2=专业工程暂估价,没有选的输出为空。
  1751. let ProvisionalType = "";
  1752. if (data.specialProvisional == "材料暂估") ProvisionalType = 0;
  1753. if (data.specialProvisional == "工程设备") ProvisionalType = 1;
  1754. if (data.specialProvisional == "专业工程") ProvisionalType = 2;
  1755. //MpRatio
  1756. let MpRatio = "";
  1757. let MaterialRatio = "";
  1758. let MechRatio = "";
  1759. if (data.quantityCoe) {
  1760. if (data.quantityCoe["labour"]) MpRatio = data.quantityCoe["labour"];
  1761. if (data.quantityCoe["material"]) MaterialRatio = data.quantityCoe["material"];
  1762. if (data.quantityCoe["machine"]) MechRatio = data.quantityCoe["machine"];
  1763. }
  1764. let fail = billNameChecking(bNode,tenderProject.projectInfo.name,fixedFlag)
  1765. //fail: { hint: '错误提示', type: '提示所属(基本就是单位工程名称)' }
  1766. let ListCode = "";
  1767. if (ListCodeMap[data.name]) ListCode = ListCodeMap[data.name];
  1768. if (data.code && data.code != "") ListCode = data.code;
  1769. let qtyFormula = data.feesIndex && data.feesIndex.common ? data.feesIndex.common.tenderTotalFee : "";
  1770. //data.calcBase //data.calcBase ? cbParser.toFExpr(data.calcBase, tenderProject.mainTree.items) : "",
  1771. if (!data.name.includes('暂列金额') && isBidInvitation) {
  1772. if (data.hasOwnProperty('calcBase')) {
  1773. let chkNaN = parseFloat(data.calcBase);
  1774. if (isNaN(chkNaN)) {
  1775. qtyFormula = data.calcBase;
  1776. } else {
  1777. qtyFormula = '';
  1778. }
  1779. } else {
  1780. qtyFormula = '';
  1781. }
  1782. //判断公式(calcBase)是否为正常的计算公式(即非直接输入数量),
  1783. }
  1784. const attrs = [{
  1785. name: "ListCode",
  1786. value: ListCode,
  1787. },
  1788. {
  1789. name: "ListName",
  1790. value: data.name,
  1791. fail:fail
  1792. },
  1793. {
  1794. name: "Unit",
  1795. value: data.unit,
  1796. },
  1797. {
  1798. name: "Num",
  1799. value: data.quantity,
  1800. type: TYPE.DECIMAL,
  1801. toFix:3
  1802. },
  1803. {
  1804. name: "QtyFormula",
  1805. value: qtyFormula,
  1806. type: TYPE.DECIMAL,
  1807. toFix:2
  1808. },
  1809. {
  1810. name: "Price",
  1811. value: 0,//data.feesIndex && data.feesIndex.common ? data.feesIndex.common.tenderUnitFee : "",
  1812. type: TYPE.DECIMAL,
  1813. toFix:2
  1814. },
  1815. {
  1816. name: "Rate",
  1817. value: 100,
  1818. },
  1819. {
  1820. name: "Sum",
  1821. value: 0,//data.feesIndex && data.feesIndex.common ? data.feesIndex.common.tenderTotalFee : "",
  1822. type: TYPE.DECIMAL,
  1823. toFix:2
  1824. },
  1825. {
  1826. name: "ChapterKind",
  1827. value: level > 3 ? 3 : level,
  1828. },
  1829. {
  1830. name: "CostKind",
  1831. value: CostKind,
  1832. },
  1833. {
  1834. name: "CalcType",
  1835. value: CalcType,
  1836. },
  1837. {
  1838. name: "ProvisionalType",
  1839. value: ProvisionalType,
  1840. mustHasValue:true
  1841. },
  1842. {
  1843. name: "MeterRules",
  1844. value: "",
  1845. },
  1846. {
  1847. name: "Content",
  1848. value: data.jobContentText,
  1849. },
  1850. {
  1851. name: "Remarks",
  1852. value: data.remark,
  1853. },
  1854. /* {
  1855. name: "MpRatio",
  1856. value: MpRatio,
  1857. },
  1858. {
  1859. name: "MaterialRatio",
  1860. value: MaterialRatio,
  1861. },
  1862. {
  1863. name: "MechRatio",
  1864. value: MechRatio,
  1865. },
  1866. {
  1867. name: "AdjustedPrice",
  1868. value: data.feesIndex && data.feesIndex.common ? data.feesIndex.common.tenderUnitFee : "",
  1869. },
  1870. {
  1871. name: "AdjustedSums",
  1872. value: data.feesIndex && data.feesIndex.common ? data.feesIndex.common.tenderTotalFee : "",
  1873. }, */
  1874. {
  1875. name: "ItemType",
  1876. value: getItemType(bNode),
  1877. },
  1878. /* {
  1879. name: "FomulaCode",
  1880. value: ""
  1881. }, */
  1882. ];
  1883. //投标、招标控制价时。取单价。
  1884. //招标时,如果是“安全生产费”或“暂列金额”,取单价,否则取0。
  1885. if (isBidSubmission || isControl || CostKind==1 ||CostKind==2 || ProvisionalType === 2) {
  1886. attrs[5].value = data.feesIndex && data.feesIndex.common ? data.feesIndex.common.tenderUnitFee : "";
  1887. attrs[7].value = data.feesIndex && data.feesIndex.common ? data.feesIndex.common.tenderTotalFee : "";
  1888. //暂列金额 数量为0的时候,单价输出0
  1889. if( CostKind==2 && !gljUtil.isNotEmpty(data.quantity)) attrs[5].value = 0
  1890. }
  1891. Element.call(this, "Item", attrs);
  1892. let cc = CostComposition(bNode);
  1893. if (cc) this.children.push(cc);
  1894. this.children.push(CostStructure(data))
  1895. function CostComposition(bNode) {
  1896. // 山东逻辑:如果清单下有计算基数,则需要输出(废弃)
  1897. // 新逻辑:
  1898. // 标准接口文档里,写了只有招标清单,才是完全不输出定额相关数据的
  1899. // 当清单有清单基数和费率,那么应该就是没有定额,不输出定额;
  1900. // 清单没有基数和费率,也没有下挂定额,那么也不输出定额相关字段;
  1901. // 清单有下挂定额、量价,那么输出定额相关数据。
  1902. if (isBidInvitation) return null;
  1903. // let bSet = true;
  1904. // if (bNode.data.hasOwnProperty('calcBase')) {
  1905. // let chkNaN = parseFloat(bNode.data.calcBase);
  1906. // if (!isNaN(chkNaN)) {
  1907. // bSet = false;
  1908. // }
  1909. // } else {
  1910. // bSet = false;
  1911. // }
  1912. // if (!bSet) return null;
  1913. // 1. 如果是招标清单,不输出定额
  1914. // 2. 其他情况,如果清单下有定额,就输出定额
  1915. // 上面写了一堆的废话,TNND,不就2句话解释的事情,非得扯基数判断
  1916. let CostComposition = new emptyElement('CostComposition');
  1917. let Norms = [];
  1918. let Costs = [];
  1919. if (bNode.children && bNode.children.length > 0 && bNode.children[0].sourceType == ModuleNames.ration) {
  1920. for (let r of bNode.children) {
  1921. if (r.data.type == rationType.ration) {
  1922. if(isEmptyRation(r.data)) continue;//定额空行不输出到接口文件中。
  1923. Norms.push(new Ration(r.data));
  1924. } else {
  1925. Costs.push(new Cost(r.data));
  1926. }
  1927. }
  1928. }
  1929. if (Norms.length > 0) CostComposition.children.push(...Norms);
  1930. if (Costs.length > 0) CostComposition.children.push(...Costs);
  1931. if (bNode.data.calcBase) CostComposition.children.push(new Formula(bNode.data));
  1932. return CostComposition.children.length > 0 ? CostComposition : null;
  1933. //定额空行不输出到接口文件中。 //定额空行的判断是:定额编码、定额名称、定额单位、定额单位、定额工程量为零或为空时
  1934. function isEmptyRation(ration){
  1935. return !gljUtil.isNotEmpty(ration.code)&&!gljUtil.isNotEmpty(ration.name)&&!gljUtil.isNotEmpty(ration.unit)&&(!gljUtil.isNotEmpty(ration.quantity)||ration.quantity == 0)
  1936. }
  1937. function Formula(bills) {
  1938. const attrs = [{
  1939. name: "Name",
  1940. value: bills.name
  1941. },
  1942. {
  1943. name: "Formulas",
  1944. value: bills.calcBase
  1945. },
  1946. {
  1947. name: "Ratio",
  1948. value: 1
  1949. },
  1950. {
  1951. name: "Sum",
  1952. // value: bills.feesIndex && bills.feesIndex.common ? bills.feesIndex.common.tenderTotalFee : "",
  1953. value: _getNumValueByExportKind(bills.feesIndex && bills.feesIndex.common ? bills.feesIndex.common.tenderTotalFee : ""),
  1954. type:TYPE.DECIMAL
  1955. },
  1956. {
  1957. name: "Remarks",
  1958. value: bills.remark
  1959. }
  1960. ]
  1961. Element.call(this, "Formula", attrs);
  1962. // 1.Name
  1963. // 名称/描述。取清单的名称。
  1964. // 2.Formulas
  1965. // 计算式。读取计算基数的文本。
  1966. // 取基数计算窗口内容,基数直接转换为金额?参考标准文档的 7.11 及 7.12 节。
  1967. // 7.11是定额的费用,7.12是清单累进基数,主要是估概预算中用到,清单里的不同,所以中山的接口直接输出基数文本。
  1968. // 3.Ratio
  1969. // 系数。输出为1,非必填。
  1970. // 4.Sum
  1971. // 取金额。
  1972. // 5.Remarks
  1973. }
  1974. function Cost(item) {
  1975. let BasePrice = 0;
  1976. if (item.type == rationType.volumePrice) { // 当插入的是量价时,基价读取单价列。
  1977. BasePrice = item.feesIndex && item.feesIndex.common ? item.feesIndex.common.tenderUnitFee : 0
  1978. } else {
  1979. BasePrice = getBasePrice(item.projectGLJID, tenderProject)
  1980. }
  1981. let calcMap = tenderProject.calcProgram.compiledTemplateMaps
  1982. let CostTypeNo = '';
  1983. if (feeRateMap[calcMap[item.programID]]) CostTypeNo = feeRateMap[calcMap[item.programID]];
  1984. const attrs = [{
  1985. name: "Code",
  1986. value: item.code,
  1987. }, {
  1988. name: 'Name',
  1989. value: item.name
  1990. }, {
  1991. name: 'Spec',
  1992. value: item.specs
  1993. }, {
  1994. name: 'Unit',
  1995. value: item.unit
  1996. }, {
  1997. name: 'Num',
  1998. value: item.tenderQuantity
  1999. }, {
  2000. name: 'BasePrice',
  2001. value: BasePrice
  2002. }, {
  2003. name: 'Price',
  2004. value: item.feesIndex && item.feesIndex.common ? item.feesIndex.common.tenderUnitFee : 0
  2005. }, {
  2006. name: 'IsEquipment',
  2007. value: item.subType == gljType.EQUIPMENT ? 1 : 0
  2008. }, {
  2009. name: 'CostTypeNo',
  2010. value: CostTypeNo
  2011. }, {
  2012. name: 'ProfitRate',
  2013. value: getFeeRate(item.programID, 'profit', tenderProject)
  2014. },
  2015. {
  2016. name: 'TaxRate',
  2017. value: getFeeRate(item.programID, 'tax', tenderProject)
  2018. },
  2019. {
  2020. name: 'MpRatio',
  2021. value: item.subType == gljType.LABOUR ? 100 : 0
  2022. },
  2023. {
  2024. name: 'MaterialRatio',
  2025. value: item.subType == gljType.GENERAL_MATERIAL ? 100 : 0
  2026. },
  2027. {
  2028. name: 'MechRatio',
  2029. value: item.subType == gljType.GENERAL_MACHINE ? 100 : 0
  2030. }
  2031. ]
  2032. Element.call(this, "Cost", attrs);
  2033. this.children.push(CostStructure(item));
  2034. }
  2035. function Ration(ration) {
  2036. let calcMap = tenderProject.calcProgram.compiledTemplateMaps
  2037. let CostTypeNo = '';
  2038. if (feeRateMap[calcMap[ration.programID]]) CostTypeNo = feeRateMap[calcMap[ration.programID]];
  2039. const attrs = [{
  2040. name: "NormLibNo",
  2041. value: 'YSDE-000000-2018-86',
  2042. }, {
  2043. name: 'DisplayCode',
  2044. value: ration.code
  2045. }, {
  2046. name: 'Name',
  2047. value: ration.name
  2048. }, {
  2049. name: 'Unit',
  2050. value: ration.unit
  2051. }, {
  2052. name: 'Num',
  2053. value: ration.tenderQuantity
  2054. },
  2055. {
  2056. name: 'CostTypeNo',
  2057. value: CostTypeNo
  2058. },
  2059. {
  2060. name: 'ProfitRate',
  2061. value: getFeeRate(ration.programID, 'profit', tenderProject) //tenderProject.ProfitRate
  2062. },
  2063. {
  2064. name: 'TaxRate',
  2065. value: getFeeRate(ration.programID, 'tax', tenderProject) //tenderProject.TaxRate
  2066. },
  2067. {
  2068. name: 'FabricationCost',
  2069. value: ration.feesIndex && ration.feesIndex.common ? ration.feesIndex.common.tenderTotalFee : 0
  2070. },
  2071. {
  2072. name: 'AdjustStatus',
  2073. value: ration.adjustState
  2074. }
  2075. ]
  2076. Element.call(this, "Norm", attrs);
  2077. this.children.push(CostStructure(ration));
  2078. this.children.push(Consume(ration));
  2079. }
  2080. }
  2081. function Consume(ration) {
  2082. let consume = new emptyElement('Consume');
  2083. for (let rg of ration.rationGLJList) {
  2084. consume.children.push(new ConsumeItem(rg));
  2085. }
  2086. return consume;
  2087. function ConsumeItem(rg) {
  2088. const attrs = [{
  2089. name: "Code",
  2090. value: rg.code,
  2091. }, {
  2092. name: "Consumption",
  2093. value: rg.tenderQuantity
  2094. }];
  2095. Element.call(this, "ConsumeItem", attrs);
  2096. }
  2097. }
  2098. function CostStructure(item) {
  2099. let CostStructure = new emptyElement('CostStructure');
  2100. for (let f of cpFeeTypes) {
  2101. if(itemFeeMap[f.type]) CostStructure.children.push(new CostItem(item,f.type))
  2102. }
  2103. if (CostStructure.children.length == 0) CostStructure.children.push(new CostItem({},""))
  2104. function CostItem(item,type) {
  2105. const attrs = [{
  2106. name: "ItemNo",
  2107. value: itemFeeMap[type],
  2108. }, {
  2109. name: 'Sum',
  2110. value: 0 //fee.tenderTotalFee
  2111. }]
  2112. if ((isBidSubmission || isControl) && item.feesIndex && item.feesIndex[type]) attrs[1].value = item.feesIndex[type].tenderTotalFee;
  2113. Element.call(this, "CostItem", attrs);
  2114. }
  2115. return CostStructure;
  2116. }
  2117. }
  2118. }
  2119. }
  2120. function Params(tenderProject) {
  2121. let feature = tenderProject.property.projectFeature ? tenderProject.property.projectFeature : [];
  2122. let featrueMap = {};
  2123. let baseMap = {};
  2124. for (let f of feature) {
  2125. featrueMap[f.key] = f;
  2126. }
  2127. let baseInfo = _.find(tenderProject.property.basicInformation, {
  2128. dispName: "基本信息",
  2129. });
  2130. for (let i of baseInfo.items) {
  2131. let key = i.key;
  2132. //if (i.dispName == "编制日期") key = "编制时间";
  2133. baseMap[key] = i;
  2134. }
  2135. let BuildType = "";
  2136. if (baseMap["natureConstruction"].value == "新建") BuildType = 0;
  2137. if (baseMap["natureConstruction"].value == "改扩建") BuildType = 1;
  2138. let Terrain = "";
  2139. if (baseMap["terrainCategory"].value == "平原微丘") Terrain = 0;
  2140. if (baseMap["terrainCategory"].value == "山岭重丘") Terrain = 1;
  2141. let DesignSpeed = featrueMap["designSpeed"].value;
  2142. let Structure = "";
  2143. if (featrueMap["pavementStructure"].value == "沥青路面") Structure = 0;
  2144. if (featrueMap["pavementStructure"].value == "水泥混凝土路面") Structure = 1;
  2145. if (featrueMap["pavementStructure"].value == "其他类型路面") Structure = 2;
  2146. let RoadGrade = "";
  2147. if (RoadGradeMap[baseMap["roadGrade"].value]) RoadGrade = RoadGradeMap[baseMap["roadGrade"].value];
  2148. const attrs = [{
  2149. name: "PrjArea",
  2150. value: baseMap["location"] ? baseMap["location"].value : ""
  2151. },
  2152. {
  2153. name: "StartPileNo",
  2154. value: baseMap["startChainages"] ? baseMap["startChainages"].value : "",
  2155. mustHasValue: true
  2156. },
  2157. {
  2158. name: "EndPileNo",
  2159. value: baseMap["endChainages"] ? baseMap["endChainages"].value : "",
  2160. mustHasValue: true
  2161. },
  2162. {
  2163. name: "BuildType",
  2164. value: BuildType,
  2165. },
  2166. {
  2167. name: "Terrain",
  2168. value: Terrain,
  2169. mustHasValue: true
  2170. },
  2171. {
  2172. name: "RoadGrade",
  2173. value: RoadGrade,
  2174. mustHasValue: true
  2175. },
  2176. {
  2177. name: "DesignSpeed",
  2178. value: DesignSpeed,
  2179. mustHasValue: true
  2180. },
  2181. {
  2182. name: "Structure",
  2183. value: Structure,
  2184. mustHasValue: true
  2185. },
  2186. {
  2187. name: "SubgradeWidth",
  2188. value: featrueMap["subgradeWidth"] ? featrueMap["subgradeWidth"].value : "",
  2189. mustHasValue: true
  2190. },
  2191. {
  2192. name: "RoadLength",
  2193. value: featrueMap["roadLength"] ? featrueMap["roadLength"].value : "",
  2194. mustHasValue: true
  2195. },
  2196. {
  2197. name: "BridgeLength",
  2198. value: featrueMap["bridgeLength"] ? featrueMap["bridgeLength"].value : "",
  2199. mustHasValue: true
  2200. },
  2201. {
  2202. name: "TunnelLength",
  2203. value: featrueMap["tunnelLength"] ? featrueMap["tunnelLength"].value : "",
  2204. mustHasValue: true
  2205. },
  2206. {
  2207. name: "BriTunRate",
  2208. value: featrueMap["briTunRate"] ? featrueMap["briTunRate"].value : "",
  2209. mustHasValue: true
  2210. },
  2211. {
  2212. name: "InterchangeNum",
  2213. value: featrueMap["interchangeNum"] ? featrueMap["interchangeNum"].value : "",
  2214. mustHasValue: true
  2215. },
  2216. {
  2217. name: "StubLengths",
  2218. value: featrueMap["stubLengths"] ? featrueMap["stubLengths"].value : "",
  2219. mustHasValue: true
  2220. },
  2221. {
  2222. name: "LaneLength",
  2223. value: featrueMap["laneLength"] ? featrueMap["laneLength"].value : "",
  2224. mustHasValue: true
  2225. },
  2226. ];
  2227. Element.call(this, "Params", attrs);
  2228. }
  2229. function SummaryOfCost(totalItem, proItem,safeItem,oneToSevenItem,feature) {
  2230. let attrs = [{
  2231. name: "TenderSumLimit",
  2232. value: totalItem.feesIndex && totalItem.feesIndex.common && totalItem.feesIndex.common.tenderTotalFee ? totalItem.feesIndex.common.tenderTotalFee : 0,
  2233. type: TYPE.DECIMAL,
  2234. toFix:2,
  2235. },
  2236. {
  2237. name: "BidTotal",
  2238. value: totalItem.feesIndex && totalItem.feesIndex.common && totalItem.feesIndex.common.tenderTotalFee ? totalItem.feesIndex.common.tenderTotalFee : 0,
  2239. type: TYPE.DECIMAL,
  2240. toFix:2,
  2241. },
  2242. {
  2243. name: "BillTotal",
  2244. value: oneToSevenItem.feesIndex && oneToSevenItem.feesIndex.common && oneToSevenItem.feesIndex.common.tenderTotalFee ? oneToSevenItem.feesIndex.common.tenderTotalFee : 0,
  2245. type: TYPE.DECIMAL,
  2246. toFix:2,
  2247. },
  2248. {
  2249. name: "CostForHSE",
  2250. value: safeItem && safeItem.feesIndex && safeItem.feesIndex.common && safeItem.feesIndex.common.tenderTotalFee ? safeItem.feesIndex.common.tenderTotalFee : 0,
  2251. type: TYPE.DECIMAL,
  2252. toFix:2,
  2253. },
  2254. {
  2255. name: "ProvisionalSums",
  2256. value: proItem.feesIndex && proItem.feesIndex.common && proItem.feesIndex.common.tenderTotalFee ? proItem.feesIndex.common.tenderTotalFee : 0,
  2257. type: TYPE.DECIMAL,
  2258. toFix:2,
  2259. },
  2260. {
  2261. name: "Appraisal",
  2262. // value: totalItem.feesIndex && totalItem.feesIndex.estimate && totalItem.feesIndex.estimate.tenderTotalFee ? totalItem.feesIndex.estimate.tenderTotalFee : 0,
  2263. value: 0,
  2264. type: TYPE.DECIMAL,
  2265. toFix:2,
  2266. },
  2267. ];
  2268. if (isBidInvitation) {
  2269. attrs.splice(0, 3) //招标
  2270. }
  2271. //if (isControl) attrs.splice(1, 5); //控制价
  2272. if (isBidSubmission) { //投标文件时,读工程特征中的 招标控制价 值
  2273. let tenderSumLimit = _.find(feature, { "key": "tenderSumLimit" });
  2274. if(tenderSumLimit) attrs[0].value = tenderSumLimit.value
  2275. }
  2276. Element.call(this, "SummaryOfCost", attrs);
  2277. }
  2278. function MakeInfo(tenderProject) {
  2279. let property = tenderProject.property;
  2280. let baseMap = {};
  2281. let baseInfo = _.find(property.basicInformation, {
  2282. dispName: "基本信息",
  2283. });
  2284. for (let i of baseInfo.items) {
  2285. let key = i.key;
  2286. //if (i.dispName == "编制日期") key = "编制时间";
  2287. baseMap[key] = i;
  2288. }
  2289. //mustHasValue
  2290. const attrs = [{
  2291. name: "ValuationModel",
  2292. value: property.taxType,
  2293. },
  2294. {
  2295. name: "Manage",
  2296. value: baseMap["constructingUnit"] ? baseMap["constructingUnit"].value : "",
  2297. },
  2298. {
  2299. name: "Designer",
  2300. value: baseMap["designUnit"] ? baseMap["designUnit"].value : "",
  2301. mustHasValue:true
  2302. },
  2303. {
  2304. name: "Compile",
  2305. value: baseMap["compileUnit"] ? baseMap["compileUnit"].value : "",
  2306. },
  2307. {
  2308. name: "CompileApprover",
  2309. value: baseMap["compileApprover"] ? baseMap["compileApprover"].value : "",
  2310. },
  2311. {
  2312. name: "CompileCertNo",
  2313. value: baseMap["compileCertNo"] ? baseMap["compileCertNo"].value : "",
  2314. mustHasValue:true
  2315. },
  2316. {
  2317. name: "CompileDate",
  2318. value: baseMap["compileDate"] && baseMap["compileDate"].value != "" ? baseMap["compileDate"].value + "T00:00:00" : "",
  2319. mustHasValue:true
  2320. },
  2321. {
  2322. name: "Review",
  2323. value: baseMap["reviewUnit"] ? baseMap["reviewUnit"].value : "",
  2324. mustHasValue:true
  2325. },
  2326. {
  2327. name: "ReviewApprover",
  2328. value: baseMap["reviewApprover"] ? baseMap["reviewApprover"].value : "",
  2329. mustHasValue:true
  2330. },
  2331. {
  2332. name: "ReviewCertNo",
  2333. value: baseMap["reviewCertNo"] ? baseMap["reviewCertNo"].value : "",
  2334. mustHasValue:true
  2335. },
  2336. {
  2337. name: "ReviewDate",
  2338. value: baseMap["reviewDate"] && baseMap["reviewDate"].value != "" ? baseMap["reviewDate"].value + "T00:00:00" : "",
  2339. mustHasValue:true
  2340. },
  2341. {
  2342. name: "Examine",
  2343. value: baseMap["examineUnit"] ? baseMap["examineUnit"].value : "",
  2344. mustHasValue:true
  2345. },
  2346. {
  2347. name: "ExamineApprover",
  2348. value: baseMap["examineApprover"] ? baseMap["examineApprover"].value : "",
  2349. mustHasValue:true
  2350. },
  2351. {
  2352. name: "ExamineCertNo",
  2353. value: baseMap["examineCertNo"] ? baseMap["examineCertNo"].value : "",
  2354. mustHasValue:true
  2355. },
  2356. {
  2357. name: "ExamineDate",
  2358. value: baseMap["examineDate"] && baseMap["examineDate"].value != "" ? baseMap["examineDate"].value + "T00:00:00" : "",
  2359. mustHasValue:true
  2360. },
  2361. {
  2362. name: "CompileExplain",
  2363. value: baseMap["compileExplain"] ? baseMap["compileExplain"].value : "",
  2364. mustHasValue:true
  2365. },
  2366. {
  2367. name: "ExamineExplain",
  2368. value: baseMap["examineExplain"] ? baseMap["examineExplain"].value : "",
  2369. mustHasValue:true
  2370. },
  2371. {
  2372. name: "ProjectExplain",
  2373. value: baseMap["projectExplain"] ? baseMap["projectExplain"].value : "",
  2374. mustHasValue:true
  2375. },
  2376. {
  2377. name: "Bidder",
  2378. // value: baseMap["bidderCompany"] ? baseMap["bidderCompany"].value : "",
  2379. value: baseMap["bidderName"] ? baseMap["bidderName"].value : "",
  2380. mustHasValue:true
  2381. },
  2382. ];
  2383. if (isBidInvitation) { //招标文件,则以下的8、12~18则不输出
  2384. attrs.splice(11, 7);
  2385. attrs.splice(7, 1);
  2386. }
  2387. Element.call(this, "MakeInfo", attrs);
  2388. }
  2389. let data = new CprjInfo(projectData.name);
  2390. data.children.push(new SystemInfo(projectData));
  2391. data.children.push(new CostBasis());
  2392. let seriNo = 1;
  2393. let Rates = [];
  2394. let Practs = [];
  2395. let EprjInfos = [];
  2396. for (let c of projectData.children) {
  2397. let tenderProject = tenderDetailMap[c.ID];
  2398. let feeRataDatas = tenderProject.FeeRate.datas;
  2399. Rates.push(new Rate(tenderProject, feeRataDatas, seriNo));
  2400. Practs.push(new Pract(tenderProject, seriNo));
  2401. EprjInfos.push(new EprjInfo(tenderProject));
  2402. seriNo++;
  2403. }
  2404. data.children.push(...Rates,...Practs,...EprjInfos);
  2405. return [{
  2406. data: data,
  2407. exportKind: exportKind,
  2408. fileName: projectData.name + INTERFACE_CONFIG[areaKey]["fileSuffix"][exportKind],
  2409. }, ];
  2410. }
  2411. // 山东需求,要有密文校验信息(SM3算法,在界面上已导入sm3对象)
  2412. /**
  2413. * SM3加密主函数
  2414. * @param msg
  2415. * @returns
  2416. */
  2417. function sm3Digest(msg){
  2418. let hashHex = sm3(msg);
  2419. // return hashHex;
  2420. return hashHex.toUpperCase();
  2421. }
  2422. return {
  2423. entry,
  2424. };
  2425. })();