| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851 |
- {
- "ID_KEY": "DUMMY_FLOW_SAMPLE",
- "GROUP_KEY": "RPT_支表13-1 中间计量表(总量控制)_SAMPLE_TPL",
- "主信息": {
- "单位": "厘米",
- "版本": {
- "主版本": "3",
- "功能版本": "0"
- },
- "页边距": {
- "Top": "1.0",
- "Left": "1.0",
- "Right": "1.0",
- "Bottom": "1.0"
- },
- "报表名称": "支表13-1 中间计量表(总量控制)",
- "打印页面_信息": {
- "方向": "LANDSCAPE",
- "页规格": "A4"
- }
- },
- "布局框_集合": [
- {
- "Alignment": "Top",
- "DisplayType": "EveryPage",
- "Height": "1.6",
- "Name": "TitleBand",
- "control": "Default",
- "style": "Default_None",
- "MergeBorder": "F"
- },
- {
- "Alignment": "Top",
- "DisplayType": "EveryPage",
- "Height": "1.19",
- "Name": "HeaderBand",
- "control": "Default",
- "style": "Default_None",
- "MergeBorder": "F"
- },
- {
- "Alignment": "Bottom",
- "DisplayType": "EveryPage",
- "Height": "1",
- "Name": "FooterBand",
- "control": "Default",
- "style": "Default_None",
- "MergeBorder": "F"
- },
- {
- "Alignment": "Fulfill",
- "DisplayType": "EveryPage",
- "Name": "Report Body",
- "control": "Default",
- "style": "BORDER_ALL_AROUND",
- "MergeBorder": "T",
- "band_s": [
- {
- "Alignment": "Top",
- "DisplayType": "EveryPage",
- "Height": "1",
- "Name": "ColumnBand",
- "control": "Default",
- "style": "Default_None",
- "MergeBorder": "F"
- },
- {
- "Alignment": "Bottom",
- "DisplayType": "EveryPage",
- "Height": "5.45",
- "Name": "newBand_1",
- "control": "Default",
- "style": "Default_None",
- "MergeBorder": "F"
- },
- {
- "Alignment": "Fulfill",
- "DisplayType": "EveryPage",
- "Name": "ContentBand",
- "control": "Default",
- "style": "Default_None",
- "MergeBorder": "F"
- }
- ]
- }
- ],
- "计算式_集合": [
- {
- "Name": "获取打印时间",
- "run_type": "before_paging",
- "expression": "let rpt = $JE.P(5001,$CURRENT_RPT); let dt = new Date(); rpt.Default_Value = dt.Format($ME.format); rpt = null;",
- "format": "yyyy 年 M 月 dd 日"
- },
- {
- "Name": "获取当前页",
- "run_type": "before_output",
- "expression": "let ttp = $JE.P(5010,$CURRENT_RPT); ttp.Default_Value = $ME.format.replace('($S)',$JE.getCurrentPage($CURRENT_RPT)); ttp = null;",
- "format": "第 ($S) 页"
- },
- {
- "Name": "获取总页数",
- "run_type": "before_output",
- "expression": "let ttp = $JE.P(5011,$CURRENT_RPT); ttp.Default_Value = $ME.format.replace('($S)',$JE.getTotalPage($CURRENT_RPT)); ttp = null;",
- "format": "共 ($S) 页"
- },
- {
- "Name": "综合设置",
- "run_type": "before_analyzing",
- "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",
- "format": ""
- },
- {
- "Name": "表头处理",
- "run_type": "before_analyzing",
- "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",
- "format": ""
- }
- ],
- "流水式表_信息": {
- "离散信息": [
- {
- "BandName": "TitleBand",
- "text_s": [
- {
- "Label": "支表1 中期支付证书",
- "font": "ReportTitle_Main",
- "control": "Title",
- "style": "Default_None",
- "Title": "",
- "area": {
- "Left": 0,
- "Right": "100.00",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- }
- ]
- },
- {
- "BandName": "HeaderBand",
- "discrete_field_s": [
- {
- "FieldID": 1101,
- "font": "Content",
- "control": "Column_Left",
- "style": "Default_None",
- "Prefix": "项目名称:",
- "isAutoHeight": false,
- "area": {
- "Left": 0,
- "Right": "30",
- "Top": 0,
- "Bottom": "50",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 1103,
- "font": "Content",
- "control": "Column_Left",
- "style": "Default_None",
- "Prefix": "合同段:",
- "isAutoHeight": false,
- "area": {
- "Left": "30",
- "Right": "60",
- "Top": 0,
- "Bottom": "50",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 1140,
- "font": "Content",
- "control": "Column_Left",
- "style": "Default_None",
- "Prefix": "监理单位:",
- "isAutoHeight": false,
- "area": {
- "Left": "60",
- "Right": "90",
- "Top": 0,
- "Bottom": "50",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "ParamID": "5010",
- "font": "Content",
- "control": "NewContent_Center",
- "style": "Default_None",
- "Default_Value": "第 X 页",
- "area": {
- "Left": "95",
- "Right": "100",
- "Top": 0,
- "Bottom": "50",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "ParamID": "5011",
- "font": "Content",
- "control": "NewContent_Center",
- "style": "Default_None",
- "Default_Value": "共 X 页",
- "area": {
- "Left": "90",
- "Right": "95",
- "Top": 0,
- "Bottom": "50",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 1134,
- "font": "Content",
- "control": "Column_Left",
- "style": "Default_None",
- "Prefix": "施工单位:",
- "isAutoHeight": false,
- "area": {
- "Left": 0,
- "Right": "30",
- "Top": "50",
- "Bottom": 100,
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 1312,
- "font": "Content",
- "control": "Column_Left",
- "style": "Default_None",
- "Prefix": "截止日期:",
- "isAutoHeight": false,
- "area": {
- "Left": "30",
- "Right": "60",
- "Top": "50",
- "Bottom": 100,
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 12306,
- "font": "Content",
- "control": "Column_Left",
- "style": "Default_None",
- "Prefix": "编号:",
- "isAutoHeight": false,
- "area": {
- "Left": "60",
- "Right": "80",
- "Top": "50",
- "Bottom": 100,
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- }
- ],
- "text_s": [
- {
- "Label": "货币单位:人民币(元)",
- "font": "Content",
- "control": "Column_Right",
- "style": "Default_None",
- "Title": "",
- "area": {
- "Left": "80",
- "Right": "100",
- "Top": "50",
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- }
- ]
- },
- {
- "BandName": "FooterBand",
- "discrete_field_s": [
- {
- "FieldID": 12000,
- "font": "Content",
- "control": "Column_Left",
- "style": "Default_None",
- "isAutoHeight": false,
- "area": {
- "Left": "4",
- "Right": "18",
- "Top": 0,
- "Bottom": 100,
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 12001,
- "font": "Content",
- "control": "Column_Left",
- "style": "Default_None",
- "isAutoHeight": false,
- "area": {
- "Left": "23",
- "Right": "38",
- "Top": 0,
- "Bottom": 100,
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 12002,
- "font": "Content",
- "control": "Column_Left",
- "style": "Default_None",
- "isAutoHeight": false,
- "area": {
- "Left": "46",
- "Right": "58",
- "Top": 0,
- "Bottom": 100,
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 12003,
- "font": "Content",
- "control": "Column_Left",
- "style": "Default_None",
- "isAutoHeight": false,
- "area": {
- "Left": "68",
- "Right": "80",
- "Top": 0,
- "Bottom": 100,
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 12004,
- "font": "Content",
- "control": "Column_Left",
- "style": "Default_None",
- "isAutoHeight": false,
- "area": {
- "Left": "90",
- "Right": "100",
- "Top": 0,
- "Bottom": 100,
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- }
- ],
- "text_s": [
- {
- "Label": "制表:",
- "font": "Content",
- "control": "Column_Left",
- "style": "Default_None",
- "Title": "",
- "area": {
- "Left": 0,
- "Right": "4",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "承包人:",
- "font": "Content",
- "control": "Column_Left",
- "style": "Default_None",
- "Title": "",
- "area": {
- "Left": "18",
- "Right": "23",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "监理工程师:",
- "font": "Content",
- "control": "Column_Left",
- "style": "Default_None",
- "Title": "",
- "area": {
- "Left": "38",
- "Right": "46",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "业主技术负责人:",
- "font": "Content",
- "control": "Column_Left",
- "style": "Default_None",
- "Title": "",
- "area": {
- "Left": "58",
- "Right": "68",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "业主项目负责人:",
- "font": "Content",
- "control": "Column_Left",
- "style": "Default_None",
- "Title": "",
- "area": {
- "Left": "80",
- "Right": "90",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- }
- ]
- }
- ],
- "流水式表_列": {
- "BandName": "ColumnBand",
- "text_s": [
- {
- "Label": "序号",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": 0,
- "Right": "3.76",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "章次",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": "3.76",
- "Right": "9.02",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "科目内容",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": "9.02",
- "Right": "22.84",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "原合同金额",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": "22.84",
- "Right": "31.67",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "设计修正金额",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": "31.67",
- "Right": "40.41",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "变更设计增减|金额",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": "40.41",
- "Right": "49.25",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "实际金额",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": "49.25",
- "Right": "58.08",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "废置金额",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": "58.08",
- "Right": "66.82",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "截止上期末累|计完成金额",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": "66.82",
- "Right": "75.66",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "截止本期末累|计完成金额",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": "75.66",
- "Right": "84.40",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "本期完成金额",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": "84.40",
- "Right": "93.23",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "备注",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": "93.23",
- "Right": "100.00",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- }
- ]
- },
- "多列显示数量": 1,
- "流水式表_数据": {
- "BandName": "ContentBand",
- "CommonHeight": "0.69",
- "flow_field_s": [
- {
- "FieldID": 12294,
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": 0,
- "Right": "3.76",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 2509,
- "font": "Content",
- "control": "Column_Left",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "3.76",
- "Right": "9.02",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 2511,
- "font": "Content",
- "control": "Column_Left",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "9.02",
- "Right": "22.84",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 2553,
- "font": "Content",
- "control": "Column_Right",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "22.84",
- "Right": "31.67",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 2523,
- "font": "Content",
- "control": "Column_Right",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "31.67",
- "Right": "40.41",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 12293,
- "font": "Content",
- "control": "Column_Right",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "49.25",
- "Right": "58.08",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 1199,
- "font": "Content",
- "control": "Column_Right",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "58.08",
- "Right": "66.82",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 2542,
- "font": "Content",
- "control": "Column_Right",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "66.82",
- "Right": "75.66",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 2548,
- "font": "Content",
- "control": "Column_Right",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "75.66",
- "Right": "84.40",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 2535,
- "font": "Content",
- "control": "Column_Right",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "84.40",
- "Right": "93.23",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 1199,
- "font": "Content",
- "control": "Content_Left",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "93.23",
- "Right": "100.00",
- "Top": 0,
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 12311,
- "font": "Content",
- "control": "Column_Right",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "40.41",
- "Right": "49.25",
- "Top": 0,
- "Bottom": 100,
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- }
- ]
- },
- "流水式表_分组信息": {
- "group_field_s": [],
- "sum_field_s": [],
- "group_lines": []
- },
- "流水式表_段统计信息": {
- "BandName": "newBand_1",
- "sum_field_s": [
- {
- "FieldID": 12297,
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "9.02",
- "Right": "31.67",
- "Top": "65.05",
- "Bottom": "82.52",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 12299,
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "9.02",
- "Right": "31.67",
- "Top": "82.52",
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 12301,
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "49.25",
- "Right": "66.82",
- "Top": "12.62",
- "Bottom": "47.57",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 12302,
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "49.25",
- "Right": "66.82",
- "Top": "47.57",
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 12304,
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "75.66",
- "Right": "93.23",
- "Top": "12.62",
- "Bottom": "47.57",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 12303,
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "75.66",
- "Right": "93.23",
- "Top": "47.57",
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 12305,
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "93.23",
- "Right": "100.00",
- "Top": "47.57",
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 2553,
- "font": "Content",
- "control": "Column_Right",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "22.84",
- "Right": "31.67",
- "Top": 0,
- "Bottom": "12.62",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 2523,
- "font": "Content",
- "control": "Column_Right",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "31.67",
- "Right": "40.41",
- "Top": 0,
- "Bottom": "12.62",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 12293,
- "font": "Content",
- "control": "Column_Right",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "49.25",
- "Right": "58.08",
- "Top": 0,
- "Bottom": "12.62",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 2542,
- "font": "Content",
- "control": "Column_Right",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "66.82",
- "Right": "75.66",
- "Top": 0,
- "Bottom": "12.62",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 2548,
- "font": "Content",
- "control": "Column_Right",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "75.66",
- "Right": "84.40",
- "Top": 0,
- "Bottom": "12.62",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 2535,
- "font": "Content",
- "control": "Column_Right",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "84.40",
- "Right": "93.23",
- "Top": 0,
- "Bottom": "12.62",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 12295,
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "22.84",
- "Right": "31.67",
- "Top": "30.1",
- "Bottom": "47.57",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 12296,
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "31.67",
- "Right": "40.41",
- "Top": "30.10",
- "Bottom": "47.57",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 12298,
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "31.67",
- "Right": "40.41",
- "Top": "65.05",
- "Bottom": "82.52",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 12300,
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "isAutoHeight": false,
- "area": {
- "Left": "31.67",
- "Right": "40.41",
- "Top": "82.52",
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 1123,
- "font": "Content",
- "control": "NewContent_Center",
- "style": "Default_None",
- "isAutoHeight": false,
- "area": {
- "Left": "9.02",
- "Right": "22.84",
- "Top": "30.1",
- "Bottom": "47.57",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "FieldID": 12311,
- "font": "Content",
- "control": "Column_Right",
- "style": "Default_None",
- "isAutoHeight": false,
- "area": {
- "Left": "40.41",
- "Right": "49.25",
- "Top": 0,
- "Bottom": "12.62",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- }
- ],
- "text_s": [
- {
- "Label": "小计",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": 0,
- "Right": "22.84",
- "Top": 0,
- "Bottom": "12.62",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "预付款",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": 0,
- "Right": "9.02",
- "Top": "12.62",
- "Bottom": "47.57",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "质保金5%",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": 0,
- "Right": "9.02",
- "Top": "47.57",
- "Bottom": "82.52",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "审计保留金|10%",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": 0,
- "Right": "9.02",
- "Top": "82.52",
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "已扣累计数",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": "9.02",
- "Right": "31.67",
- "Top": "47.57",
- "Bottom": "65.05",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "截止上期末|已付款累计",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": "40.41",
- "Right": "49.25",
- "Top": "12.62",
- "Bottom": "47.57",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "本期实际|支付金额",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": "40.41",
- "Right": "49.25",
- "Top": "47.57",
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "本期应付金额",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": "66.82",
- "Right": "75.66",
- "Top": "12.62",
- "Bottom": "47.57",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "截止本期末已|付款金额",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": "66.82",
- "Right": "75.66",
- "Top": "47.57",
- "Bottom": "100.00",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "截止本期末累计付款占累计完成金额%",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": "93.23",
- "Right": "100.00",
- "Top": "12.62",
- "Bottom": "47.57",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "",
- "font": "Content",
- "control": "Column_Right",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": "58.08",
- "Right": "66.82",
- "Top": 0,
- "Bottom": "12.62",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "",
- "font": "Content",
- "control": "Content_Left",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": "93.23",
- "Right": "100.00",
- "Top": 0,
- "Bottom": "12.62",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "预付款总额",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": "9.02",
- "Right": "22.84",
- "Top": "12.62",
- "Bottom": "30.10",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "已扣回累计数",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": "22.84",
- "Right": "31.67",
- "Top": "12.62",
- "Bottom": "30.10",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "本期应扣",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": "31.67",
- "Right": "40.41",
- "Top": "12.62",
- "Bottom": "30.10",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- },
- {
- "Label": "本期应扣",
- "font": "Content",
- "control": "Column",
- "style": "Default_Normal",
- "Title": "",
- "area": {
- "Left": "31.67",
- "Right": "40.41",
- "Top": "47.57",
- "Bottom": "65.05",
- "H_CalculationType": "percentage",
- "V_CalculationType": "percentage"
- }
- }
- ]
- },
- "流水式表_页统计信息": {
- "BandName": "",
- "sum_field_s": [],
- "text_s": []
- }
- },
- "离散参数_集合": [
- {
- "ID": "5001",
- "Name": "打印时间",
- "DataType": "String",
- "Default_Value": ""
- },
- {
- "ID": "5010",
- "Name": "当前页",
- "DataType": "String",
- "Default_Value": "第 X 页"
- },
- {
- "ID": "5011",
- "Name": "总页数",
- "DataType": "String",
- "Default_Value": "共 X 页"
- },
- {
- "ID": 12267,
- "Name": "标段_截止日期",
- "DataType": "string",
- "Default_Value": ""
- },
- {
- "ID": 12268,
- "Name": "标段_标段清单_施工单位",
- "DataType": "string",
- "Default_Value": ""
- }
- ],
- "指标_数据_映射": {
- "离散指标_集合": [
- {
- "ID": 1101,
- "Name": "标段_项目名称",
- "DataType": "string",
- "TableName": "tender_info",
- "mapExpression": "$PROJECT.REPORT.getProperty(\"tender_info\", \"deal_info.buildName\")",
- "descr": "",
- "Title": "ID: 1101"
- },
- {
- "ID": 1134,
- "Name": "标段_标段清单_承包单位1_单位名称",
- "DataType": "string",
- "TableName": "tender_info",
- "mapExpression": "$PROJECT.REPORT.getProperty(\"tender_info\", \"construction_unit.contract1.company\")",
- "descr": "",
- "Title": "ID: 1134"
- },
- {
- "ID": 1140,
- "Name": "标段_标段清单_监理单位1_单位名称",
- "DataType": "string",
- "TableName": "tender_info",
- "mapExpression": "$PROJECT.REPORT.getProperty(\"tender_info\", \"construction_unit.supervision1.company\")",
- "descr": "",
- "Title": "ID: 1140"
- },
- {
- "ID": 1102,
- "Name": "标段_合同编号",
- "DataType": "string",
- "TableName": "tender_info",
- "mapExpression": "$PROJECT.REPORT.getProperty(\"tender_info\", \"deal_info.dealCode\")",
- "descr": "",
- "Title": "ID: 1102"
- },
- {
- "ID": 1150,
- "Name": "标段_技术参数_合同期限",
- "DataType": "string",
- "TableName": "tender_info",
- "mapExpression": "$PROJECT.REPORT.getProperty(\"tender_info\", \"tech_param.dealPeriod\")",
- "descr": "",
- "Title": "ID: 1150"
- },
- {
- "ID": 1300,
- "Name": "期计量信息_期数",
- "DataType": "number",
- "TableName": "stage",
- "mapExpression": "$PROJECT.REPORT.getProperty(\"stage\", \"order\")",
- "descr": "",
- "Title": "ID: 1300"
- },
- {
- "ID": 1132,
- "Name": "标段_标段清单_章节代码",
- "DataType": "array",
- "TableName": "tender_info",
- "mapExpression": "$PROJECT.REPORT.getArrayProperty(\"tender_info\", \"chapter.code\")",
- "descr": "",
- "Title": "ID: 1132"
- },
- {
- "ID": 1133,
- "Name": "标段_标段清单_章节名称",
- "DataType": "array",
- "TableName": "tender_info",
- "mapExpression": "$PROJECT.REPORT.getArrayProperty(\"tender_info\", \"chapter.name\")",
- "descr": "",
- "Title": "ID: 1133"
- },
- {
- "ID": 1312,
- "Name": "期计量信息_截至日期",
- "DataType": "string",
- "TableName": "stage",
- "mapExpression": "$PROJECT.REPORT.getSplitProperty(\"stage\", \"period\", \" ~ \", 1, \"\")",
- "descr": "",
- "Title": "ID: 1312"
- },
- {
- "ID": 1300,
- "Name": "期计量信息_期数",
- "DataType": "number",
- "TableName": "stage",
- "mapExpression": "$PROJECT.REPORT.getProperty(\"stage\", \"order\")",
- "descr": "",
- "Title": "ID: 1300"
- },
- {
- "ID": 1103,
- "Name": "标段_合同名称",
- "DataType": "string",
- "TableName": "tender_info",
- "mapExpression": "$PROJECT.REPORT.getProperty(\"tender_info\", \"deal_info.dealName\")",
- "descr": "",
- "Title": "ID: 1103"
- }
- ],
- "主数据指标_集合": [],
- "从数据指标_集合": [
- {
- "ID": 2510,
- "Name": "清单编号(b_code)",
- "DataType": "string",
- "TableName": "mem_stage_bills",
- "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_bills', 'b_code')",
- "descr": "",
- "Title": "ID: 2510"
- },
- {
- "ID": 2511,
- "Name": "名称(name)",
- "DataType": "string",
- "TableName": "mem_stage_bills",
- "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_bills', 'name')",
- "descr": "",
- "Title": "ID: 2511"
- },
- {
- "ID": 2515,
- "Name": "签约-金额(deal_tp)",
- "DataType": "currency",
- "TableName": "mem_stage_bills",
- "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_bills', 'deal_tp')",
- "descr": "",
- "Title": "ID: 2515",
- "Precision": {
- "type": "fixed",
- "fixedMapExpression": "$PROJECT.REPORT.getProperty('tender_info', 'decimal.tp')"
- }
- },
- {
- "ID": 2509,
- "Name": "项目节编号(code)",
- "DataType": "string",
- "TableName": "mem_stage_bills",
- "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_bills', 'code')",
- "descr": "",
- "Title": "ID: 2509"
- },
- {
- "ID": 2548,
- "Name": "截止本期-完成-金额(end_gather_tp)",
- "DataType": "currency",
- "TableName": "mem_stage_bills",
- "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_bills', 'end_gather_tp')",
- "descr": "",
- "Title": "ID: 2548",
- "Precision": {
- "type": "fixed",
- "fixedMapExpression": "$PROJECT.REPORT.getProperty('tender_info', 'decimal.tp')"
- }
- },
- {
- "ID": 2542,
- "Name": "截止上期-完成-金额(pre_gather_tp)",
- "DataType": "currency",
- "TableName": "mem_stage_bills",
- "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_bills', 'pre_gather_tp')",
- "descr": "",
- "Title": "ID: 2542",
- "Precision": {
- "type": "fixed",
- "fixedMapExpression": "$PROJECT.REPORT.getProperty('tender_info', 'decimal.tp')"
- }
- },
- {
- "ID": 2535,
- "Name": "本期-完成-金额(gather_tp)",
- "DataType": "currency",
- "TableName": "mem_stage_bills",
- "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_bills', 'gather_tp')",
- "descr": "",
- "Title": "ID: 2535",
- "Precision": {
- "type": "fixed",
- "fixedMapExpression": "$PROJECT.REPORT.getProperty('tender_info', 'decimal.tp')"
- }
- },
- {
- "ID": 2523,
- "Name": "台账-金额(total_price)",
- "DataType": "currency",
- "TableName": "mem_stage_bills",
- "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_bills', 'total_price')",
- "descr": "",
- "Title": "ID: 2523",
- "Precision": {
- "type": "fixed",
- "fixedMapExpression": "$PROJECT.REPORT.getProperty('tender_info', 'decimal.tp')"
- }
- },
- {
- "ID": 2912,
- "Name": "变更清单-审批变更后-金额(s_tp)",
- "DataType": "currency",
- "TableName": "mem_change_bills",
- "mapExpression": "$PROJECT.REPORT.getProperty('mem_change_bills', 's_tp')",
- "descr": "",
- "Title": "ID: 2912",
- "Precision": {
- "type": "fixed",
- "fixedMapExpression": "$PROJECT.REPORT.getProperty('tender_info', 'decimal.tp')"
- }
- },
- {
- "ID": 2508,
- "Name": "树结构-是否子项(is_leaf)",
- "DataType": "int",
- "TableName": "mem_stage_bills",
- "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_bills', 'is_leaf')",
- "descr": "",
- "Title": "ID: 2508"
- },
- {
- "ID": 1199,
- "Name": "标段_空白",
- "DataType": "string",
- "TableName": "tender_info",
- "mapExpression": "$PROJECT.REPORT.getBlank(\"tender_info\", \"\")",
- "descr": "",
- "Title": "ID: 1199"
- },
- {
- "ID": 2553,
- "Name": "预留扩展字段_1(ex_value1)",
- "DataType": "currency",
- "TableName": "mem_stage_bills",
- "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_bills', 'ex_value1')",
- "descr": "",
- "Title": "ID: 2553"
- },
- {
- "ID": 2554,
- "Name": "预留扩展字段_2(ex_value2)",
- "DataType": "currency",
- "TableName": "mem_stage_bills",
- "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_bills', 'ex_value2')",
- "descr": "",
- "Title": "ID: 2554"
- },
- {
- "ID": 1605,
- "Name": "签约清单信息_合价(total_price)",
- "DataType": "currency",
- "TableName": "deal_bills",
- "mapExpression": "$PROJECT.REPORT.getProperty(\"deal_bills\", \"total_price\")",
- "descr": "",
- "Title": "ID: 1605",
- "Precision": {
- "type": "fixed",
- "fixedMapExpression": "$PROJECT.REPORT.getProperty(\"tender_info\", \"decimal.tp\")"
- }
- },
- {
- "ID": 2701,
- "Name": "期-合同支付-名称(name)",
- "DataType": "string",
- "TableName": "mem_stage_pay",
- "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_pay', 'name')",
- "descr": "",
- "Title": "ID: 2701"
- },
- {
- "ID": 2705,
- "Name": "期-合同支付-截止本期-金额(end_tp)",
- "DataType": "currency",
- "TableName": "mem_stage_pay",
- "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_pay', 'end_tp')",
- "descr": "",
- "Title": "ID: 2705",
- "Precision": {
- "type": "fixed",
- "fixedMapExpression": "$PROJECT.REPORT.getProperty('tender_info', 'decimal._pay_tp')"
- }
- },
- {
- "ID": 2703,
- "Name": "期-合同支付-金额(tp)",
- "DataType": "currency",
- "TableName": "mem_stage_pay",
- "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_pay', 'tp')",
- "descr": "",
- "Title": "ID: 2703",
- "Precision": {
- "type": "fixed",
- "fixedMapExpression": "$PROJECT.REPORT.getProperty('tender_info', 'decimal._pay_tp')"
- }
- },
- {
- "ID": 2704,
- "Name": "期-合同支付-截止上期-金额(pre_tp)",
- "DataType": "currency",
- "TableName": "mem_stage_pay",
- "mapExpression": "$PROJECT.REPORT.getProperty('mem_stage_pay', 'pre_tp')",
- "descr": "",
- "Title": "ID: 2704",
- "Precision": {
- "type": "fixed",
- "fixedMapExpression": "$PROJECT.REPORT.getProperty('tender_info', 'decimal._pay_tp')"
- }
- },
- {
- "ID": 1123,
- "Name": "标段_签约开工预付款",
- "DataType": "number",
- "TableName": "tender_info",
- "mapExpression": "$PROJECT.REPORT.getProperty(\"tender_info\", \"deal_param.startAdvance\")",
- "descr": "",
- "Title": "ID: 1123"
- },
- {
- "ID": 2903,
- "Name": "变更清单-清单编号(code)",
- "DataType": "string",
- "TableName": "mem_change_bills",
- "mapExpression": "$PROJECT.REPORT.getProperty('mem_change_bills', 'code')",
- "descr": "",
- "Title": "ID: 2903"
- }
- ],
- "主数据指标_拓展集合": [],
- "从数据指标_拓展集合": []
- },
- "映射数据预处理": [
- {
- "预处理类型": "指定方式",
- "映射数据对象": "",
- "方式Key": "gatherChapter",
- "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章数据",
- "fields": [
- {
- "Name": "清单编号(b_code)",
- "FieldID": 2510
- },
- {
- "Name": "树结构-是否子项(is_leaf)",
- "FieldID": 2508
- }
- ],
- "自定义设置": "{\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}"
- }
- ],
- "无映射离散指标_集合": [
- {
- "ID": 12293,
- "Name": "新台账+变更",
- "DataType": "string"
- },
- {
- "ID": 12294,
- "Name": "新序号",
- "DataType": "string"
- },
- {
- "ID": 12295,
- "Name": "扣回开工预付款-累计",
- "DataType": "string"
- },
- {
- "ID": 12296,
- "Name": "扣回开工预付款-本期",
- "DataType": "string"
- },
- {
- "ID": 12297,
- "Name": "质量保证金-到上期",
- "DataType": "string"
- },
- {
- "ID": 12298,
- "Name": "质量保证金-本期",
- "DataType": "string"
- },
- {
- "ID": 12299,
- "Name": "审计保留金-到上期",
- "DataType": "string"
- },
- {
- "ID": 12300,
- "Name": "审计保留金-本期",
- "DataType": "string"
- },
- {
- "ID": 12301,
- "Name": "实付-到上期",
- "DataType": "string"
- },
- {
- "ID": 12302,
- "Name": "实付-本期",
- "DataType": "string"
- },
- {
- "ID": 12303,
- "Name": "实付-到本期",
- "DataType": "string"
- },
- {
- "ID": 12304,
- "Name": "应付-本期",
- "DataType": "string"
- },
- {
- "ID": 12305,
- "Name": "比例",
- "DataType": "string"
- },
- {
- "ID": 12306,
- "Name": "合同编号+期数",
- "DataType": "string"
- },
- {
- "ID": 12310,
- "Name": "新批复变更清单",
- "DataType": "string"
- },
- {
- "ID": 12311,
- "Name": "新变更批复金额",
- "DataType": "string"
- }
- ],
- "动态日期离散参数_集合": [],
- "电子签名离散指标_集合": [
- {
- "ID": 12000,
- "Name": "制表",
- "DataType": "string"
- },
- {
- "ID": 12001,
- "Name": "承包人",
- "DataType": "string"
- },
- {
- "ID": 12002,
- "Name": "监理工程师",
- "DataType": "string"
- },
- {
- "ID": 12003,
- "Name": "业主技术负责人",
- "DataType": "string"
- },
- {
- "ID": 12004,
- "Name": "业主项目负责人",
- "DataType": "string"
- }
- ]
- }
|