支表1 中期支付证书.js 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851
  1. {
  2. "ID_KEY": "DUMMY_FLOW_SAMPLE",
  3. "GROUP_KEY": "RPT_支表13-1 中间计量表(总量控制)_SAMPLE_TPL",
  4. "主信息": {
  5. "单位": "厘米",
  6. "版本": {
  7. "主版本": "3",
  8. "功能版本": "0"
  9. },
  10. "页边距": {
  11. "Top": "1.0",
  12. "Left": "1.0",
  13. "Right": "1.0",
  14. "Bottom": "1.0"
  15. },
  16. "报表名称": "支表13-1 中间计量表(总量控制)",
  17. "打印页面_信息": {
  18. "方向": "LANDSCAPE",
  19. "页规格": "A4"
  20. }
  21. },
  22. "布局框_集合": [
  23. {
  24. "Alignment": "Top",
  25. "DisplayType": "EveryPage",
  26. "Height": "1.6",
  27. "Name": "TitleBand",
  28. "control": "Default",
  29. "style": "Default_None",
  30. "MergeBorder": "F"
  31. },
  32. {
  33. "Alignment": "Top",
  34. "DisplayType": "EveryPage",
  35. "Height": "1.19",
  36. "Name": "HeaderBand",
  37. "control": "Default",
  38. "style": "Default_None",
  39. "MergeBorder": "F"
  40. },
  41. {
  42. "Alignment": "Bottom",
  43. "DisplayType": "EveryPage",
  44. "Height": "1",
  45. "Name": "FooterBand",
  46. "control": "Default",
  47. "style": "Default_None",
  48. "MergeBorder": "F"
  49. },
  50. {
  51. "Alignment": "Fulfill",
  52. "DisplayType": "EveryPage",
  53. "Name": "Report Body",
  54. "control": "Default",
  55. "style": "BORDER_ALL_AROUND",
  56. "MergeBorder": "T",
  57. "band_s": [
  58. {
  59. "Alignment": "Top",
  60. "DisplayType": "EveryPage",
  61. "Height": "1",
  62. "Name": "ColumnBand",
  63. "control": "Default",
  64. "style": "Default_None",
  65. "MergeBorder": "F"
  66. },
  67. {
  68. "Alignment": "Bottom",
  69. "DisplayType": "EveryPage",
  70. "Height": "5.45",
  71. "Name": "newBand_1",
  72. "control": "Default",
  73. "style": "Default_None",
  74. "MergeBorder": "F"
  75. },
  76. {
  77. "Alignment": "Fulfill",
  78. "DisplayType": "EveryPage",
  79. "Name": "ContentBand",
  80. "control": "Default",
  81. "style": "Default_None",
  82. "MergeBorder": "F"
  83. }
  84. ]
  85. }
  86. ],
  87. "计算式_集合": [
  88. {
  89. "Name": "获取打印时间",
  90. "run_type": "before_paging",
  91. "expression": "let rpt = $JE.P(5001,$CURRENT_RPT); let dt = new Date(); rpt.Default_Value = dt.Format($ME.format); rpt = null;",
  92. "format": "yyyy 年 M 月 dd 日"
  93. },
  94. {
  95. "Name": "获取当前页",
  96. "run_type": "before_output",
  97. "expression": "let ttp = $JE.P(5010,$CURRENT_RPT); ttp.Default_Value = $ME.format.replace('($S)',$JE.getCurrentPage($CURRENT_RPT)); ttp = null;",
  98. "format": "第 ($S) 页"
  99. },
  100. {
  101. "Name": "获取总页数",
  102. "run_type": "before_output",
  103. "expression": "let ttp = $JE.P(5011,$CURRENT_RPT); ttp.Default_Value = $ME.format.replace('($S)',$JE.getTotalPage($CURRENT_RPT)); ttp = null;",
  104. "format": "共 ($S) 页"
  105. },
  106. {
  107. "Name": "综合设置",
  108. "run_type": "before_analyzing",
  109. "expression": "let Name = $JE.F(2511,$CURRENT_RPT);//名称\nlet PFbg = $JE.F(2912,$CURRENT_RPT);//批复变更金额\nlet BGqd = $JE.F(2903,$CURRENT_RPT);//变更清单编号\nlet ZJ = $JE.F(2509,$CURRENT_RPT);//章节\nlet TZ = $JE.F(2523,$CURRENT_RPT);\nlet Zjdm = $JE.F(1132,$CURRENT_RPT);//章节代码\nlet Hname = $JE.F(2701,$CURRENT_RPT);//合同支付名称\nlet HGtp = $JE.F(2703,$CURRENT_RPT);\nlet HPre = $JE.F(2704,$CURRENT_RPT);\nlet HEnd = $JE.F(2705,$CURRENT_RPT);\n\n//新指标\nlet NewBGH = $JE.F(12293,$CURRENT_RPT);\nlet XH = $JE.F(12294,$CURRENT_RPT);\nlet KkgyfkE = $JE.F(12295,$CURRENT_RPT);//扣开工预付款-累计\nlet KkgyfkG = $JE.F(12296,$CURRENT_RPT);\nlet ZlbzjP = $JE.F(12297,$CURRENT_RPT);//质量保证金额-到上期\nlet ZlbzjG = $JE.F(12298,$CURRENT_RPT);\nlet SjbljP = $JE.F(12299,$CURRENT_RPT);//审计保留金-到上期\nlet SjbljG = $JE.F(12300,$CURRENT_RPT);\nlet SjzfP = $JE.F(12301,$CURRENT_RPT);//实际支付\nlet SjzfG = $JE.F(12302,$CURRENT_RPT);\nlet SjzfE = $JE.F(12303,$CURRENT_RPT);\nlet BqyfG = $JE.F(12304,$CURRENT_RPT);//本期应付\nlet BFB = $JE.F(12305,$CURRENT_RPT);//比例\nlet NewPFbg = $JE.F(12310,$CURRENT_RPT);//批复变更清单\nlet NewPF = $JE.F(12311,$CURRENT_RPT);//批复变更清单\n\n\nlet fLen1 = $JE.getFieldDataLen(Name, $CURRENT_DATA);\nlet fLen2 = $JE.getFieldDataLen(Hname, $CURRENT_DATA);//合同支付名称长度\nlet fLen3 = $JE.getFieldDataLen(BGqd, $CURRENT_DATA);//变更清单长度\n\n\n//合同支付内容赋值\nlet numb=0;\nfor(let k=0; k<fLen2; k++){\n let HnameT = $JE.getFieldValue(Hname, $CURRENT_DATA, k, '');\n if(HnameT==='扣回开工预付款'){\n\t $JE.setFieldValue(KkgyfkE, $CURRENT_DATA, 0, $JE.getFieldValue(HEnd, $CURRENT_DATA, k, ''));\n\t $JE.setFieldValue(KkgyfkG, $CURRENT_DATA, 0, $JE.getFieldValue(HGtp, $CURRENT_DATA, k, ''));\n }\n \n if(HnameT==='质保金5%'){\n\t $JE.setFieldValue(ZlbzjP, $CURRENT_DATA, 0, $JE.getFieldValue(HEnd, $CURRENT_DATA, k, ''));\n\t $JE.setFieldValue(ZlbzjG, $CURRENT_DATA, 0, $JE.getFieldValue(HGtp, $CURRENT_DATA, k, ''));\n }\n \n if(HnameT==='审计保留金10%'){\n\t $JE.setFieldValue(SjbljP, $CURRENT_DATA, 0, $JE.getFieldValue(HEnd, $CURRENT_DATA, k, ''));\n\t $JE.setFieldValue(SjbljG, $CURRENT_DATA, 0, $JE.getFieldValue(HGtp, $CURRENT_DATA, k, ''));\n }\n \n if(HnameT==='本期实付'){\n\t $JE.setFieldValue(SjzfP, $CURRENT_DATA, 0, $JE.getFieldValue(HPre, $CURRENT_DATA, k, ''));\n\t $JE.setFieldValue(SjzfG, $CURRENT_DATA, 0, $JE.getFieldValue(HGtp, $CURRENT_DATA, k, ''));\n\t $JE.setFieldValue(SjzfE, $CURRENT_DATA, 0, $JE.getFieldValue(HEnd, $CURRENT_DATA, k, ''));\n\t numb = $JE.getFieldValue(HEnd, $CURRENT_DATA, k, '');\n\t \n //console.log(numb);\n }\n if(HnameT==='本期应付'){\n\t $JE.setFieldValue(BqyfG, $CURRENT_DATA, 0, $JE.getFieldValue(HGtp, $CURRENT_DATA, k, ''));\n }\n if(HnameT==='本期完成计量'){\n\t let sum = $JE.getFieldValue(HEnd, $CURRENT_DATA, k, '');\n\t $JE.setFieldValue(BFB, $CURRENT_DATA, 0, $CTX_HELPER.mul($CTX_HELPER.div(numb, sum, 4),100));\n\t //console.log(sum);\n }\n \n}\n\n\n\n/*一、变更清单对应章节配置:\n1.先确定好未计入章节的章次*/\nlet aryy=[];\nfor(let m=0; m<fLen1; m++){\n let ZJT = $JE.getFieldValue(ZJ, $CURRENT_DATA, m, '');\n\tlet NameT = $JE.getFieldValue(Name, $CURRENT_DATA, m, '');\n if((ZJT==='' || ZJT===null) && NameT!=='不可预见费(暂列金额)'){\n\t aryy.push('999');\n\t}\n\telse{\n\t aryy.push(ZJT);\n\t}\n}\n//判断未计入章节,存在100-1400 返回true,反之false\nfunction trry(T){\n\tfor(let SX=0; SX<aryy.length; SX++){\n\t\t\tif(T==aryy[SX]){\n return true;\n\t\t\t break;\n\t\t\t}\t\n\t\t}\n\treturn false;\t\n}\n\n//2.判断变更清单所属章节:100-900、1000-1400、999三种\nlet ZJcodeKey=[];\nfor(let n=0; n<fLen3; n++){\n\tlet BGqdT = $JE.getFieldValue(BGqd, $CURRENT_DATA, n, '');\n\tlet firstIdx = BGqdT.indexOf('-');//获取清单'-'之前的长度\n\tlet QycodeKey='';\n\n\tif(firstIdx===3){//清单长度判断:为3或者为4的清单\n\t\tQycodeKey=BGqdT.slice(0,1).toString()+'00';//\n\t}else if(firstIdx===4){\n\t\tQycodeKey=BGqdT.slice(0,2).toString()+'00';\n\t}\n\tconsole.log(QycodeKey);\n\tif(trry(QycodeKey)){\n\t ZJcodeKey.push(QycodeKey);\n\t}else{\n\t ZJcodeKey.push('999');//对未计入章节的变更清单赋值章次\n\t}\t\n}\nconsole.log(ZJcodeKey);\n//3.赋值\nfor(let p=0; p<aryy.length; p++){\n\tlet arryB=aryy[p];\n\tlet sumHJ=0;\n\tfor(let u=0; u<ZJcodeKey.length; u++){\n\t let PFbgT = $JE.getFieldValue(PFbg, $CURRENT_DATA, u, '');\n\t if(aryy[p]==ZJcodeKey[u]){\n\t\t sumHJ= $CTX_HELPER.add(sumHJ, PFbgT);\n\t }\n\t \n\t}\n\t$JE.setFieldValue(NewPF, $CURRENT_DATA, p, sumHJ);\n\t\n}\n\n\n//新的台账+变更赋值\nfor(let i=0; i<fLen1; i++){\n let PFbgT = $JE.getFieldValue(NewPF, $CURRENT_DATA, i, '');\n let TZT = $JE.getFieldValue(TZ, $CURRENT_DATA, i, '');\n \n $JE.setFieldValue(NewBGH, $CURRENT_DATA, i, $CTX_HELPER.add(TZT,PFbgT));\n $JE.setFieldValue(XH, $CURRENT_DATA, i, i+1);\n}\n\n\n//移除空白行\nlet Code = $JE.F(2509,$CURRENT_RPT);\nlet EV1 = $JE.F(2553,$CURRENT_RPT);\nlet NULLtxt = $JE.F(1199,$CURRENT_RPT);\nlet EndTP = $JE.F(2548,$CURRENT_RPT);\nlet PreTP = $JE.F(2542,$CURRENT_RPT);\nlet GtafE = $JE.F(2535,$CURRENT_RPT);\n\nfor(let i = 0; i < fLen1; i++){\n\tlet nameH = $JE.getFieldValue(Name, $CURRENT_DATA, i, '');\n\tif(nameH === '未计入章节清单项' ){\n\t\tif(($JE.getFieldValue(EndTP, $CURRENT_DATA, i, 0) === 0 && $JE.getFieldValue(GtafE, $CURRENT_DATA, i, 0) === 0)){\n\t\t $JE.removeFieldValue(XH, $CURRENT_DATA, i);\n\t\t\t$JE.removeFieldValue(Code, $CURRENT_DATA, i);\n\t\t\t$JE.removeFieldValue(Name, $CURRENT_DATA, i);\n\t\t\t$JE.removeFieldValue(EV1, $CURRENT_DATA, i);\n\t\t\t$JE.removeFieldValue(TZ, $CURRENT_DATA, i);\n\t\t\t$JE.removeFieldValue(NewPF, $CURRENT_DATA, i);\n\t\t\t$JE.removeFieldValue(NewBGH, $CURRENT_DATA, i);\n\t\t\t$JE.removeFieldValue(NULLtxt, $CURRENT_DATA, i);\n\t\t\t$JE.removeFieldValue(EndTP, $CURRENT_DATA, i);\n\t\t\t$JE.removeFieldValue(PreTP, $CURRENT_DATA, i);\n\t\t\t$JE.removeFieldValue(GtafE, $CURRENT_DATA, i);\n\t\t}\n\t}\n}\n\n\n\n",
  110. "format": ""
  111. },
  112. {
  113. "Name": "表头处理",
  114. "run_type": "before_analyzing",
  115. "expression": "let QS=$JE.F(1300,$CURRENT_RPT);//期数\nlet HTBH=$JE.F(1102,$CURRENT_RPT);//合同编号\n\nlet NewTxt=$JE.F(12306,$CURRENT_RPT);//合同编号+期数\n\nlet HTBHJ=$JE.getFieldValue(HTBH, $CURRENT_DATA, 0, '');\nlet QSJ=$JE.getFieldValue(QS, $CURRENT_DATA, 0, '');\n//期数前缀补零\nif(QSJ<10){\n\tlet s = '0'+QSJ.toString(); \n\t$JE.setFieldValue(NewTxt, $CURRENT_DATA, 0, HTBHJ+'-'+s);\n}\nelse{\n\t$JE.setFieldValue(NewTxt, $CURRENT_DATA, 0, HTBHJ+'-'+QSJ);\n}\n",
  116. "format": ""
  117. }
  118. ],
  119. "流水式表_信息": {
  120. "离散信息": [
  121. {
  122. "BandName": "TitleBand",
  123. "text_s": [
  124. {
  125. "Label": "支表1 中期支付证书",
  126. "font": "ReportTitle_Main",
  127. "control": "Title",
  128. "style": "Default_None",
  129. "Title": "",
  130. "area": {
  131. "Left": 0,
  132. "Right": "100.00",
  133. "Top": 0,
  134. "Bottom": "100.00",
  135. "H_CalculationType": "percentage",
  136. "V_CalculationType": "percentage"
  137. }
  138. }
  139. ]
  140. },
  141. {
  142. "BandName": "HeaderBand",
  143. "discrete_field_s": [
  144. {
  145. "FieldID": 1101,
  146. "font": "Content",
  147. "control": "Column_Left",
  148. "style": "Default_None",
  149. "Prefix": "项目名称:",
  150. "isAutoHeight": false,
  151. "area": {
  152. "Left": 0,
  153. "Right": "30",
  154. "Top": 0,
  155. "Bottom": "50",
  156. "H_CalculationType": "percentage",
  157. "V_CalculationType": "percentage"
  158. }
  159. },
  160. {
  161. "FieldID": 1103,
  162. "font": "Content",
  163. "control": "Column_Left",
  164. "style": "Default_None",
  165. "Prefix": "合同段:",
  166. "isAutoHeight": false,
  167. "area": {
  168. "Left": "30",
  169. "Right": "60",
  170. "Top": 0,
  171. "Bottom": "50",
  172. "H_CalculationType": "percentage",
  173. "V_CalculationType": "percentage"
  174. }
  175. },
  176. {
  177. "FieldID": 1140,
  178. "font": "Content",
  179. "control": "Column_Left",
  180. "style": "Default_None",
  181. "Prefix": "监理单位:",
  182. "isAutoHeight": false,
  183. "area": {
  184. "Left": "60",
  185. "Right": "90",
  186. "Top": 0,
  187. "Bottom": "50",
  188. "H_CalculationType": "percentage",
  189. "V_CalculationType": "percentage"
  190. }
  191. },
  192. {
  193. "ParamID": "5010",
  194. "font": "Content",
  195. "control": "NewContent_Center",
  196. "style": "Default_None",
  197. "Default_Value": "第 X 页",
  198. "area": {
  199. "Left": "95",
  200. "Right": "100",
  201. "Top": 0,
  202. "Bottom": "50",
  203. "H_CalculationType": "percentage",
  204. "V_CalculationType": "percentage"
  205. }
  206. },
  207. {
  208. "ParamID": "5011",
  209. "font": "Content",
  210. "control": "NewContent_Center",
  211. "style": "Default_None",
  212. "Default_Value": "共 X 页",
  213. "area": {
  214. "Left": "90",
  215. "Right": "95",
  216. "Top": 0,
  217. "Bottom": "50",
  218. "H_CalculationType": "percentage",
  219. "V_CalculationType": "percentage"
  220. }
  221. },
  222. {
  223. "FieldID": 1134,
  224. "font": "Content",
  225. "control": "Column_Left",
  226. "style": "Default_None",
  227. "Prefix": "施工单位:",
  228. "isAutoHeight": false,
  229. "area": {
  230. "Left": 0,
  231. "Right": "30",
  232. "Top": "50",
  233. "Bottom": 100,
  234. "H_CalculationType": "percentage",
  235. "V_CalculationType": "percentage"
  236. }
  237. },
  238. {
  239. "FieldID": 1312,
  240. "font": "Content",
  241. "control": "Column_Left",
  242. "style": "Default_None",
  243. "Prefix": "截止日期:",
  244. "isAutoHeight": false,
  245. "area": {
  246. "Left": "30",
  247. "Right": "60",
  248. "Top": "50",
  249. "Bottom": 100,
  250. "H_CalculationType": "percentage",
  251. "V_CalculationType": "percentage"
  252. }
  253. },
  254. {
  255. "FieldID": 12306,
  256. "font": "Content",
  257. "control": "Column_Left",
  258. "style": "Default_None",
  259. "Prefix": "编号:",
  260. "isAutoHeight": false,
  261. "area": {
  262. "Left": "60",
  263. "Right": "80",
  264. "Top": "50",
  265. "Bottom": 100,
  266. "H_CalculationType": "percentage",
  267. "V_CalculationType": "percentage"
  268. }
  269. }
  270. ],
  271. "text_s": [
  272. {
  273. "Label": "货币单位:人民币(元)",
  274. "font": "Content",
  275. "control": "Column_Right",
  276. "style": "Default_None",
  277. "Title": "",
  278. "area": {
  279. "Left": "80",
  280. "Right": "100",
  281. "Top": "50",
  282. "Bottom": "100.00",
  283. "H_CalculationType": "percentage",
  284. "V_CalculationType": "percentage"
  285. }
  286. }
  287. ]
  288. },
  289. {
  290. "BandName": "FooterBand",
  291. "discrete_field_s": [
  292. {
  293. "FieldID": 12000,
  294. "font": "Content",
  295. "control": "Column_Left",
  296. "style": "Default_None",
  297. "isAutoHeight": false,
  298. "area": {
  299. "Left": "4",
  300. "Right": "18",
  301. "Top": 0,
  302. "Bottom": 100,
  303. "H_CalculationType": "percentage",
  304. "V_CalculationType": "percentage"
  305. }
  306. },
  307. {
  308. "FieldID": 12001,
  309. "font": "Content",
  310. "control": "Column_Left",
  311. "style": "Default_None",
  312. "isAutoHeight": false,
  313. "area": {
  314. "Left": "23",
  315. "Right": "38",
  316. "Top": 0,
  317. "Bottom": 100,
  318. "H_CalculationType": "percentage",
  319. "V_CalculationType": "percentage"
  320. }
  321. },
  322. {
  323. "FieldID": 12002,
  324. "font": "Content",
  325. "control": "Column_Left",
  326. "style": "Default_None",
  327. "isAutoHeight": false,
  328. "area": {
  329. "Left": "46",
  330. "Right": "58",
  331. "Top": 0,
  332. "Bottom": 100,
  333. "H_CalculationType": "percentage",
  334. "V_CalculationType": "percentage"
  335. }
  336. },
  337. {
  338. "FieldID": 12003,
  339. "font": "Content",
  340. "control": "Column_Left",
  341. "style": "Default_None",
  342. "isAutoHeight": false,
  343. "area": {
  344. "Left": "68",
  345. "Right": "80",
  346. "Top": 0,
  347. "Bottom": 100,
  348. "H_CalculationType": "percentage",
  349. "V_CalculationType": "percentage"
  350. }
  351. },
  352. {
  353. "FieldID": 12004,
  354. "font": "Content",
  355. "control": "Column_Left",
  356. "style": "Default_None",
  357. "isAutoHeight": false,
  358. "area": {
  359. "Left": "90",
  360. "Right": "100",
  361. "Top": 0,
  362. "Bottom": 100,
  363. "H_CalculationType": "percentage",
  364. "V_CalculationType": "percentage"
  365. }
  366. }
  367. ],
  368. "text_s": [
  369. {
  370. "Label": "制表:",
  371. "font": "Content",
  372. "control": "Column_Left",
  373. "style": "Default_None",
  374. "Title": "",
  375. "area": {
  376. "Left": 0,
  377. "Right": "4",
  378. "Top": 0,
  379. "Bottom": "100.00",
  380. "H_CalculationType": "percentage",
  381. "V_CalculationType": "percentage"
  382. }
  383. },
  384. {
  385. "Label": "承包人:",
  386. "font": "Content",
  387. "control": "Column_Left",
  388. "style": "Default_None",
  389. "Title": "",
  390. "area": {
  391. "Left": "18",
  392. "Right": "23",
  393. "Top": 0,
  394. "Bottom": "100.00",
  395. "H_CalculationType": "percentage",
  396. "V_CalculationType": "percentage"
  397. }
  398. },
  399. {
  400. "Label": "监理工程师:",
  401. "font": "Content",
  402. "control": "Column_Left",
  403. "style": "Default_None",
  404. "Title": "",
  405. "area": {
  406. "Left": "38",
  407. "Right": "46",
  408. "Top": 0,
  409. "Bottom": "100.00",
  410. "H_CalculationType": "percentage",
  411. "V_CalculationType": "percentage"
  412. }
  413. },
  414. {
  415. "Label": "业主技术负责人:",
  416. "font": "Content",
  417. "control": "Column_Left",
  418. "style": "Default_None",
  419. "Title": "",
  420. "area": {
  421. "Left": "58",
  422. "Right": "68",
  423. "Top": 0,
  424. "Bottom": "100.00",
  425. "H_CalculationType": "percentage",
  426. "V_CalculationType": "percentage"
  427. }
  428. },
  429. {
  430. "Label": "业主项目负责人:",
  431. "font": "Content",
  432. "control": "Column_Left",
  433. "style": "Default_None",
  434. "Title": "",
  435. "area": {
  436. "Left": "80",
  437. "Right": "90",
  438. "Top": 0,
  439. "Bottom": "100.00",
  440. "H_CalculationType": "percentage",
  441. "V_CalculationType": "percentage"
  442. }
  443. }
  444. ]
  445. }
  446. ],
  447. "流水式表_列": {
  448. "BandName": "ColumnBand",
  449. "text_s": [
  450. {
  451. "Label": "序号",
  452. "font": "Content",
  453. "control": "Column",
  454. "style": "Default_Normal",
  455. "Title": "",
  456. "area": {
  457. "Left": 0,
  458. "Right": "3.76",
  459. "Top": 0,
  460. "Bottom": "100.00",
  461. "H_CalculationType": "percentage",
  462. "V_CalculationType": "percentage"
  463. }
  464. },
  465. {
  466. "Label": "章次",
  467. "font": "Content",
  468. "control": "Column",
  469. "style": "Default_Normal",
  470. "Title": "",
  471. "area": {
  472. "Left": "3.76",
  473. "Right": "9.02",
  474. "Top": 0,
  475. "Bottom": "100.00",
  476. "H_CalculationType": "percentage",
  477. "V_CalculationType": "percentage"
  478. }
  479. },
  480. {
  481. "Label": "科目内容",
  482. "font": "Content",
  483. "control": "Column",
  484. "style": "Default_Normal",
  485. "Title": "",
  486. "area": {
  487. "Left": "9.02",
  488. "Right": "22.84",
  489. "Top": 0,
  490. "Bottom": "100.00",
  491. "H_CalculationType": "percentage",
  492. "V_CalculationType": "percentage"
  493. }
  494. },
  495. {
  496. "Label": "原合同金额",
  497. "font": "Content",
  498. "control": "Column",
  499. "style": "Default_Normal",
  500. "Title": "",
  501. "area": {
  502. "Left": "22.84",
  503. "Right": "31.67",
  504. "Top": 0,
  505. "Bottom": "100.00",
  506. "H_CalculationType": "percentage",
  507. "V_CalculationType": "percentage"
  508. }
  509. },
  510. {
  511. "Label": "设计修正金额",
  512. "font": "Content",
  513. "control": "Column",
  514. "style": "Default_Normal",
  515. "Title": "",
  516. "area": {
  517. "Left": "31.67",
  518. "Right": "40.41",
  519. "Top": 0,
  520. "Bottom": "100.00",
  521. "H_CalculationType": "percentage",
  522. "V_CalculationType": "percentage"
  523. }
  524. },
  525. {
  526. "Label": "变更设计增减|金额",
  527. "font": "Content",
  528. "control": "Column",
  529. "style": "Default_Normal",
  530. "Title": "",
  531. "area": {
  532. "Left": "40.41",
  533. "Right": "49.25",
  534. "Top": 0,
  535. "Bottom": "100.00",
  536. "H_CalculationType": "percentage",
  537. "V_CalculationType": "percentage"
  538. }
  539. },
  540. {
  541. "Label": "实际金额",
  542. "font": "Content",
  543. "control": "Column",
  544. "style": "Default_Normal",
  545. "Title": "",
  546. "area": {
  547. "Left": "49.25",
  548. "Right": "58.08",
  549. "Top": 0,
  550. "Bottom": "100.00",
  551. "H_CalculationType": "percentage",
  552. "V_CalculationType": "percentage"
  553. }
  554. },
  555. {
  556. "Label": "废置金额",
  557. "font": "Content",
  558. "control": "Column",
  559. "style": "Default_Normal",
  560. "Title": "",
  561. "area": {
  562. "Left": "58.08",
  563. "Right": "66.82",
  564. "Top": 0,
  565. "Bottom": "100.00",
  566. "H_CalculationType": "percentage",
  567. "V_CalculationType": "percentage"
  568. }
  569. },
  570. {
  571. "Label": "截止上期末累|计完成金额",
  572. "font": "Content",
  573. "control": "Column",
  574. "style": "Default_Normal",
  575. "Title": "",
  576. "area": {
  577. "Left": "66.82",
  578. "Right": "75.66",
  579. "Top": 0,
  580. "Bottom": "100.00",
  581. "H_CalculationType": "percentage",
  582. "V_CalculationType": "percentage"
  583. }
  584. },
  585. {
  586. "Label": "截止本期末累|计完成金额",
  587. "font": "Content",
  588. "control": "Column",
  589. "style": "Default_Normal",
  590. "Title": "",
  591. "area": {
  592. "Left": "75.66",
  593. "Right": "84.40",
  594. "Top": 0,
  595. "Bottom": "100.00",
  596. "H_CalculationType": "percentage",
  597. "V_CalculationType": "percentage"
  598. }
  599. },
  600. {
  601. "Label": "本期完成金额",
  602. "font": "Content",
  603. "control": "Column",
  604. "style": "Default_Normal",
  605. "Title": "",
  606. "area": {
  607. "Left": "84.40",
  608. "Right": "93.23",
  609. "Top": 0,
  610. "Bottom": "100.00",
  611. "H_CalculationType": "percentage",
  612. "V_CalculationType": "percentage"
  613. }
  614. },
  615. {
  616. "Label": "备注",
  617. "font": "Content",
  618. "control": "Column",
  619. "style": "Default_Normal",
  620. "Title": "",
  621. "area": {
  622. "Left": "93.23",
  623. "Right": "100.00",
  624. "Top": 0,
  625. "Bottom": "100.00",
  626. "H_CalculationType": "percentage",
  627. "V_CalculationType": "percentage"
  628. }
  629. }
  630. ]
  631. },
  632. "多列显示数量": 1,
  633. "流水式表_数据": {
  634. "BandName": "ContentBand",
  635. "CommonHeight": "0.69",
  636. "flow_field_s": [
  637. {
  638. "FieldID": 12294,
  639. "font": "Content",
  640. "control": "Column",
  641. "style": "Default_Normal",
  642. "isAutoHeight": false,
  643. "area": {
  644. "Left": 0,
  645. "Right": "3.76",
  646. "Top": 0,
  647. "Bottom": "100.00",
  648. "H_CalculationType": "percentage",
  649. "V_CalculationType": "percentage"
  650. }
  651. },
  652. {
  653. "FieldID": 2509,
  654. "font": "Content",
  655. "control": "Column_Left",
  656. "style": "Default_Normal",
  657. "isAutoHeight": false,
  658. "area": {
  659. "Left": "3.76",
  660. "Right": "9.02",
  661. "Top": 0,
  662. "Bottom": "100.00",
  663. "H_CalculationType": "percentage",
  664. "V_CalculationType": "percentage"
  665. }
  666. },
  667. {
  668. "FieldID": 2511,
  669. "font": "Content",
  670. "control": "Column_Left",
  671. "style": "Default_Normal",
  672. "isAutoHeight": false,
  673. "area": {
  674. "Left": "9.02",
  675. "Right": "22.84",
  676. "Top": 0,
  677. "Bottom": "100.00",
  678. "H_CalculationType": "percentage",
  679. "V_CalculationType": "percentage"
  680. }
  681. },
  682. {
  683. "FieldID": 2553,
  684. "font": "Content",
  685. "control": "Column_Right",
  686. "style": "Default_Normal",
  687. "isAutoHeight": false,
  688. "area": {
  689. "Left": "22.84",
  690. "Right": "31.67",
  691. "Top": 0,
  692. "Bottom": "100.00",
  693. "H_CalculationType": "percentage",
  694. "V_CalculationType": "percentage"
  695. }
  696. },
  697. {
  698. "FieldID": 2523,
  699. "font": "Content",
  700. "control": "Column_Right",
  701. "style": "Default_Normal",
  702. "isAutoHeight": false,
  703. "area": {
  704. "Left": "31.67",
  705. "Right": "40.41",
  706. "Top": 0,
  707. "Bottom": "100.00",
  708. "H_CalculationType": "percentage",
  709. "V_CalculationType": "percentage"
  710. }
  711. },
  712. {
  713. "FieldID": 12293,
  714. "font": "Content",
  715. "control": "Column_Right",
  716. "style": "Default_Normal",
  717. "isAutoHeight": false,
  718. "area": {
  719. "Left": "49.25",
  720. "Right": "58.08",
  721. "Top": 0,
  722. "Bottom": "100.00",
  723. "H_CalculationType": "percentage",
  724. "V_CalculationType": "percentage"
  725. }
  726. },
  727. {
  728. "FieldID": 1199,
  729. "font": "Content",
  730. "control": "Column_Right",
  731. "style": "Default_Normal",
  732. "isAutoHeight": false,
  733. "area": {
  734. "Left": "58.08",
  735. "Right": "66.82",
  736. "Top": 0,
  737. "Bottom": "100.00",
  738. "H_CalculationType": "percentage",
  739. "V_CalculationType": "percentage"
  740. }
  741. },
  742. {
  743. "FieldID": 2542,
  744. "font": "Content",
  745. "control": "Column_Right",
  746. "style": "Default_Normal",
  747. "isAutoHeight": false,
  748. "area": {
  749. "Left": "66.82",
  750. "Right": "75.66",
  751. "Top": 0,
  752. "Bottom": "100.00",
  753. "H_CalculationType": "percentage",
  754. "V_CalculationType": "percentage"
  755. }
  756. },
  757. {
  758. "FieldID": 2548,
  759. "font": "Content",
  760. "control": "Column_Right",
  761. "style": "Default_Normal",
  762. "isAutoHeight": false,
  763. "area": {
  764. "Left": "75.66",
  765. "Right": "84.40",
  766. "Top": 0,
  767. "Bottom": "100.00",
  768. "H_CalculationType": "percentage",
  769. "V_CalculationType": "percentage"
  770. }
  771. },
  772. {
  773. "FieldID": 2535,
  774. "font": "Content",
  775. "control": "Column_Right",
  776. "style": "Default_Normal",
  777. "isAutoHeight": false,
  778. "area": {
  779. "Left": "84.40",
  780. "Right": "93.23",
  781. "Top": 0,
  782. "Bottom": "100.00",
  783. "H_CalculationType": "percentage",
  784. "V_CalculationType": "percentage"
  785. }
  786. },
  787. {
  788. "FieldID": 1199,
  789. "font": "Content",
  790. "control": "Content_Left",
  791. "style": "Default_Normal",
  792. "isAutoHeight": false,
  793. "area": {
  794. "Left": "93.23",
  795. "Right": "100.00",
  796. "Top": 0,
  797. "Bottom": "100.00",
  798. "H_CalculationType": "percentage",
  799. "V_CalculationType": "percentage"
  800. }
  801. },
  802. {
  803. "FieldID": 12311,
  804. "font": "Content",
  805. "control": "Column_Right",
  806. "style": "Default_Normal",
  807. "isAutoHeight": false,
  808. "area": {
  809. "Left": "40.41",
  810. "Right": "49.25",
  811. "Top": 0,
  812. "Bottom": 100,
  813. "H_CalculationType": "percentage",
  814. "V_CalculationType": "percentage"
  815. }
  816. }
  817. ]
  818. },
  819. "流水式表_分组信息": {
  820. "group_field_s": [],
  821. "sum_field_s": [],
  822. "group_lines": []
  823. },
  824. "流水式表_段统计信息": {
  825. "BandName": "newBand_1",
  826. "sum_field_s": [
  827. {
  828. "FieldID": 12297,
  829. "font": "Content",
  830. "control": "Column",
  831. "style": "Default_Normal",
  832. "isAutoHeight": false,
  833. "area": {
  834. "Left": "9.02",
  835. "Right": "31.67",
  836. "Top": "65.05",
  837. "Bottom": "82.52",
  838. "H_CalculationType": "percentage",
  839. "V_CalculationType": "percentage"
  840. }
  841. },
  842. {
  843. "FieldID": 12299,
  844. "font": "Content",
  845. "control": "Column",
  846. "style": "Default_Normal",
  847. "isAutoHeight": false,
  848. "area": {
  849. "Left": "9.02",
  850. "Right": "31.67",
  851. "Top": "82.52",
  852. "Bottom": "100.00",
  853. "H_CalculationType": "percentage",
  854. "V_CalculationType": "percentage"
  855. }
  856. },
  857. {
  858. "FieldID": 12301,
  859. "font": "Content",
  860. "control": "Column",
  861. "style": "Default_Normal",
  862. "isAutoHeight": false,
  863. "area": {
  864. "Left": "49.25",
  865. "Right": "66.82",
  866. "Top": "12.62",
  867. "Bottom": "47.57",
  868. "H_CalculationType": "percentage",
  869. "V_CalculationType": "percentage"
  870. }
  871. },
  872. {
  873. "FieldID": 12302,
  874. "font": "Content",
  875. "control": "Column",
  876. "style": "Default_Normal",
  877. "isAutoHeight": false,
  878. "area": {
  879. "Left": "49.25",
  880. "Right": "66.82",
  881. "Top": "47.57",
  882. "Bottom": "100.00",
  883. "H_CalculationType": "percentage",
  884. "V_CalculationType": "percentage"
  885. }
  886. },
  887. {
  888. "FieldID": 12304,
  889. "font": "Content",
  890. "control": "Column",
  891. "style": "Default_Normal",
  892. "isAutoHeight": false,
  893. "area": {
  894. "Left": "75.66",
  895. "Right": "93.23",
  896. "Top": "12.62",
  897. "Bottom": "47.57",
  898. "H_CalculationType": "percentage",
  899. "V_CalculationType": "percentage"
  900. }
  901. },
  902. {
  903. "FieldID": 12303,
  904. "font": "Content",
  905. "control": "Column",
  906. "style": "Default_Normal",
  907. "isAutoHeight": false,
  908. "area": {
  909. "Left": "75.66",
  910. "Right": "93.23",
  911. "Top": "47.57",
  912. "Bottom": "100.00",
  913. "H_CalculationType": "percentage",
  914. "V_CalculationType": "percentage"
  915. }
  916. },
  917. {
  918. "FieldID": 12305,
  919. "font": "Content",
  920. "control": "Column",
  921. "style": "Default_Normal",
  922. "isAutoHeight": false,
  923. "area": {
  924. "Left": "93.23",
  925. "Right": "100.00",
  926. "Top": "47.57",
  927. "Bottom": "100.00",
  928. "H_CalculationType": "percentage",
  929. "V_CalculationType": "percentage"
  930. }
  931. },
  932. {
  933. "FieldID": 2553,
  934. "font": "Content",
  935. "control": "Column_Right",
  936. "style": "Default_Normal",
  937. "isAutoHeight": false,
  938. "area": {
  939. "Left": "22.84",
  940. "Right": "31.67",
  941. "Top": 0,
  942. "Bottom": "12.62",
  943. "H_CalculationType": "percentage",
  944. "V_CalculationType": "percentage"
  945. }
  946. },
  947. {
  948. "FieldID": 2523,
  949. "font": "Content",
  950. "control": "Column_Right",
  951. "style": "Default_Normal",
  952. "isAutoHeight": false,
  953. "area": {
  954. "Left": "31.67",
  955. "Right": "40.41",
  956. "Top": 0,
  957. "Bottom": "12.62",
  958. "H_CalculationType": "percentage",
  959. "V_CalculationType": "percentage"
  960. }
  961. },
  962. {
  963. "FieldID": 12293,
  964. "font": "Content",
  965. "control": "Column_Right",
  966. "style": "Default_Normal",
  967. "isAutoHeight": false,
  968. "area": {
  969. "Left": "49.25",
  970. "Right": "58.08",
  971. "Top": 0,
  972. "Bottom": "12.62",
  973. "H_CalculationType": "percentage",
  974. "V_CalculationType": "percentage"
  975. }
  976. },
  977. {
  978. "FieldID": 2542,
  979. "font": "Content",
  980. "control": "Column_Right",
  981. "style": "Default_Normal",
  982. "isAutoHeight": false,
  983. "area": {
  984. "Left": "66.82",
  985. "Right": "75.66",
  986. "Top": 0,
  987. "Bottom": "12.62",
  988. "H_CalculationType": "percentage",
  989. "V_CalculationType": "percentage"
  990. }
  991. },
  992. {
  993. "FieldID": 2548,
  994. "font": "Content",
  995. "control": "Column_Right",
  996. "style": "Default_Normal",
  997. "isAutoHeight": false,
  998. "area": {
  999. "Left": "75.66",
  1000. "Right": "84.40",
  1001. "Top": 0,
  1002. "Bottom": "12.62",
  1003. "H_CalculationType": "percentage",
  1004. "V_CalculationType": "percentage"
  1005. }
  1006. },
  1007. {
  1008. "FieldID": 2535,
  1009. "font": "Content",
  1010. "control": "Column_Right",
  1011. "style": "Default_Normal",
  1012. "isAutoHeight": false,
  1013. "area": {
  1014. "Left": "84.40",
  1015. "Right": "93.23",
  1016. "Top": 0,
  1017. "Bottom": "12.62",
  1018. "H_CalculationType": "percentage",
  1019. "V_CalculationType": "percentage"
  1020. }
  1021. },
  1022. {
  1023. "FieldID": 12295,
  1024. "font": "Content",
  1025. "control": "Column",
  1026. "style": "Default_Normal",
  1027. "isAutoHeight": false,
  1028. "area": {
  1029. "Left": "22.84",
  1030. "Right": "31.67",
  1031. "Top": "30.1",
  1032. "Bottom": "47.57",
  1033. "H_CalculationType": "percentage",
  1034. "V_CalculationType": "percentage"
  1035. }
  1036. },
  1037. {
  1038. "FieldID": 12296,
  1039. "font": "Content",
  1040. "control": "Column",
  1041. "style": "Default_Normal",
  1042. "isAutoHeight": false,
  1043. "area": {
  1044. "Left": "31.67",
  1045. "Right": "40.41",
  1046. "Top": "30.10",
  1047. "Bottom": "47.57",
  1048. "H_CalculationType": "percentage",
  1049. "V_CalculationType": "percentage"
  1050. }
  1051. },
  1052. {
  1053. "FieldID": 12298,
  1054. "font": "Content",
  1055. "control": "Column",
  1056. "style": "Default_Normal",
  1057. "isAutoHeight": false,
  1058. "area": {
  1059. "Left": "31.67",
  1060. "Right": "40.41",
  1061. "Top": "65.05",
  1062. "Bottom": "82.52",
  1063. "H_CalculationType": "percentage",
  1064. "V_CalculationType": "percentage"
  1065. }
  1066. },
  1067. {
  1068. "FieldID": 12300,
  1069. "font": "Content",
  1070. "control": "Column",
  1071. "style": "Default_Normal",
  1072. "isAutoHeight": false,
  1073. "area": {
  1074. "Left": "31.67",
  1075. "Right": "40.41",
  1076. "Top": "82.52",
  1077. "Bottom": "100.00",
  1078. "H_CalculationType": "percentage",
  1079. "V_CalculationType": "percentage"
  1080. }
  1081. },
  1082. {
  1083. "FieldID": 1123,
  1084. "font": "Content",
  1085. "control": "NewContent_Center",
  1086. "style": "Default_None",
  1087. "isAutoHeight": false,
  1088. "area": {
  1089. "Left": "9.02",
  1090. "Right": "22.84",
  1091. "Top": "30.1",
  1092. "Bottom": "47.57",
  1093. "H_CalculationType": "percentage",
  1094. "V_CalculationType": "percentage"
  1095. }
  1096. },
  1097. {
  1098. "FieldID": 12311,
  1099. "font": "Content",
  1100. "control": "Column_Right",
  1101. "style": "Default_None",
  1102. "isAutoHeight": false,
  1103. "area": {
  1104. "Left": "40.41",
  1105. "Right": "49.25",
  1106. "Top": 0,
  1107. "Bottom": "12.62",
  1108. "H_CalculationType": "percentage",
  1109. "V_CalculationType": "percentage"
  1110. }
  1111. }
  1112. ],
  1113. "text_s": [
  1114. {
  1115. "Label": "小计",
  1116. "font": "Content",
  1117. "control": "Column",
  1118. "style": "Default_Normal",
  1119. "Title": "",
  1120. "area": {
  1121. "Left": 0,
  1122. "Right": "22.84",
  1123. "Top": 0,
  1124. "Bottom": "12.62",
  1125. "H_CalculationType": "percentage",
  1126. "V_CalculationType": "percentage"
  1127. }
  1128. },
  1129. {
  1130. "Label": "预付款",
  1131. "font": "Content",
  1132. "control": "Column",
  1133. "style": "Default_Normal",
  1134. "Title": "",
  1135. "area": {
  1136. "Left": 0,
  1137. "Right": "9.02",
  1138. "Top": "12.62",
  1139. "Bottom": "47.57",
  1140. "H_CalculationType": "percentage",
  1141. "V_CalculationType": "percentage"
  1142. }
  1143. },
  1144. {
  1145. "Label": "质保金5%",
  1146. "font": "Content",
  1147. "control": "Column",
  1148. "style": "Default_Normal",
  1149. "Title": "",
  1150. "area": {
  1151. "Left": 0,
  1152. "Right": "9.02",
  1153. "Top": "47.57",
  1154. "Bottom": "82.52",
  1155. "H_CalculationType": "percentage",
  1156. "V_CalculationType": "percentage"
  1157. }
  1158. },
  1159. {
  1160. "Label": "审计保留金|10%",
  1161. "font": "Content",
  1162. "control": "Column",
  1163. "style": "Default_Normal",
  1164. "Title": "",
  1165. "area": {
  1166. "Left": 0,
  1167. "Right": "9.02",
  1168. "Top": "82.52",
  1169. "Bottom": "100.00",
  1170. "H_CalculationType": "percentage",
  1171. "V_CalculationType": "percentage"
  1172. }
  1173. },
  1174. {
  1175. "Label": "已扣累计数",
  1176. "font": "Content",
  1177. "control": "Column",
  1178. "style": "Default_Normal",
  1179. "Title": "",
  1180. "area": {
  1181. "Left": "9.02",
  1182. "Right": "31.67",
  1183. "Top": "47.57",
  1184. "Bottom": "65.05",
  1185. "H_CalculationType": "percentage",
  1186. "V_CalculationType": "percentage"
  1187. }
  1188. },
  1189. {
  1190. "Label": "截止上期末|已付款累计",
  1191. "font": "Content",
  1192. "control": "Column",
  1193. "style": "Default_Normal",
  1194. "Title": "",
  1195. "area": {
  1196. "Left": "40.41",
  1197. "Right": "49.25",
  1198. "Top": "12.62",
  1199. "Bottom": "47.57",
  1200. "H_CalculationType": "percentage",
  1201. "V_CalculationType": "percentage"
  1202. }
  1203. },
  1204. {
  1205. "Label": "本期实际|支付金额",
  1206. "font": "Content",
  1207. "control": "Column",
  1208. "style": "Default_Normal",
  1209. "Title": "",
  1210. "area": {
  1211. "Left": "40.41",
  1212. "Right": "49.25",
  1213. "Top": "47.57",
  1214. "Bottom": "100.00",
  1215. "H_CalculationType": "percentage",
  1216. "V_CalculationType": "percentage"
  1217. }
  1218. },
  1219. {
  1220. "Label": "本期应付金额",
  1221. "font": "Content",
  1222. "control": "Column",
  1223. "style": "Default_Normal",
  1224. "Title": "",
  1225. "area": {
  1226. "Left": "66.82",
  1227. "Right": "75.66",
  1228. "Top": "12.62",
  1229. "Bottom": "47.57",
  1230. "H_CalculationType": "percentage",
  1231. "V_CalculationType": "percentage"
  1232. }
  1233. },
  1234. {
  1235. "Label": "截止本期末已|付款金额",
  1236. "font": "Content",
  1237. "control": "Column",
  1238. "style": "Default_Normal",
  1239. "Title": "",
  1240. "area": {
  1241. "Left": "66.82",
  1242. "Right": "75.66",
  1243. "Top": "47.57",
  1244. "Bottom": "100.00",
  1245. "H_CalculationType": "percentage",
  1246. "V_CalculationType": "percentage"
  1247. }
  1248. },
  1249. {
  1250. "Label": "截止本期末累计付款占累计完成金额%",
  1251. "font": "Content",
  1252. "control": "Column",
  1253. "style": "Default_Normal",
  1254. "Title": "",
  1255. "area": {
  1256. "Left": "93.23",
  1257. "Right": "100.00",
  1258. "Top": "12.62",
  1259. "Bottom": "47.57",
  1260. "H_CalculationType": "percentage",
  1261. "V_CalculationType": "percentage"
  1262. }
  1263. },
  1264. {
  1265. "Label": "",
  1266. "font": "Content",
  1267. "control": "Column_Right",
  1268. "style": "Default_Normal",
  1269. "Title": "",
  1270. "area": {
  1271. "Left": "58.08",
  1272. "Right": "66.82",
  1273. "Top": 0,
  1274. "Bottom": "12.62",
  1275. "H_CalculationType": "percentage",
  1276. "V_CalculationType": "percentage"
  1277. }
  1278. },
  1279. {
  1280. "Label": "",
  1281. "font": "Content",
  1282. "control": "Content_Left",
  1283. "style": "Default_Normal",
  1284. "Title": "",
  1285. "area": {
  1286. "Left": "93.23",
  1287. "Right": "100.00",
  1288. "Top": 0,
  1289. "Bottom": "12.62",
  1290. "H_CalculationType": "percentage",
  1291. "V_CalculationType": "percentage"
  1292. }
  1293. },
  1294. {
  1295. "Label": "预付款总额",
  1296. "font": "Content",
  1297. "control": "Column",
  1298. "style": "Default_Normal",
  1299. "Title": "",
  1300. "area": {
  1301. "Left": "9.02",
  1302. "Right": "22.84",
  1303. "Top": "12.62",
  1304. "Bottom": "30.10",
  1305. "H_CalculationType": "percentage",
  1306. "V_CalculationType": "percentage"
  1307. }
  1308. },
  1309. {
  1310. "Label": "已扣回累计数",
  1311. "font": "Content",
  1312. "control": "Column",
  1313. "style": "Default_Normal",
  1314. "Title": "",
  1315. "area": {
  1316. "Left": "22.84",
  1317. "Right": "31.67",
  1318. "Top": "12.62",
  1319. "Bottom": "30.10",
  1320. "H_CalculationType": "percentage",
  1321. "V_CalculationType": "percentage"
  1322. }
  1323. },
  1324. {
  1325. "Label": "本期应扣",
  1326. "font": "Content",
  1327. "control": "Column",
  1328. "style": "Default_Normal",
  1329. "Title": "",
  1330. "area": {
  1331. "Left": "31.67",
  1332. "Right": "40.41",
  1333. "Top": "12.62",
  1334. "Bottom": "30.10",
  1335. "H_CalculationType": "percentage",
  1336. "V_CalculationType": "percentage"
  1337. }
  1338. },
  1339. {
  1340. "Label": "本期应扣",
  1341. "font": "Content",
  1342. "control": "Column",
  1343. "style": "Default_Normal",
  1344. "Title": "",
  1345. "area": {
  1346. "Left": "31.67",
  1347. "Right": "40.41",
  1348. "Top": "47.57",
  1349. "Bottom": "65.05",
  1350. "H_CalculationType": "percentage",
  1351. "V_CalculationType": "percentage"
  1352. }
  1353. }
  1354. ]
  1355. },
  1356. "流水式表_页统计信息": {
  1357. "BandName": "",
  1358. "sum_field_s": [],
  1359. "text_s": []
  1360. }
  1361. },
  1362. "离散参数_集合": [
  1363. {
  1364. "ID": "5001",
  1365. "Name": "打印时间",
  1366. "DataType": "String",
  1367. "Default_Value": ""
  1368. },
  1369. {
  1370. "ID": "5010",
  1371. "Name": "当前页",
  1372. "DataType": "String",
  1373. "Default_Value": "第 X 页"
  1374. },
  1375. {
  1376. "ID": "5011",
  1377. "Name": "总页数",
  1378. "DataType": "String",
  1379. "Default_Value": "共 X 页"
  1380. },
  1381. {
  1382. "ID": 12267,
  1383. "Name": "标段_截止日期",
  1384. "DataType": "string",
  1385. "Default_Value": ""
  1386. },
  1387. {
  1388. "ID": 12268,
  1389. "Name": "标段_标段清单_施工单位",
  1390. "DataType": "string",
  1391. "Default_Value": ""
  1392. }
  1393. ],
  1394. "指标_数据_映射": {
  1395. "离散指标_集合": [
  1396. {
  1397. "ID": 1101,
  1398. "Name": "标段_项目名称",
  1399. "DataType": "string",
  1400. "TableName": "tender_info",
  1401. "mapExpression": "$PROJECT.REPORT.getProperty(\"tender_info\", \"deal_info.buildName\")",
  1402. "descr": "",
  1403. "Title": "ID: 1101"
  1404. },
  1405. {
  1406. "ID": 1134,
  1407. "Name": "标段_标段清单_承包单位1_单位名称",
  1408. "DataType": "string",
  1409. "TableName": "tender_info",
  1410. "mapExpression": "$PROJECT.REPORT.getProperty(\"tender_info\", \"construction_unit.contract1.company\")",
  1411. "descr": "",
  1412. "Title": "ID: 1134"
  1413. },
  1414. {
  1415. "ID": 1140,
  1416. "Name": "标段_标段清单_监理单位1_单位名称",
  1417. "DataType": "string",
  1418. "TableName": "tender_info",
  1419. "mapExpression": "$PROJECT.REPORT.getProperty(\"tender_info\", \"construction_unit.supervision1.company\")",
  1420. "descr": "",
  1421. "Title": "ID: 1140"
  1422. },
  1423. {
  1424. "ID": 1102,
  1425. "Name": "标段_合同编号",
  1426. "DataType": "string",
  1427. "TableName": "tender_info",
  1428. "mapExpression": "$PROJECT.REPORT.getProperty(\"tender_info\", \"deal_info.dealCode\")",
  1429. "descr": "",
  1430. "Title": "ID: 1102"
  1431. },
  1432. {
  1433. "ID": 1150,
  1434. "Name": "标段_技术参数_合同期限",
  1435. "DataType": "string",
  1436. "TableName": "tender_info",
  1437. "mapExpression": "$PROJECT.REPORT.getProperty(\"tender_info\", \"tech_param.dealPeriod\")",
  1438. "descr": "",
  1439. "Title": "ID: 1150"
  1440. },
  1441. {
  1442. "ID": 1300,
  1443. "Name": "期计量信息_期数",
  1444. "DataType": "number",
  1445. "TableName": "stage",
  1446. "mapExpression": "$PROJECT.REPORT.getProperty(\"stage\", \"order\")",
  1447. "descr": "",
  1448. "Title": "ID: 1300"
  1449. },
  1450. {
  1451. "ID": 1132,
  1452. "Name": "标段_标段清单_章节代码",
  1453. "DataType": "array",
  1454. "TableName": "tender_info",
  1455. "mapExpression": "$PROJECT.REPORT.getArrayProperty(\"tender_info\", \"chapter.code\")",
  1456. "descr": "",
  1457. "Title": "ID: 1132"
  1458. },
  1459. {
  1460. "ID": 1133,
  1461. "Name": "标段_标段清单_章节名称",
  1462. "DataType": "array",
  1463. "TableName": "tender_info",
  1464. "mapExpression": "$PROJECT.REPORT.getArrayProperty(\"tender_info\", \"chapter.name\")",
  1465. "descr": "",
  1466. "Title": "ID: 1133"
  1467. },
  1468. {
  1469. "ID": 1312,
  1470. "Name": "期计量信息_截至日期",
  1471. "DataType": "string",
  1472. "TableName": "stage",
  1473. "mapExpression": "$PROJECT.REPORT.getSplitProperty(\"stage\", \"period\", \" ~ \", 1, \"\")",
  1474. "descr": "",
  1475. "Title": "ID: 1312"
  1476. },
  1477. {
  1478. "ID": 1300,
  1479. "Name": "期计量信息_期数",
  1480. "DataType": "number",
  1481. "TableName": "stage",
  1482. "mapExpression": "$PROJECT.REPORT.getProperty(\"stage\", \"order\")",
  1483. "descr": "",
  1484. "Title": "ID: 1300"
  1485. },
  1486. {
  1487. "ID": 1103,
  1488. "Name": "标段_合同名称",
  1489. "DataType": "string",
  1490. "TableName": "tender_info",
  1491. "mapExpression": "$PROJECT.REPORT.getProperty(\"tender_info\", \"deal_info.dealName\")",
  1492. "descr": "",
  1493. "Title": "ID: 1103"
  1494. }
  1495. ],
  1496. "主数据指标_集合": [],
  1497. "从数据指标_集合": [
  1498. {
  1499. "ID": 2510,
  1500. "Name": "清单编号(b_code)",
  1501. "DataType": "string",
  1502. "TableName": "mem_stage_bills",
  1503. "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_bills', 'b_code')",
  1504. "descr": "",
  1505. "Title": "ID: 2510"
  1506. },
  1507. {
  1508. "ID": 2511,
  1509. "Name": "名称(name)",
  1510. "DataType": "string",
  1511. "TableName": "mem_stage_bills",
  1512. "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_bills', 'name')",
  1513. "descr": "",
  1514. "Title": "ID: 2511"
  1515. },
  1516. {
  1517. "ID": 2515,
  1518. "Name": "签约-金额(deal_tp)",
  1519. "DataType": "currency",
  1520. "TableName": "mem_stage_bills",
  1521. "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_bills', 'deal_tp')",
  1522. "descr": "",
  1523. "Title": "ID: 2515",
  1524. "Precision": {
  1525. "type": "fixed",
  1526. "fixedMapExpression": "$PROJECT.REPORT.getProperty('tender_info', 'decimal.tp')"
  1527. }
  1528. },
  1529. {
  1530. "ID": 2509,
  1531. "Name": "项目节编号(code)",
  1532. "DataType": "string",
  1533. "TableName": "mem_stage_bills",
  1534. "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_bills', 'code')",
  1535. "descr": "",
  1536. "Title": "ID: 2509"
  1537. },
  1538. {
  1539. "ID": 2548,
  1540. "Name": "截止本期-完成-金额(end_gather_tp)",
  1541. "DataType": "currency",
  1542. "TableName": "mem_stage_bills",
  1543. "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_bills', 'end_gather_tp')",
  1544. "descr": "",
  1545. "Title": "ID: 2548",
  1546. "Precision": {
  1547. "type": "fixed",
  1548. "fixedMapExpression": "$PROJECT.REPORT.getProperty('tender_info', 'decimal.tp')"
  1549. }
  1550. },
  1551. {
  1552. "ID": 2542,
  1553. "Name": "截止上期-完成-金额(pre_gather_tp)",
  1554. "DataType": "currency",
  1555. "TableName": "mem_stage_bills",
  1556. "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_bills', 'pre_gather_tp')",
  1557. "descr": "",
  1558. "Title": "ID: 2542",
  1559. "Precision": {
  1560. "type": "fixed",
  1561. "fixedMapExpression": "$PROJECT.REPORT.getProperty('tender_info', 'decimal.tp')"
  1562. }
  1563. },
  1564. {
  1565. "ID": 2535,
  1566. "Name": "本期-完成-金额(gather_tp)",
  1567. "DataType": "currency",
  1568. "TableName": "mem_stage_bills",
  1569. "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_bills', 'gather_tp')",
  1570. "descr": "",
  1571. "Title": "ID: 2535",
  1572. "Precision": {
  1573. "type": "fixed",
  1574. "fixedMapExpression": "$PROJECT.REPORT.getProperty('tender_info', 'decimal.tp')"
  1575. }
  1576. },
  1577. {
  1578. "ID": 2523,
  1579. "Name": "台账-金额(total_price)",
  1580. "DataType": "currency",
  1581. "TableName": "mem_stage_bills",
  1582. "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_bills', 'total_price')",
  1583. "descr": "",
  1584. "Title": "ID: 2523",
  1585. "Precision": {
  1586. "type": "fixed",
  1587. "fixedMapExpression": "$PROJECT.REPORT.getProperty('tender_info', 'decimal.tp')"
  1588. }
  1589. },
  1590. {
  1591. "ID": 2912,
  1592. "Name": "变更清单-审批变更后-金额(s_tp)",
  1593. "DataType": "currency",
  1594. "TableName": "mem_change_bills",
  1595. "mapExpression": "$PROJECT.REPORT.getProperty('mem_change_bills', 's_tp')",
  1596. "descr": "",
  1597. "Title": "ID: 2912",
  1598. "Precision": {
  1599. "type": "fixed",
  1600. "fixedMapExpression": "$PROJECT.REPORT.getProperty('tender_info', 'decimal.tp')"
  1601. }
  1602. },
  1603. {
  1604. "ID": 2508,
  1605. "Name": "树结构-是否子项(is_leaf)",
  1606. "DataType": "int",
  1607. "TableName": "mem_stage_bills",
  1608. "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_bills', 'is_leaf')",
  1609. "descr": "",
  1610. "Title": "ID: 2508"
  1611. },
  1612. {
  1613. "ID": 1199,
  1614. "Name": "标段_空白",
  1615. "DataType": "string",
  1616. "TableName": "tender_info",
  1617. "mapExpression": "$PROJECT.REPORT.getBlank(\"tender_info\", \"\")",
  1618. "descr": "",
  1619. "Title": "ID: 1199"
  1620. },
  1621. {
  1622. "ID": 2553,
  1623. "Name": "预留扩展字段_1(ex_value1)",
  1624. "DataType": "currency",
  1625. "TableName": "mem_stage_bills",
  1626. "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_bills', 'ex_value1')",
  1627. "descr": "",
  1628. "Title": "ID: 2553"
  1629. },
  1630. {
  1631. "ID": 2554,
  1632. "Name": "预留扩展字段_2(ex_value2)",
  1633. "DataType": "currency",
  1634. "TableName": "mem_stage_bills",
  1635. "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_bills', 'ex_value2')",
  1636. "descr": "",
  1637. "Title": "ID: 2554"
  1638. },
  1639. {
  1640. "ID": 1605,
  1641. "Name": "签约清单信息_合价(total_price)",
  1642. "DataType": "currency",
  1643. "TableName": "deal_bills",
  1644. "mapExpression": "$PROJECT.REPORT.getProperty(\"deal_bills\", \"total_price\")",
  1645. "descr": "",
  1646. "Title": "ID: 1605",
  1647. "Precision": {
  1648. "type": "fixed",
  1649. "fixedMapExpression": "$PROJECT.REPORT.getProperty(\"tender_info\", \"decimal.tp\")"
  1650. }
  1651. },
  1652. {
  1653. "ID": 2701,
  1654. "Name": "期-合同支付-名称(name)",
  1655. "DataType": "string",
  1656. "TableName": "mem_stage_pay",
  1657. "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_pay', 'name')",
  1658. "descr": "",
  1659. "Title": "ID: 2701"
  1660. },
  1661. {
  1662. "ID": 2705,
  1663. "Name": "期-合同支付-截止本期-金额(end_tp)",
  1664. "DataType": "currency",
  1665. "TableName": "mem_stage_pay",
  1666. "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_pay', 'end_tp')",
  1667. "descr": "",
  1668. "Title": "ID: 2705",
  1669. "Precision": {
  1670. "type": "fixed",
  1671. "fixedMapExpression": "$PROJECT.REPORT.getProperty('tender_info', 'decimal._pay_tp')"
  1672. }
  1673. },
  1674. {
  1675. "ID": 2703,
  1676. "Name": "期-合同支付-金额(tp)",
  1677. "DataType": "currency",
  1678. "TableName": "mem_stage_pay",
  1679. "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_pay', 'tp')",
  1680. "descr": "",
  1681. "Title": "ID: 2703",
  1682. "Precision": {
  1683. "type": "fixed",
  1684. "fixedMapExpression": "$PROJECT.REPORT.getProperty('tender_info', 'decimal._pay_tp')"
  1685. }
  1686. },
  1687. {
  1688. "ID": 2704,
  1689. "Name": "期-合同支付-截止上期-金额(pre_tp)",
  1690. "DataType": "currency",
  1691. "TableName": "mem_stage_pay",
  1692. "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_pay', 'pre_tp')",
  1693. "descr": "",
  1694. "Title": "ID: 2704",
  1695. "Precision": {
  1696. "type": "fixed",
  1697. "fixedMapExpression": "$PROJECT.REPORT.getProperty('tender_info', 'decimal._pay_tp')"
  1698. }
  1699. },
  1700. {
  1701. "ID": 1123,
  1702. "Name": "标段_签约开工预付款",
  1703. "DataType": "number",
  1704. "TableName": "tender_info",
  1705. "mapExpression": "$PROJECT.REPORT.getProperty(\"tender_info\", \"deal_param.startAdvance\")",
  1706. "descr": "",
  1707. "Title": "ID: 1123"
  1708. },
  1709. {
  1710. "ID": 2903,
  1711. "Name": "变更清单-清单编号(code)",
  1712. "DataType": "string",
  1713. "TableName": "mem_change_bills",
  1714. "mapExpression": "$PROJECT.REPORT.getProperty('mem_change_bills', 'code')",
  1715. "descr": "",
  1716. "Title": "ID: 2903"
  1717. }
  1718. ],
  1719. "主数据指标_拓展集合": [],
  1720. "从数据指标_拓展集合": []
  1721. },
  1722. "映射数据预处理": [
  1723. {
  1724. "预处理类型": "指定方式",
  1725. "映射数据对象": "",
  1726. "方式Key": "gatherChapter",
  1727. "hint": "请使用mem_stage_bills/mem_stage_bills_compare/ledger,仅对一张表进行汇总,并生成数据:\n1. 因为是汇总章级数据,必须在离散数据中添加\"章节代码\"&\"章节名称\"\n2. 需勾选\"清单编号(b_code)\", \"树结构-是否子项(is_leaf)\"字段,可以对任何含有这些字段的表汇总\n注意事项:\n1. 算法对数据表没有要求,保证有上述字段,且按顺序勾选即可, 仅汇总金额\n2. 算法计算后,原数据表中非数字类型的字段全部失效(除清单编号、名称外),请勿在指标映射中添加\n示例:\ne.g.1 要对mem_stage_bills汇总,须勾选mem_stage_bills下的\"清单编号(b_code)\", \"树结构-是否子项((is_leaf)\"字段\ne.g.2 要对mem_stage_bills_compare汇总,须勾选mem_stage_bills_compare下的\"清单编号(b_code)\", \"树结构-是否子项((is_leaf)\"字段\n结果:\n汇总结果可参照 清单汇总--章节合计,但是不过滤1000-1300章数据",
  1728. "fields": [
  1729. {
  1730. "Name": "清单编号(b_code)",
  1731. "FieldID": 2510
  1732. },
  1733. {
  1734. "Name": "树结构-是否子项(is_leaf)",
  1735. "FieldID": 2508
  1736. }
  1737. ],
  1738. "自定义设置": "{\n \"count\": 7,\n \"activeFields\": [\"gather_tp\", \"pre_gather_tp\", \"end_gather_tp\"],\n\t\"unChapter\" : {\"name\" : \"未计入章节清单项\", \"order\": 1},\n \"custom\": [\n {\n \"name\": \"不可预见费(暂列金额)\",\n \"order\": 3,\n \"match\": [\n {\"node_type\": \"暂列金额\"},\n {\"field\": \"name\", \"part\": \"暂列金额\"},\n {\"field\": \"name\", \"part\": \"暂定金额\"}\n ]\n }\n ],\n \"rela\": [\n {\n \"table\": \"deal_bills\", \"key\": \"code\",\n \"fields\": {\"source\": \"total_price\", \"target\": \"ex_value1\"}\n },{\n \"table\": \"mem_change_bills\", \"key\": \"code\",\n \"fields\": {\"source\": \"s_tp\", \"target\": \"ex_value2\"}\n }\n ]\n}"
  1739. }
  1740. ],
  1741. "无映射离散指标_集合": [
  1742. {
  1743. "ID": 12293,
  1744. "Name": "新台账+变更",
  1745. "DataType": "string"
  1746. },
  1747. {
  1748. "ID": 12294,
  1749. "Name": "新序号",
  1750. "DataType": "string"
  1751. },
  1752. {
  1753. "ID": 12295,
  1754. "Name": "扣回开工预付款-累计",
  1755. "DataType": "string"
  1756. },
  1757. {
  1758. "ID": 12296,
  1759. "Name": "扣回开工预付款-本期",
  1760. "DataType": "string"
  1761. },
  1762. {
  1763. "ID": 12297,
  1764. "Name": "质量保证金-到上期",
  1765. "DataType": "string"
  1766. },
  1767. {
  1768. "ID": 12298,
  1769. "Name": "质量保证金-本期",
  1770. "DataType": "string"
  1771. },
  1772. {
  1773. "ID": 12299,
  1774. "Name": "审计保留金-到上期",
  1775. "DataType": "string"
  1776. },
  1777. {
  1778. "ID": 12300,
  1779. "Name": "审计保留金-本期",
  1780. "DataType": "string"
  1781. },
  1782. {
  1783. "ID": 12301,
  1784. "Name": "实付-到上期",
  1785. "DataType": "string"
  1786. },
  1787. {
  1788. "ID": 12302,
  1789. "Name": "实付-本期",
  1790. "DataType": "string"
  1791. },
  1792. {
  1793. "ID": 12303,
  1794. "Name": "实付-到本期",
  1795. "DataType": "string"
  1796. },
  1797. {
  1798. "ID": 12304,
  1799. "Name": "应付-本期",
  1800. "DataType": "string"
  1801. },
  1802. {
  1803. "ID": 12305,
  1804. "Name": "比例",
  1805. "DataType": "string"
  1806. },
  1807. {
  1808. "ID": 12306,
  1809. "Name": "合同编号+期数",
  1810. "DataType": "string"
  1811. },
  1812. {
  1813. "ID": 12310,
  1814. "Name": "新批复变更清单",
  1815. "DataType": "string"
  1816. },
  1817. {
  1818. "ID": 12311,
  1819. "Name": "新变更批复金额",
  1820. "DataType": "string"
  1821. }
  1822. ],
  1823. "动态日期离散参数_集合": [],
  1824. "电子签名离散指标_集合": [
  1825. {
  1826. "ID": 12000,
  1827. "Name": "制表",
  1828. "DataType": "string"
  1829. },
  1830. {
  1831. "ID": 12001,
  1832. "Name": "承包人",
  1833. "DataType": "string"
  1834. },
  1835. {
  1836. "ID": 12002,
  1837. "Name": "监理工程师",
  1838. "DataType": "string"
  1839. },
  1840. {
  1841. "ID": 12003,
  1842. "Name": "业主技术负责人",
  1843. "DataType": "string"
  1844. },
  1845. {
  1846. "ID": 12004,
  1847. "Name": "业主项目负责人",
  1848. "DataType": "string"
  1849. }
  1850. ]
  1851. }