123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071 |
- {"node_id":1,"text":"三峡左岸及地下电站地坪整治招标","node_type":"text","parent":0,"children":[],"para_type":"text","pageno":0,"layout_index":0,"box":[117,116,361,26]}
- {"node_id":2,"text":"投标文件","node_type":"title","parent":0,"children":[],"para_type":"title_2","pageno":0,"layout_index":1,"box":[177,245,240,66]}
- {"node_id":3,"text":"(商务标)","node_type":"title","parent":0,"children":[4,5,6,7,8,9],"para_type":"title_1","pageno":0,"layout_index":2,"box":[207,358,180,39]}
- {"node_id":4,"text":"投标人:上海绰琪新型建材科技有限公司(企业CA电子印章)","node_type":"text","parent":3,"children":[],"para_type":"text","pageno":0,"layout_index":3,"box":[141,664,390,15]}
- {"node_id":5,"text":"法定代表人:","node_type":"text","parent":3,"children":[],"para_type":"text","pageno":0,"layout_index":4,"box":[136,691,84,15]}
- {"node_id":6,"text":"朱涛","node_type":"text","parent":3,"children":[],"para_type":"text","pageno":0,"layout_index":5,"box":[241,691,28,15]}
- {"node_id":7,"text":"(法定代表人CA电子印章)","node_type":"text","parent":3,"children":[],"para_type":"text","pageno":0,"layout_index":6,"box":[318,691,169,15]}
- {"node_id":8,"text":"2022年9月3日","node_type":"text","parent":3,"children":[],"para_type":"text","pageno":0,"layout_index":7,"box":[237,718,155,15]}
- {"node_id":9,"text":"1 ","node_type":"text","parent":3,"children":[],"para_type":"text","pageno":0,"layout_index":8,"box":[295,786,8,9]}
- {"node_id":10,"text":"目录","node_type":"title","parent":0,"children":[11,12,13,14,15,16,17,54],"para_type":"title_1","pageno":1,"layout_index":0,"box":[258,85,78,28]}
- {"node_id":11,"text":"第一章投标函及投标函附录第二章合规承诺函第三章授权委托书、法定代表人身份证明第四章投标保证金第五章已标价工程量清单第六章施工组织设计(参见技术标)第七章项目管理机构第八章资格审查资料第九章投标关键技术、部件、设备及材料来源表第十章构成投标文件的其他材料","node_type":"contents","parent":10,"children":[],"para_type":"contents","pageno":1,"layout_index":1,"box":[123,139,390,439]}
- {"node_id":12,"text":"PDF附件:","node_type":"text","parent":10,"children":[],"para_type":"text","pageno":1,"layout_index":2,"box":[94,619,55,13]}
- {"node_id":13,"text":"1、2020-2021财务审计报告","node_type":"text","parent":10,"children":[],"para_type":"text","pageno":1,"layout_index":3,"box":[94,634,145,13]}
- {"node_id":14,"text":"2、四川永祥项目验收报告","node_type":"text","parent":10,"children":[],"para_type":"text","pageno":1,"layout_index":4,"box":[94,650,139,13]}
- {"node_id":15,"text":"3、硅晶石产品检测报告(物理、化学、防火等级三套报告)","node_type":"text","parent":10,"children":[],"para_type":"text","pageno":1,"layout_index":5,"box":[94,665,319,13]}
- {"node_id":16,"text":"2 ","node_type":"head_tail","parent":10,"children":[],"para_type":"head_tail","pageno":1,"layout_index":6,"box":[295,786,8,9]}
- {"node_id":17,"text":"第一章投标函及投标函附录","node_type":"title","parent":10,"children":[18,48],"para_type":"title_2","pageno":2,"layout_index":0,"box":[193,76,208,17]}
- {"node_id":18,"text":"(一)投标函","node_type":"title","parent":17,"children":[19,20,21,22,23,24],"para_type":"title_4","pageno":2,"layout_index":1,"box":[255,110,84,15]}
- {"node_id":19,"text":"中国长江电力股份有限公司(招标人名称):","node_type":"text","parent":18,"children":[],"para_type":"text","pageno":2,"layout_index":2,"box":[76,136,214,11]}
- {"node_id":20,"text":"1.我方已仔细研究了三峡左岸及地下电站地坪整治(项目名称)施工招标文件的全部内容,愿意以人民币(大写)壹仟伍佰捌拾肆万伍仟伍佰肆拾陆元肆角捌分(¥15845546.48元)的投标总报价,工期760日历天,按合同约定实施和完成承包工程,修补工程中的任何缺陷,工程质量达到合格。","node_type":"text","parent":18,"children":[],"para_type":"text","pageno":2,"layout_index":3,"box":[70,157,453,72]}
- {"node_id":21,"text":"2.我方承诺在投标有效期内不修改、撤销投标文件。","node_type":"text","parent":18,"children":[],"para_type":"text","pageno":2,"layout_index":4,"box":[94,240,247,11]}
- {"node_id":22,"text":"3.随同本投标函提交投标保证金一份,金额为人民币(大写)叁拾万元(¥300000.00 ","node_type":"text","parent":18,"children":[],"para_type":"text","pageno":2,"layout_index":5,"box":[94,259,397,13]}
- {"node_id":23,"text":")。","node_type":"text","parent":18,"children":[],"para_type":"text","pageno":2,"layout_index":6,"box":[513,259,16,11]}
- {"node_id":24,"text":"4.如我方中标:","node_type":"title","parent":18,"children":[25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47],"para_type":"title_5","pageno":2,"layout_index":7,"box":[94,281,79,11]}
- {"node_id":25,"text":"(1)我方承诺在收到中标通知书后,在中标通知书规定的期限内与你方签订合同;","node_type":"text","parent":24,"children":[],"para_type":"text","pageno":2,"layout_index":8,"box":[94,300,383,11]}
- {"node_id":26,"text":"(2)随同本投标函递交的投标函附录属于合同文件的组成部分;","node_type":"text","parent":24,"children":[],"para_type":"text","pageno":2,"layout_index":9,"box":[94,320,299,11]}
- {"node_id":27,"text":"(3)我方承诺按照招标文件规定向你方递交履约担保;","node_type":"text","parent":24,"children":[],"para_type":"text","pageno":2,"layout_index":10,"box":[94,341,257,11]}
- {"node_id":28,"text":"(4)我方承诺在合同约定的期限内完成并移交全部合同工程。","node_type":"text","parent":24,"children":[],"para_type":"text","pageno":2,"layout_index":11,"box":[94,361,289,11]}
- {"node_id":29,"text":"5.我方已经知晓中国长江三峡集团有限公司有关投标和合同履行的管理制度,并承诺将严格遵守。","node_type":"text","parent":24,"children":[],"para_type":"text","pageno":2,"layout_index":12,"box":[70,381,453,32]}
- {"node_id":30,"text":"6.我方在此声明,所递交的投标文件及有关资料内容完整、真实和准确。","node_type":"text","parent":24,"children":[],"para_type":"text","pageno":2,"layout_index":13,"box":[94,422,341,11]}
- {"node_id":31,"text":"7.我方同意按照你方要求提供与我方投标有关的一切数据或资料,完全理解你方不一定接受最低价的投标或收到的任何投标。","node_type":"text","parent":24,"children":[],"para_type":"text","pageno":2,"layout_index":14,"box":[70,443,453,31]}
- {"node_id":32,"text":"8.(其他补充说明)。","node_type":"text","parent":24,"children":[],"para_type":"text","pageno":2,"layout_index":15,"box":[94,484,352,11]}
- {"node_id":33,"text":"9. 法定代理人或其委托代理人的联系方式及电子邮箱:","node_type":"text","parent":24,"children":[],"para_type":"text","pageno":2,"layout_index":16,"box":[94,504,257,11]}
- {"node_id":34,"text":"电话:18616632076 ","node_type":"text","parent":24,"children":[],"para_type":"text","pageno":2,"layout_index":17,"box":[94,524,99,11]}
- {"node_id":35,"text":"电子邮箱:834751909@qq.com ","node_type":"text","parent":24,"children":[],"para_type":"text","pageno":2,"layout_index":18,"box":[283,524,145,11]}
- {"node_id":36,"text":"投标人:上海绰琪新型建材科技有限公司(企业CA 电子印章)","node_type":"text","parent":24,"children":[],"para_type":"text","pageno":2,"layout_index":19,"box":[154,566,303,11]}
- {"node_id":37,"text":"法定代表人:朱涛(法定代表人CA电子印章)","node_type":"text","parent":24,"children":[],"para_type":"text","pageno":2,"layout_index":20,"box":[201,586,234,11]}
- {"node_id":38,"text":"地址","node_type":"text","parent":24,"children":[],"para_type":"text","pageno":2,"layout_index":21,"box":[201,606,20,11]}
- {"node_id":39,"text":"上海市闵行区东晨三路3号","node_type":"text","parent":24,"children":[],"para_type":"text","pageno":2,"layout_index":22,"box":[232,606,126,11]}
- {"node_id":40,"text":"邮编","node_type":"text","parent":24,"children":[],"para_type":"text","pageno":2,"layout_index":23,"box":[374,606,20,11]}
- {"node_id":41,"text":"电话021-34730118 ","node_type":"text","parent":24,"children":[],"para_type":"text","pageno":2,"layout_index":24,"box":[201,627,106,13]}
- {"node_id":42,"text":"传真021-34730119 ","node_type":"text","parent":24,"children":[],"para_type":"text","pageno":2,"layout_index":25,"box":[330,627,91,13]}
- {"node_id":43,"text":"电子邮箱834751909@qq.com ","node_type":"text","parent":24,"children":[],"para_type":"text","pageno":2,"layout_index":26,"box":[201,647,155,13]}
- {"node_id":44,"text":"网址:","node_type":"text","parent":24,"children":[],"para_type":"text","pageno":2,"layout_index":27,"box":[201,668,31,11]}
- {"node_id":45,"text":"www.chuoqi-group.com ","node_type":"text","parent":24,"children":[],"para_type":"text","pageno":2,"layout_index":28,"box":[248,669,106,11]}
- {"node_id":46,"text":"2022年9 月3日","node_type":"text","parent":24,"children":[],"para_type":"text","pageno":2,"layout_index":29,"box":[382,688,141,13]}
- {"node_id":47,"text":"3 ","node_type":"head_tail","parent":24,"children":[],"para_type":"head_tail","pageno":2,"layout_index":30,"box":[295,786,8,9]}
- {"node_id":48,"text":"(二)投标函附录","node_type":"title","parent":17,"children":[49,50,51,52,53],"para_type":"title_4","pageno":3,"layout_index":0,"box":[247,72,107,14]}
- {"node_id":49,"text":[["序号","条款内容","合同条款号","约定内容","备注"],["1","项目经理","1.1.2.4","姓名:方海涛","\/"],["1","项目经理","1.1.2.4","建造师注册证书级别:二级专业:建筑工程"],["1","项目经理","1.1.2.4","注册证书编号:沪231152203096"],["2","工期","1.1.4.3","760日历天"],["3","缺陷责任期","1.1.4.5","24个月"],["4","承包人履约担保金额","4.2","签约合同价的10%"],["5","质量标准","13.1","合格"],["6","质量保证金扣留百分比","17.4.1","3%"],["备注:投标人在响应招标文件中规定的实质性要求和条件的基础上,可做出其他有利于招标人的承诺。此类承诺可在本表中予以补充填写。","备注:投标人在响应招标文件中规定的实质性要求和条件的基础上,可做出其他有利于招标人的承诺。此类承诺可在本表中予以补充填写。","备注:投标人在响应招标文件中规定的实质性要求和条件的基础上,可做出其他有利于招标人的承诺。此类承诺可在本表中予以补充填写。","备注:投标人在响应招标文件中规定的实质性要求和条件的基础上,可做出其他有利于招标人的承诺。此类承诺可在本表中予以补充填写。","备注:投标人在响应招标文件中规定的实质性要求和条件的基础上,可做出其他有利于招标人的承诺。此类承诺可在本表中予以补充填写。"],[""]],"node_type":"table","parent":48,"children":[],"para_type":"table","pageno":3,"layout_index":1,"box":[70,97,453,310]}
- {"node_id":50,"text":"投标人:上海绰琪新型建材科技有限公司(企业CA电子印章)","node_type":"text","parent":48,"children":[],"para_type":"text","pageno":3,"layout_index":2,"box":[178,454,345,12]}
- {"node_id":51,"text":"法定代表人:朱涛(法定代表人CA电子印章)","node_type":"text","parent":48,"children":[],"para_type":"text","pageno":3,"layout_index":3,"box":[219,478,274,11]}
- {"node_id":52,"text":"2022年9月3日","node_type":"text","parent":48,"children":[],"para_type":"text","pageno":3,"layout_index":4,"box":[380,500,143,14]}
- {"node_id":53,"text":"4","node_type":"head_tail","parent":48,"children":[],"para_type":"head_tail","pageno":3,"layout_index":5,"box":[293,784,7,8]}
- {"node_id":54,"text":"第二章合规承诺函","node_type":"title","parent":10,"children":[],"para_type":"title_2","pageno":4,"layout_index":0,"box":[216,73,162,19]}
- {"node_id":55,"text":"合规承诺函","node_type":"title","parent":0,"children":[56,57,58,59,60,61,62,63,64,65,66,67,68,69],"para_type":"title_1","pageno":4,"layout_index":1,"box":[262,111,70,15]}
- {"node_id":56,"text":"中国长江电力股份有限公司:","node_type":"text","parent":55,"children":[],"para_type":"text","pageno":4,"layout_index":2,"box":[70,137,156,13]}
- {"node_id":57,"text":"为与中国长江电力股份有限公司建立互惠互利的良好商业合作关系,全面响应贵公司的合规要求,投标人特作出以下承诺:","node_type":"text","parent":55,"children":[],"para_type":"text","pageno":4,"layout_index":3,"box":[70,161,454,36]}
- {"node_id":58,"text":"一、投标人及其关联人严格遵守所有适用的法律法规、行业管理规范及业务监管要求,未实施且不会实施任何可能使中国长江电力股份有限公司承担法律责任的行为;","node_type":"text","parent":55,"children":[],"para_type":"text","pageno":4,"layout_index":4,"box":[70,207,454,37]}
- {"node_id":59,"text":"二、投标人及其关联人均未以影响商业决策或获取不正当利益为目的,直接或间接向任何人士或相关方提供、支付、给予或承诺提供、支付、给予任何形式的贿赂、回扣及特殊待遇;","node_type":"text","parent":55,"children":[],"para_type":"text","pageno":4,"layout_index":5,"box":[70,254,454,60]}
- {"node_id":60,"text":"三、投标人及其业务合作伙伴将全面协助和配合中国长江电力股份有限公司的所有商业行为符合合规要求;","node_type":"text","parent":55,"children":[],"para_type":"text","pageno":4,"layout_index":6,"box":[70,324,454,36]}
- {"node_id":61,"text":"四、投标人所提供的任何声明、信息和业务陈述都是准确真实的;","node_type":"text","parent":55,"children":[],"para_type":"text","pageno":4,"layout_index":7,"box":[94,371,348,13]}
- {"node_id":62,"text":"五、投标人违反以上承诺,应承担违约责任,包括赔偿中国长江电力股份有限公司因此遭受的全部损失。","node_type":"text","parent":55,"children":[],"para_type":"text","pageno":4,"layout_index":8,"box":[70,394,454,37]}
- {"node_id":63,"text":"特此承诺。","node_type":"text","parent":55,"children":[],"para_type":"text","pageno":4,"layout_index":9,"box":[94,441,60,13]}
- {"node_id":64,"text":"投标人:上海绰琪新型建材科技有限公司(企业CA电子印章)","node_type":"text","parent":55,"children":[],"para_type":"text","pageno":4,"layout_index":10,"box":[166,511,353,13]}
- {"node_id":65,"text":"法定代表人:朱涛","node_type":"text","parent":55,"children":[],"para_type":"text","pageno":4,"layout_index":11,"box":[166,534,108,13]}
- {"node_id":66,"text":"(法定代表人CA电子印章)","node_type":"text","parent":55,"children":[],"para_type":"text","pageno":4,"layout_index":12,"box":[304,534,155,13]}
- {"node_id":67,"text":"2022年9月3日","node_type":"text","parent":55,"children":[],"para_type":"text","pageno":4,"layout_index":13,"box":[382,581,111,13]}
- {"node_id":68,"text":"5 ","node_type":"head_tail","parent":55,"children":[],"para_type":"head_tail","pageno":4,"layout_index":14,"box":[295,786,8,9]}
- {"node_id":69,"text":"第三章授权委托书、法定代表人身份证明","node_type":"title","parent":55,"children":[],"para_type":"title_2","pageno":5,"layout_index":0,"box":[125,72,343,19]}
- {"node_id":70,"text":"授权委托书","node_type":"title","parent":0,"children":[71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93],"para_type":"title_1","pageno":5,"layout_index":1,"box":[261,134,71,14]}
- {"node_id":71,"text":"本人朱涛(姓名)系上海绰琪新型建材科技有限公司(投标人名称)的法定代表人,现委托余浩(姓名)为我方代理人。代理人根据授权,以我方名义签署、澄清、说明、补正、递交、撤回、修改三峡左岸及地下电站地坪整治(项目名称)施工投标文件、签订合同和处理有关事宜,其法律后果由我方承担。","node_type":"text","parent":70,"children":[],"para_type":"text","pageno":5,"layout_index":2,"box":[70,181,453,82]}
- {"node_id":72,"text":"代理人无转委托权。","node_type":"text","parent":70,"children":[],"para_type":"text","pageno":5,"layout_index":3,"box":[94,275,101,11]}
- {"node_id":73,"text":"附:委托代理人身份证明","node_type":"text","parent":70,"children":[],"para_type":"text","pageno":5,"layout_index":4,"box":[94,298,131,12]}
- {"node_id":74,"text":"址江苏省宁邱集镇姚圩村259号","node_type":"text","parent":70,"children":[],"para_type":"text","pageno":5,"layout_index":5,"box":[107,416,114,19]}
- {"node_id":75,"text":"姓名余浩","node_type":"text","parent":70,"children":[],"para_type":"text","pageno":5,"layout_index":6,"box":[107,367,51,10]}
- {"node_id":76,"text":"性男民汉","node_type":"text","parent":70,"children":[],"para_type":"text","pageno":5,"layout_index":7,"box":[107,384,78,9]}
- {"node_id":77,"text":"出生1975年8月29日","node_type":"text","parent":70,"children":[],"para_type":"text","pageno":5,"layout_index":8,"box":[107,400,96,10]}
- {"node_id":78,"text":"公民份号码320324197508295676","node_type":"text","parent":70,"children":[],"para_type":"text","pageno":5,"layout_index":9,"box":[108,457,169,9]}
- {"node_id":79,"text":"中华人民共和国","node_type":"text","parent":70,"children":[],"para_type":"text","pageno":5,"layout_index":10,"box":[376,365,106,15]}
- {"node_id":80,"text":"居民身份证","node_type":"text","parent":70,"children":[],"para_type":"text","pageno":5,"layout_index":11,"box":[369,387,120,19]}
- {"node_id":81,"text":"签发机关雅宁县公安局","node_type":"text","parent":70,"children":[],"para_type":"text","pageno":5,"layout_index":12,"box":[359,444,78,7]}
- {"node_id":82,"text":"有效期限2007.10.02-2027.10.02","node_type":"text","parent":70,"children":[],"para_type":"text","pageno":5,"layout_index":13,"box":[358,460,113,7]}
- {"node_id":83,"text":"投标人:上海绰琪新型建材科技有限公司(企业CA电子印章)","node_type":"text","parent":70,"children":[],"para_type":"text","pageno":5,"layout_index":14,"box":[100,510,340,11]}
- {"node_id":84,"text":"法定代表人:","node_type":"text","parent":70,"children":[],"para_type":"text","pageno":5,"layout_index":15,"box":[100,534,64,11]}
- {"node_id":85,"text":"朱涛","node_type":"text","parent":70,"children":[],"para_type":"text","pageno":5,"layout_index":16,"box":[190,534,55,11]}
- {"node_id":86,"text":"(法定代表人CA电子印章)","node_type":"text","parent":70,"children":[],"para_type":"text","pageno":5,"layout_index":17,"box":[244,534,143,11]}
- {"node_id":87,"text":"身份证号码:320324196904290338","node_type":"text","parent":70,"children":[],"para_type":"text","pageno":5,"layout_index":18,"box":[101,557,203,12]}
- {"node_id":88,"text":"委托代理人:","node_type":"text","parent":70,"children":[],"para_type":"text","pageno":5,"layout_index":19,"box":[100,604,64,12]}
- {"node_id":89,"text":"身份证号码:320324197508295676","node_type":"text","parent":70,"children":[],"para_type":"text","pageno":5,"layout_index":20,"box":[101,628,203,12]}
- {"node_id":90,"text":"(签字)","node_type":"text","parent":70,"children":[],"para_type":"text","pageno":5,"layout_index":21,"box":[410,604,36,12]}
- {"node_id":91,"text":"2022年9月3日","node_type":"text","parent":70,"children":[],"para_type":"text","pageno":5,"layout_index":22,"box":[201,650,197,14]}
- {"node_id":92,"text":"注:若法定代表人不委托代理人,则只需出具法定代表人身份证明。","node_type":"text","parent":70,"children":[],"para_type":"text","pageno":5,"layout_index":23,"box":[91,698,309,11]}
- {"node_id":93,"text":"6","node_type":"head_tail","parent":70,"children":[],"para_type":"head_tail","pageno":5,"layout_index":24,"box":[293,784,6,9]}
- {"node_id":94,"text":"附:法定代表人身份证明","node_type":"title","parent":0,"children":[95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115],"para_type":"title_1","pageno":6,"layout_index":0,"box":[220,72,154,15]}
- {"node_id":95,"text":"投标人名称:上海绰琪新型建材科技有限公司","node_type":"text","parent":94,"children":[],"para_type":"text","pageno":6,"layout_index":1,"box":[94,120,246,13]}
- {"node_id":96,"text":"单位性质:有限责任公司","node_type":"text","parent":94,"children":[],"para_type":"text","pageno":6,"layout_index":2,"box":[94,143,167,13]}
- {"node_id":97,"text":"地址:上海市闵行区东晨三路3号","node_type":"text","parent":94,"children":[],"para_type":"text","pageno":6,"layout_index":3,"box":[94,167,223,13]}
- {"node_id":98,"text":"成立时间:2018 ","node_type":"text","parent":94,"children":[],"para_type":"text","pageno":6,"layout_index":4,"box":[94,190,115,15]}
- {"node_id":99,"text":"年","node_type":"text","parent":94,"children":[],"para_type":"text","pageno":6,"layout_index":5,"box":[253,190,11,13]}
- {"node_id":100,"text":"8 ","node_type":"text","parent":94,"children":[],"para_type":"text","pageno":6,"layout_index":6,"box":[283,192,11,13]}
- {"node_id":101,"text":"月","node_type":"text","parent":94,"children":[],"para_type":"text","pageno":6,"layout_index":7,"box":[320,190,12,13]}
- {"node_id":102,"text":"9 ","node_type":"text","parent":94,"children":[],"para_type":"text","pageno":6,"layout_index":8,"box":[350,192,11,13]}
- {"node_id":103,"text":"日","node_type":"text","parent":94,"children":[],"para_type":"text","pageno":6,"layout_index":9,"box":[386,190,12,13]}
- {"node_id":104,"text":"经营期限:2018年8月9日至2048年8月8日","node_type":"text","parent":94,"children":[],"para_type":"text","pageno":6,"layout_index":10,"box":[94,214,269,15]}
- {"node_id":105,"text":"姓名:朱涛性别:男年龄:53 职务:经理","node_type":"text","parent":94,"children":[],"para_type":"text","pageno":6,"layout_index":11,"box":[94,237,320,15]}
- {"node_id":106,"text":"系","node_type":"text","parent":94,"children":[],"para_type":"text","pageno":6,"layout_index":12,"box":[94,260,12,13]}
- {"node_id":107,"text":"上海绰琪新型建材科技有限公司","node_type":"text","parent":94,"children":[],"para_type":"text","pageno":6,"layout_index":13,"box":[118,260,168,13]}
- {"node_id":108,"text":"(投标人名称)的法定代表人。","node_type":"text","parent":94,"children":[],"para_type":"text","pageno":6,"layout_index":14,"box":[304,260,168,13]}
- {"node_id":109,"text":"特此证明。","node_type":"text","parent":94,"children":[],"para_type":"text","pageno":6,"layout_index":15,"box":[94,304,60,13]}
- {"node_id":110,"text":"附:法定代表人身份证件扫描件","node_type":"text","parent":94,"children":[],"para_type":"text","pageno":6,"layout_index":16,"box":[94,328,168,13]}
- {"node_id":111,"text":"投标人:上海绰琪新型建材科技有限公司","node_type":"text","parent":94,"children":[],"para_type":"text","pageno":6,"layout_index":17,"box":[166,591,222,13]}
- {"node_id":112,"text":"(企业CA电子印章)","node_type":"text","parent":94,"children":[],"para_type":"text","pageno":6,"layout_index":18,"box":[406,591,119,13]}
- {"node_id":113,"text":"2022年9月3日","node_type":"text","parent":94,"children":[],"para_type":"text","pageno":6,"layout_index":19,"box":[262,635,160,15]}
- {"node_id":114,"text":"7 ","node_type":"head_tail","parent":94,"children":[],"para_type":"head_tail","pageno":6,"layout_index":20,"box":[295,786,8,9]}
- {"node_id":115,"text":"第四章投标保证金","node_type":"title","parent":94,"children":[116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],"para_type":"title_2","pageno":7,"layout_index":0,"box":[215,74,163,19]}
- {"node_id":116,"text":"致:三峡国际招标有限责任公司","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":1,"box":[70,113,167,11]}
- {"node_id":117,"text":"鉴于上海绰琪新型建材科技有限公司已递交三峡左岸及地下电站地坪整治招标的投标文件,根据招标文件规定,本投标人向贵公司提交人民币叁拾万元整的投标保证金,作为参与该项目招标活动的担保,履行招标文件中规定义务的担保。","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":2,"box":[70,136,454,58]}
- {"node_id":118,"text":"若本投标人有下列任何一种行为,同意贵公司不予退还投标保证金:","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":3,"box":[94,206,352,11]}
- {"node_id":119,"text":"(1)在开标之日到投标有效期满前,撤销或修改其投标文件;","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":4,"box":[100,229,316,12]}
- {"node_id":120,"text":"(2)在收到中标通知书30日内,无正当理由拒绝与招标人签订合同;","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":5,"box":[101,253,358,11]}
- {"node_id":121,"text":"(3)在收到中标通知书30日内,未按招标文件规定提交履约担保。","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":6,"box":[101,277,347,10]}
- {"node_id":122,"text":"附:投标保证金退还信息及中标服务费交纳承诺书(格式)","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":7,"box":[100,320,306,11]}
- {"node_id":123,"text":"电子回单详情","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":8,"box":[130,395,40,7]}
- {"node_id":124,"text":"电子回单详情","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":9,"box":[130,413,36,6]}
- {"node_id":125,"text":"中国农业银行","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":10,"box":[143,439,56,10]}
- {"node_id":126,"text":"网上银行电子回单","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":11,"box":[257,439,76,11]}
- {"node_id":127,"text":"ACIUCULTURAL BANK OF OLNA ","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":12,"box":[145,451,53,2]}
- {"node_id":128,"text":"客户收付款入账通知","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":13,"box":[270,450,50,7]}
- {"node_id":129,"text":"回单编号:09104748633883176441","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":14,"box":[129,462,86,6]}
- {"node_id":130,"text":"账号","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":15,"box":[159,474,12,6]}
- {"node_id":131,"text":"09032401040031280","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":16,"box":[189,474,52,6]}
- {"node_id":132,"text":"付款方","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":17,"box":[132,487,17,6]}
- {"node_id":133,"text":"户名","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":18,"box":[159,486,12,7]}
- {"node_id":134,"text":"上海绰琪新型建材科技有限公司","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":19,"box":[190,486,71,6]}
- {"node_id":135,"text":"中国农业银行股份有限公司上海杜行支行","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":20,"box":[190,497,90,7]}
- {"node_id":136,"text":"开户行","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":21,"box":[159,499,17,6]}
- {"node_id":137,"text":"300000.00","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":22,"box":[190,510,26,6]}
- {"node_id":138,"text":"金额(小写)","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":23,"box":[141,511,29,6]}
- {"node_id":139,"text":"币种","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":24,"box":[150,524,12,6]}
- {"node_id":140,"text":"人民币","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":25,"box":[190,523,16,6]}
- {"node_id":141,"text":"摘要","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":26,"box":[150,536,12,6]}
- {"node_id":142,"text":"转账取款","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":27,"box":[190,535,22,6]}
- {"node_id":143,"text":"交易时间","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":28,"box":[146,548,21,6]}
- {"node_id":144,"text":"2022-09-0216:13:53","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":29,"box":[190,547,51,6]}
- {"node_id":145,"text":"第1次打印","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":30,"box":[456,458,24,6]}
- {"node_id":146,"text":"账号","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":31,"box":[344,472,13,6]}
- {"node_id":147,"text":"6232593799005687176","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":32,"box":[374,470,56,7]}
- {"node_id":148,"text":"收款方","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":33,"box":[319,484,17,6]}
- {"node_id":149,"text":"户名","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":34,"box":[345,484,11,6]}
- {"node_id":150,"text":"三峡国际招标有限责任公司","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":35,"box":[374,483,61,6]}
- {"node_id":151,"text":"开户行","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":36,"box":[345,496,16,6]}
- {"node_id":152,"text":"广发银行股份有限公司北京上地支行","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":37,"box":[374,494,81,8]}
- {"node_id":153,"text":"金额(大写)","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":38,"box":[327,508,29,7]}
- {"node_id":154,"text":"叁拾万元整","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":39,"box":[375,508,26,6]}
- {"node_id":155,"text":"交易渠道","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":40,"box":[332,521,21,6]}
- {"node_id":156,"text":"EBNK ","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":41,"box":[377,521,14,3]}
- {"node_id":157,"text":"凭证号","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":42,"box":[334,533,16,6]}
- {"node_id":158,"text":"09032450500000781","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":43,"box":[376,532,50,6]}
- {"node_id":159,"text":"会计日期","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":44,"box":[333,545,20,6]}
- {"node_id":160,"text":"20220902","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":45,"box":[376,543,25,6]}
- {"node_id":161,"text":"091047486338831764","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":46,"box":[397,580,58,7]}
- {"node_id":162,"text":"回单专用章","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":47,"box":[406,589,50,14]}
- {"node_id":163,"text":"打印日期:2022-09-02","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":48,"box":[420,617,54,8]}
- {"node_id":164,"text":"返回","node_type":"text","parent":115,"children":[],"para_type":"text","pageno":7,"layout_index":49,"box":[325,647,16,6]}
- {"node_id":165,"text":"投标保证金","node_type":"title","parent":0,"children":[166,167],"para_type":"title_1","pageno":7,"layout_index":50,"box":[274,558,26,6]}
- {"node_id":166,"text":"附言","node_type":"text","parent":165,"children":[],"para_type":"text","pageno":7,"layout_index":51,"box":[151,586,12,6]}
- {"node_id":167,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账。","node_type":"text","parent":165,"children":[],"para_type":"text","pageno":7,"layout_index":52,"box":[131,621,160,10]}
- {"node_id":168,"text":"打印","node_type":"title","parent":0,"children":[169,170,171,172,173,174,190],"para_type":"title_1","pageno":7,"layout_index":53,"box":[274,648,25,4]}
- {"node_id":169,"text":"投标人:上海绰琪新型建材科技有限公司(企业CA电子印章)","node_type":"text","parent":168,"children":[],"para_type":"text","pageno":7,"layout_index":54,"box":[171,675,346,12]}
- {"node_id":170,"text":"法定代表人朱涛(法定代表人A电子印章)","node_type":"text","parent":168,"children":[],"para_type":"text","pageno":7,"layout_index":55,"box":[219,698,292,12]}
- {"node_id":171,"text":"日期:2022","node_type":"text","parent":168,"children":[],"para_type":"text","pageno":7,"layout_index":56,"box":[218,721,134,12]}
- {"node_id":172,"text":"年9月3日","node_type":"text","parent":168,"children":[],"para_type":"text","pageno":7,"layout_index":57,"box":[351,722,102,12]}
- {"node_id":173,"text":"8","node_type":"head_tail","parent":168,"children":[],"para_type":"head_tail","pageno":7,"layout_index":58,"box":[293,784,6,8]}
- {"node_id":174,"text":"附件:投标保证金退还信息及中标服务费交纳承诺书","node_type":"title","parent":168,"children":[175,176,177,178,179,180,181,182,183,184,185,186,187,188,189],"para_type":"title_2","pageno":8,"layout_index":0,"box":[135,73,324,15]}
- {"node_id":175,"text":"三峡国际招标有限责任公司:","node_type":"text","parent":174,"children":[],"para_type":"text","pageno":8,"layout_index":1,"box":[94,99,136,11]}
- {"node_id":176,"text":"我单位已按招标文件要求,向贵司递交了投标保证金。信息如下:","node_type":"text","parent":174,"children":[],"para_type":"text","pageno":8,"layout_index":2,"box":[94,120,304,11]}
- {"node_id":177,"text":[["序号","名称","内容"],["1 ","招标项目名称","三峡左岸及地下电站地坪整治"],["2 ","招标编号","T221100130348 "],["3 ","投标保证金金额","合计:¥300000.00元,大写叁拾万元"],["4 ","投标保证金缴纳方式(请在相应的“□”内划“√”)","4.1在线支付(企业银行对公支付)汇款人:上海绰琪新型建材科技有限公司汇款银行:中国农业银行股份有限公司上海杜行支行银行账号:09032401040031280 汇款行所在省市:上海市闵行区□4.2线下支付(银行汇款)汇款人:汇款银行:银行账号:汇款行所在省市:"],["5 ","中标服务费发票开具(请在相应的“□”内划“√”)","□5.1增值税普通发票5.2增值税专用发票(请提供以下完整开票信息):●名称:上海绰琪新型建材科技有限公司●纳税人识别税号(或三证合一号码):91310112MA1GC4MP45 ●地址、电话:上海市闵行区浦江镇,15201848666 ●开户行及账号:中国农业银行股份有限公司上海杜行支行,09032401040031280 "],[""]],"node_type":"table","parent":174,"children":[],"para_type":"table","pageno":8,"layout_index":3,"box":[77,134,439,324]}
- {"node_id":178,"text":"我单位确认并承诺:","node_type":"text","parent":174,"children":[],"para_type":"text","pageno":8,"layout_index":4,"box":[93,461,99,12]}
- {"node_id":179,"text":"1、若中标,将按本招标文件投标须知的规定向贵司支付中标服务费用,拟支付贵司的中标服务费已包含在我单位报价中,未在投标报价表中单独出项。","node_type":"text","parent":174,"children":[],"para_type":"text","pageno":8,"layout_index":5,"box":[70,480,454,27]}
- {"node_id":180,"text":"2.贵司可从我单位保证金中扣除中标服务费用后将余额退给我单位,如不足,接到贵司通知后5个工作日内补足差额。","node_type":"text","parent":174,"children":[],"para_type":"text","pageno":8,"layout_index":6,"box":[70,514,454,27]}
- {"node_id":181,"text":"3.扣除中标服务费后的余额或退还的投标保证金及利息请按原汇款路径退回我单位,如我单位账户发生变化,将及时通知贵司并提供情况说明。","node_type":"text","parent":174,"children":[],"para_type":"text","pageno":8,"layout_index":7,"box":[70,548,454,28]}
- {"node_id":182,"text":"4.若我单位未提供“利息费用(资金占用费)”增值税普通发票,我单位放弃收取投标保证金利息权利。","node_type":"text","parent":174,"children":[],"para_type":"text","pageno":8,"layout_index":8,"box":[70,582,454,28]}
- {"node_id":183,"text":"投标人名称(盖单位章):上海绰琪新型建材科技有限公司","node_type":"text","parent":174,"children":[],"para_type":"text","pageno":8,"layout_index":9,"box":[92,615,284,12]}
- {"node_id":184,"text":"地址:上海市闵行区东晨三路3号邮编:联系人:余浩联系电话:18616632076 ","node_type":"text","parent":174,"children":[],"para_type":"text","pageno":8,"layout_index":10,"box":[92,632,437,12]}
- {"node_id":185,"text":"法定代表人或其委托代理人:","node_type":"text","parent":174,"children":[],"para_type":"text","pageno":8,"layout_index":11,"box":[92,679,143,12]}
- {"node_id":186,"text":"2022年9月3日","node_type":"text","parent":174,"children":[],"para_type":"text","pageno":8,"layout_index":12,"box":[356,679,130,14]}
- {"node_id":187,"text":"说明:1. 本信息由投标人填写,与投标保证金递交凭证一起提交。","node_type":"text","parent":174,"children":[],"para_type":"text","pageno":8,"layout_index":13,"box":[70,711,307,11]}
- {"node_id":188,"text":"2. 本信息作为招标代理机构退还投标保证金和开具中标服务费发票的依据,投标人必须按要求完整填写并加盖单位章(其余用章无效),由于投标人的填写错误或遗漏导致的投标担保退还失误或中标服务费发票开具失误,责任由投标人自负。","node_type":"text","parent":174,"children":[],"para_type":"text","pageno":8,"layout_index":14,"box":[70,726,453,42]}
- {"node_id":189,"text":"9 ","node_type":"head_tail","parent":174,"children":[],"para_type":"head_tail","pageno":8,"layout_index":15,"box":[295,786,8,9]}
- {"node_id":190,"text":"第五章已标价工程量清单","node_type":"title","parent":168,"children":[191,192,193],"para_type":"title_2","pageno":9,"layout_index":0,"box":[189,97,217,19]}
- {"node_id":191,"text":"说明:已标价工程量清单按第五章“工程量清单”中的相关清单表格式填写。构成合同文件的已标价工程量清单包括第五章“工程量清单”有关工程量清单、投标报价以及其他说明的内容。","node_type":"text","parent":190,"children":[],"para_type":"text","pageno":9,"layout_index":1,"box":[70,155,454,60]}
- {"node_id":192,"text":"10 ","node_type":"head_tail","parent":190,"children":[],"para_type":"head_tail","pageno":9,"layout_index":2,"box":[293,786,12,9]}
- {"node_id":193,"text":"5.1投标总说明","node_type":"title","parent":190,"children":[],"para_type":"title_6","pageno":10,"layout_index":0,"box":[70,72,83,16]}
- {"node_id":194,"text":"总说明","node_type":"title","parent":0,"children":[195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],"para_type":"title_1","pageno":10,"layout_index":1,"box":[262,102,70,15]}
- {"node_id":195,"text":"工程名称:三峡左岸及地下电站地坪整治","node_type":"text","parent":194,"children":[],"para_type":"text","pageno":10,"layout_index":2,"box":[71,135,214,13]}
- {"node_id":196,"text":"中国长江电力股份有限公司领导,您们好!","node_type":"text","parent":194,"children":[],"para_type":"text","pageno":10,"layout_index":3,"box":[71,160,229,13]}
- {"node_id":197,"text":"第1页共1页","node_type":"head_tail","parent":194,"children":[],"para_type":"head_tail","pageno":10,"layout_index":4,"box":[444,137,79,11]}
- {"node_id":198,"text":"上海绰琪新型建材科技有限公司参与三峡左岸地下电站地坪整治项目投标,绰琪是一家专门从事无机环保材料研发生产及配套施工的专业公司,综合该项目勘察和论证,我司认为做好该项目必备以下要素:","node_type":"text","parent":194,"children":[],"para_type":"text","pageno":10,"layout_index":5,"box":[71,189,452,52]}
- {"node_id":199,"text":"1. 要有稳定优质的无机磨石材料。","node_type":"text","parent":194,"children":[],"para_type":"text","pageno":10,"layout_index":6,"box":[113,256,168,11]}
- {"node_id":200,"text":"2. 要对磨石材料和施工工艺绝对专业,该项目施工环境较为复杂,多种施工工艺交叉,能根据项目具体施工工艺和环境状况去深化和优化施工方案,同时要兼备大型项目操作经验。","node_type":"text","parent":194,"children":[],"para_type":"text","pageno":10,"layout_index":7,"box":[92,283,431,31]}
- {"node_id":201,"text":"3. 要对项目有敬畏之心,该项目赚钱不是第一位,要敢为项目加分,使该项目成为知名磨石案例,同时公司一定要有专业敬业的工匠精神施工班组。","node_type":"text","parent":194,"children":[],"para_type":"text","pageno":10,"layout_index":8,"box":[92,330,431,31]}
- {"node_id":202,"text":"本项目属于改造项目,施工条件比较复杂,多种工艺交叉,施工难度较大,材料运输困难,正在工作中的精密设备需要施工前的及时设备保护,防尘,防水,防震动,尤其在拆除旧地面过程中须要有一种整套措施保护设备和人员安全。","node_type":"text","parent":194,"children":[],"para_type":"text","pageno":10,"layout_index":9,"box":[92,377,436,51]}
- {"node_id":203,"text":"我司高度重视该项目,本着负责任态度参与投标,材料、技术、管理均由专业人员负责,同时我们也承诺杜绝暴利,整个操作过程本着廉洁自律,重抓安全施工,保质保量完成施工任务,力争做出精品工程。","node_type":"text","parent":194,"children":[],"para_type":"text","pageno":10,"layout_index":10,"box":[92,444,436,52]}
- {"node_id":204,"text":"针对本次投标,我司完全响应此次投标技术与商务要求,同时也预祝本次投标顺利!","node_type":"text","parent":194,"children":[],"para_type":"text","pageno":10,"layout_index":11,"box":[92,513,390,11]}
- {"node_id":205,"text":"投标人:上海绰琪新型建材科技有限公司(企业CA电子印章)","node_type":"text","parent":194,"children":[],"para_type":"text","pageno":10,"layout_index":12,"box":[142,622,353,13]}
- {"node_id":206,"text":"法定代表人:朱涛","node_type":"text","parent":194,"children":[],"para_type":"text","pageno":10,"layout_index":13,"box":[142,645,108,13]}
- {"node_id":207,"text":"(法定代表人CA电子印章)","node_type":"text","parent":194,"children":[],"para_type":"text","pageno":10,"layout_index":14,"box":[352,645,155,13]}
- {"node_id":208,"text":"日","node_type":"text","parent":194,"children":[],"para_type":"text","pageno":10,"layout_index":15,"box":[223,668,12,13]}
- {"node_id":209,"text":"期:2022年9月3日","node_type":"text","parent":194,"children":[],"para_type":"text","pageno":10,"layout_index":16,"box":[247,668,132,15]}
- {"node_id":210,"text":"11 ","node_type":"head_tail","parent":194,"children":[],"para_type":"head_tail","pageno":10,"layout_index":17,"box":[293,786,12,9]}
- {"node_id":211,"text":"5.2投标报价汇总表","node_type":"title","parent":194,"children":[212],"para_type":"title_6","pageno":11,"layout_index":0,"box":[70,72,107,16]}
- {"node_id":212,"text":"工程名称:","node_type":"text","parent":211,"children":[],"para_type":"text","pageno":11,"layout_index":1,"box":[70,129,52,11]}
- {"node_id":213,"text":"表5.2投标报价汇总表","node_type":"title","parent":0,"children":[214,215,216,217,218,219,220,221,222,223,224,225,226,227],"para_type":"title_1","pageno":11,"layout_index":2,"box":[236,101,122,13]}
- {"node_id":214,"text":"三峡左岸及地下电站地坪整治","node_type":"text","parent":213,"children":[],"para_type":"text","pageno":11,"layout_index":3,"box":[139,128,156,13]}
- {"node_id":215,"text":[["序号","项目名称","含税报价(元)","其中","其中","其中"],["序号","项目名称","含税报价(元)","增值税税率(%)","增值税金额(元)","安全文明施工费(元)"],["1 ","三峡左岸电站及地下电站地坪整治","15845546.48 ","9% ","1426099.18 ","157500 "],[""]],"node_type":"table","parent":213,"children":[],"para_type":"table","pageno":11,"layout_index":4,"box":[66,142,460,105]}
- {"node_id":216,"text":"注:1.本表含税报价填入投标函及电子采购平台,应与表5.3工程量清单报价表含税价一致。","node_type":"text","parent":213,"children":[],"para_type":"text","pageno":11,"layout_index":5,"box":[70,264,432,13]}
- {"node_id":217,"text":"2. 增值税金额=合计金额÷(1+增值税税率)×增值税税率。","node_type":"text","parent":213,"children":[],"para_type":"text","pageno":11,"layout_index":6,"box":[70,280,283,11]}
- {"node_id":218,"text":"3. 文明施工费用不含垃圾清运费用。","node_type":"text","parent":213,"children":[],"para_type":"text","pageno":11,"layout_index":7,"box":[70,295,173,13]}
- {"node_id":219,"text":"投标人:","node_type":"text","parent":213,"children":[],"para_type":"text","pageno":11,"layout_index":8,"box":[142,406,48,13]}
- {"node_id":220,"text":"上海绰琪新型建材科技有限公司(企业CA电子印章)","node_type":"text","parent":213,"children":[],"para_type":"text","pageno":11,"layout_index":9,"box":[202,406,299,13]}
- {"node_id":221,"text":"法定代表人:","node_type":"text","parent":213,"children":[],"para_type":"text","pageno":11,"layout_index":10,"box":[142,430,72,13]}
- {"node_id":222,"text":"朱涛","node_type":"text","parent":213,"children":[],"para_type":"text","pageno":11,"layout_index":11,"box":[226,430,24,13]}
- {"node_id":223,"text":"(法定代表人CA电子印章)","node_type":"text","parent":213,"children":[],"para_type":"text","pageno":11,"layout_index":12,"box":[352,430,155,13]}
- {"node_id":224,"text":"日","node_type":"text","parent":213,"children":[],"para_type":"text","pageno":11,"layout_index":13,"box":[223,453,12,13]}
- {"node_id":225,"text":"期:2022年9月3日","node_type":"text","parent":213,"children":[],"para_type":"text","pageno":11,"layout_index":14,"box":[247,453,132,15]}
- {"node_id":226,"text":"12 ","node_type":"head_tail","parent":213,"children":[],"para_type":"head_tail","pageno":11,"layout_index":15,"box":[293,786,12,9]}
- {"node_id":227,"text":"5.3工程量清单","node_type":"title","parent":213,"children":[],"para_type":"title_6","pageno":12,"layout_index":0,"box":[70,72,83,16]}
- {"node_id":228,"text":"表5.3工程量清单报价表","node_type":"title","parent":0,"children":[229,230,231,232,233,234,235],"para_type":"title_1","pageno":12,"layout_index":1,"box":[354,101,133,13]}
- {"node_id":229,"text":"单位:人民币元","node_type":"text","parent":228,"children":[],"para_type":"text","pageno":12,"layout_index":2,"box":[697,125,73,11]}
- {"node_id":230,"text":[["序号","项目编码","项目名称","项目特征","单位","工程量","全费用综合单价","合价","备注"],["1 ","0116050020 01 ","踢脚线拆除","1、瓷砖踢脚线,高度15-20cm;2、含砂浆凿除,凿除至墙面基层。","m2 ","2000 ","14.2 ","28400 "],["2 ","0116050010 01 ","地砖及砂浆层凿除","1、施工部位:非设备区域;2、与非施工区域地面交界处做好地砖保护,破坏地砖进行恢复。3、地砖及砂浆层凿除,凿除至混凝土基层,厚度约5-8cm,以现场实际为准。4、凿除设备和施工方法需考虑降尘,以及震动对电站设备的影响。","m2 ","20000 ","14.2 ","284000 "],["3 ","0116050010 02 ","地砖凿除","1、施工部位:设备区域及周边;2、仅凿除地砖,厚度为1-2cm,以现场实际为准。","m2 ","1000 ","14.2 ","14200 "],["4 ","0101030020 01 ","垃圾清理外运","1、垃圾类型:凿除的地砖、踢脚线及砂浆层、地面铣刨层;2、建筑垃圾场内转运及外运运距由承包方自行考虑,外运地点需满足环保要求,并告知发包方;3、含垃圾消纳费。","m3 ","1743 ","113.36 ","197586.48 "],["0116020020 5 01 ","基面铣刨","1、地面整体铣刨,深度≥3mm;2、使用无尘设备,考虑震动对电气设备的影响。","m2 ","20000 ","8.18 ","163600 "],["6 ","0111020030 01 ","预制无机磨石施工","1、成品预制无机磨石,颜色与无机磨石整体施工相一致,厚度大于等于20mm;2、预制磨石铺贴,2cm干混地面砂浆DS M20;3、不低于西卡、绰琪、迈拓品牌。具体详见技术方案,材料垂直运输及二次转运由承包人自行考虑","m2 ","1000 ","621.57 ","624570 "],["7 ","0115020010 01 ","护边角钢","1、部位:地坪收边;2、304哑光不锈钢角钢;3、不锈钢角钢规格为50×50×3mm;具体详见图纸及技术方案,材料垂直运输及二次转运由承包人自行考","m ","2000 ","171.13 ","342260 "],[""]],"node_type":"table","parent":228,"children":[],"para_type":"table","pageno":12,"layout_index":3,"box":[94,143,651,369]}
- {"node_id":231,"text":"13 ","node_type":"text","parent":228,"children":[],"para_type":"text","pageno":12,"layout_index":4,"box":[416,539,12,9]}
- {"node_id":232,"text":[["虑"],["8 ","0111010010 01 ","抗裂砂浆垫层","1、部位:不具备钢纤维混凝土运输条件的部位;2、成品抗裂砂浆垫层(非现场搅拌砂浆后添加外加剂),具备低收缩早强快干性能;3、成品焊接钢筋网片直径8mm、间距150mm×150mm;4、厚度约5cm,以实际情况为准,成品品牌与无机磨石一致。具体详见技术方案,材料垂直运输及二次转运由承包人自行考虑","m2 ","7000 ","150.42 ","1052940 "],["9 ","0111010030 01 ","C25混凝土","1、C25细石商品混凝土垫层,厚度5-8cm,以现场实际为准;2、覆膜养护具体详见图纸及技术方案,材料垂直运输及二次转运由承包人自行考虑","m2 ","14000 ","68.6 ","960400 "],["10 ","01B004 ","钢纤维","1、钢纤维于拌合站添加至混凝土内,掺量为每立方米混凝土40-50kg 钢纤维;2、抗拉强度不低于380MPa;具体详见技术方案,材料垂直运输及二次转运由承包人自行考虑","t ","50 ","6780 ","339000 "],["11 ","0111010020 01 ","无机磨石","1、无机磨石地坪,厚度≥10mm,骨料粒径6-8mm,骨料以石英石为主;2、防污抗渗罩面。3、铝镁分隔条(包含墙脚分隔条);4、无机磨石体系尺寸变化率不大于0.05%,莫氏硬度6级及以上,抗折强度不小于6Mpa,抗压强度不小于30Mpa,无机磨石表面平整度2 米靠尺不大于2mm。5、不低于绰琪鑫磨石、迈拓FREAZZO自然岩采系列、西卡Sikafloor 55 Terrazzo CM系列品牌。具体详见技术方案,材料垂直运输及二次转运由承包人自行考虑","m2 ","20000 ","519.77 ","10395400 "],["12 ","0111050060 01 ","不锈钢踢脚线","1、施工部位:电站厂房;2、成品哑光拉丝304不锈钢踢脚线,面板整体厚度≥1mm,高度15cm;3、专用卡扣固定,每米不少于两个;4、含成品不锈钢阴阳角线及封头等配件。具体详见技术方案,材料垂直运输及二次转运由承包人自行考虑","m ","10000 ","105.73 ","1057300 "],["13 ","0112030010 01 ","墙面零星抹灰","1、部位:原踢脚线拆除后的墙面;2、1.20厚干混抹灰砂浆DP M10抹灰具体详见技术方案,材料垂直运输及二次转运由承包人自行考虑","m2 ","2000 ","47.96 ","95920 "],["14 ","0114060010 01 ","墙面乳胶漆恢复","1、部位:原踢脚线拆除后的墙面;2、墙面修补,抗碱底漆二遍、内墙腻子二遍、面漆二遍。3、不低于多乐士、立邦、华润等产品性能参数。具体详见技术方案,材料垂直运输及二次转运由承包人自行考虑","m2 ","500 ","22.3 ","11150 "],[""]],"node_type":"table","parent":228,"children":[],"para_type":"table","pageno":13,"layout_index":0,"box":[94,70,651,448]}
- {"node_id":233,"text":"14 ","node_type":"text","parent":228,"children":[],"para_type":"text","pageno":13,"layout_index":1,"box":[416,539,12,9]}
- {"node_id":234,"text":[["0402050060 15 01 ","定置管理划线(环氧地坪漆)","1. 部位:设备周边、通道周边等其他地面;2. 划线宽度100mm,底漆二遍、中漆一遍、面漆二遍;3.环氧地坪漆不低于巴斯夫、马贝、西卡等产品性能参数;具体详见图纸及技术方案,材料垂直运输及二次转运由承包人自行考虑","㎡","400 ","75.8 ","30320 "],["16 ","0109040040 01 ","成品地面结构缝装置","1、施工部位:地坪结构缝;2、成品承重型不锈钢结构缝装置,宽度15cm;3、盖板材质:铝合金或者不锈钢面板厚度不小于3mm;4、不锈钢基座,不锈钢滑杆@500,M8金属膨胀螺栓@300(交错排列),3mm不锈钢止水带,阻火带、填缝胶具体详见技术方案,材料垂直运输及二次转运由承包人自行考虑","m ","1000 ","178 ","178000 "],["17 ","01B002 ","设备防护措施","设备防护措施1、部分施工区域有电气盘柜,施工过程包含防尘、防火、防水、防碰撞、防飞溅、防污染、防较大震动等防护;2、地面凿除及地坪施工时,对电气设备使用彩钢板、油布等材料做好防护。3、防护方案由承包人报发包方审批。具体详见技术方案,材料垂直运输及二次转运由承包人自行考虑","m ","5000 ","14.1 ","70500 "],["合计(其中,安全文明施工费157500元。不含垃圾清运费用)","合计(其中,安全文明施工费157500元。不含垃圾清运费用)","合计(其中,安全文明施工费157500元。不含垃圾清运费用)","合计(其中,安全文明施工费157500元。不含垃圾清运费用)","合计(其中,安全文明施工费157500元。不含垃圾清运费用)"],[""]],"node_type":"table","parent":228,"children":[],"para_type":"table","pageno":14,"layout_index":0,"box":[94,70,651,241]}
- {"node_id":235,"text":"15 ","node_type":"head_tail","parent":228,"children":[],"para_type":"head_tail","pageno":14,"layout_index":1,"box":[416,539,12,9]}
- {"node_id":236,"text":"表5.4全费用综合单价分析表","node_type":"title","parent":0,"children":[237,238,239,240,241,242,243,244,245,246,247],"para_type":"title_1","pageno":15,"layout_index":0,"box":[342,114,157,13]}
- {"node_id":237,"text":[["项目编号","项目编号","011605002001 ","011605002001 ","011605002001 ","项目名称","项目名称","项目名称","项目名称","踢脚线拆除","踢脚线拆除","踢脚线拆除","踢脚线拆除","踢脚线拆除","计量单位","计量单位","计量单位","m2 ","m2 ","工程量","2000 ","2000 ","2000 "],["清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细"],["定额编号","定额名称","定额单位","数量","单价","单价","单价","单价","单价","单价","单价","单价","单价","单价","合价","合价","合价","合价","合价","合价","合价","合价","合价"],["定额编号","定额名称","定额单位","数量","人工费","材料费","机械费","管理费","利润","利润","措施项目费","规费","规费","税金","人工费","材料费","机械费","机械费","管理费","利润","措施项目费","规费","税金"],["m2 ","2000 ","8 ","-","1 ","1 ","2 ","2 ","0.5 ","0.5 ","0.5 ","1.2 ","16000 ","0 ","2000 ","2000 ","2000 ","4000 ","1000 ","1000 ","2400 "],[""],[""],["人工单价(元\/工日)","人工单价(元\/工日)","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计"],["未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费"],["清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价"],["材料费明细","材料费明细","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","单位","单位","单位","数量","数量","除税单价(元) ","除税单价(元) ","除税单价(元) ","除税合价(元) ","除税合价(元) "],["m2 ","m2 ","m2 ","2000 ","2000 ","13.00 ","13.00 ","13.00 ","26000.00 ","26000.00 "],["m2 ","m2 ","m2 ","2000 ","2000 ","13.00 ","13.00 ","13.00 ","26000.00 ","26000.00 "],[""],[""],[""]],"node_type":"table","parent":236,"children":[],"para_type":"table","pageno":15,"layout_index":1,"box":[65,135,709,279]}
- {"node_id":238,"text":"投标人:(企业CA电子印章)","node_type":"text","parent":236,"children":[],"para_type":"text","pageno":15,"layout_index":2,"box":[369,428,188,11]}
- {"node_id":239,"text":"法定代表人或其委托代理人:(法定代表人CA电子印章)","node_type":"text","parent":236,"children":[],"para_type":"text","pageno":15,"layout_index":3,"box":[348,449,262,11]}
- {"node_id":240,"text":"2022年9月3日","node_type":"text","parent":236,"children":[],"para_type":"text","pageno":15,"layout_index":4,"box":[517,471,88,11]}
- {"node_id":241,"text":"16 ","node_type":"head_tail","parent":236,"children":[],"para_type":"head_tail","pageno":15,"layout_index":5,"box":[416,539,12,9]}
- {"node_id":242,"text":"表5.4全费用综合单价分析表","node_type":"text","parent":236,"children":[],"para_type":"text","pageno":16,"layout_index":0,"box":[336,113,157,12]}
- {"node_id":243,"text":[["项目编号","项目编号","011605001001","011605001001","011605001001","项目名称","项目名称","项目名称","项目名称","地砖及砂浆层凿除","地砖及砂浆层凿除","地砖及砂浆层凿除","地砖及砂浆层凿除","地砖及砂浆层凿除","计量单位","计量单位","m2 ","m2 ","工程量","20000","20000","20000"],["清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细"],["定额编号","定额名称","定额单位","数量","单价","单价","单价","单价","单价","单价","单价","单价","单价","单价","合价","合价","合价","合价","合价","合价","合价","合价"],["定额编号","定额名称","定额单位","数量","人工费","材料费","机械费","管理费","","","措施项目费","","","税金","人工费","材料费","机械费","管理费","利润","措施项目费","规费","税金"],["m2 ","20000","8","0","1","1","2","2","0.5","0.5","0.5","1.2","160000","0","20000","20000","40000","10000","10000","24000"],[""],[""],["人工单价(元\/工日)","人工单价(元\/工日)","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计"],["未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费"],["清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价"],["材料费明细","材料费明细","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","单位","单位","单位","数量","数量","除税单价(元)","除税单价(元)","除税合价(元)","除税合价(元)"],["m2 ","m2 ","m2 ","20000","20000","13","13","260000","260000"],[""],[""]],"node_type":"table","parent":236,"children":[],"para_type":"table","pageno":16,"layout_index":1,"box":[60,135,719,272]}
- {"node_id":244,"text":"投标人:(企业CA电子印章)","node_type":"text","parent":236,"children":[],"para_type":"text","pageno":16,"layout_index":2,"box":[506,428,185,11]}
- {"node_id":245,"text":"法定代表人或其委托代理人:(法定代表人CA电子印章)","node_type":"text","parent":236,"children":[],"para_type":"text","pageno":16,"layout_index":3,"box":[467,469,255,9]}
- {"node_id":246,"text":"2022年9月3日","node_type":"text","parent":236,"children":[],"para_type":"text","pageno":16,"layout_index":4,"box":[620,510,81,10]}
- {"node_id":247,"text":"17","node_type":"head_tail","parent":236,"children":[],"para_type":"head_tail","pageno":16,"layout_index":5,"box":[415,537,10,9]}
- {"node_id":248,"text":"表5.4全费用综合单价分析表","node_type":"title","parent":0,"children":[249,250,251,252,253,254],"para_type":"title_1","pageno":17,"layout_index":0,"box":[342,114,157,13]}
- {"node_id":249,"text":[["项目编号","项目编号","011605001002 ","011605001002 ","011605001002 ","项目名称","项目名称","项目名称","项目名称","地砖凿除","地砖凿除","地砖凿除","地砖凿除","地砖凿除","计量单位","计量单位","计量单位","m2 ","m2 ","工程量","1000 ","1000 ","1000 "],["清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细"],["定额编号","定额名称","定额单位","数量","单价","单价","单价","单价","单价","单价","单价","单价","单价","单价","合价","合价","合价","合价","合价","合价","合价","合价","合价"],["定额编号","定额名称","定额单位","数量","人工费","材料费","机械费","管理费","利润","利润","措施项目费","规费","规费","税金","人工费","材料费","机械费","机械费","管理费","利润","措施项目费","规费","税金"],["m2 ","1000 ","8 ","0 ","1 ","1 ","2 ","2 ","0.5 ","0.5 ","0.5 ","1.2 ","8000 ","0 ","1000 ","1000 ","1000 ","2000 ","500 ","500 ","1200 "],[""],[""],["人工单价(元\/工日)","人工单价(元\/工日)","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计"],["未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费"],["清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价"],["材料费明细","材料费明细","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","单位","单位","单位","数量","数量","除税单价(元) ","除税单价(元) ","除税单价(元) ","除税合价(元) ","除税合价(元) "],["m2 ","m2 ","m2 ","1000 ","1000 ","13 ","13 ","13 ","13000 ","13000 "],[""],[""]],"node_type":"table","parent":248,"children":[],"para_type":"table","pageno":17,"layout_index":1,"box":[61,135,717,266]}
- {"node_id":250,"text":"投标人:","node_type":"text","parent":248,"children":[],"para_type":"text","pageno":17,"layout_index":2,"box":[511,445,42,11]}
- {"node_id":251,"text":"(企业CA电子印章)","node_type":"text","parent":248,"children":[],"para_type":"text","pageno":17,"layout_index":3,"box":[601,445,99,11]}
- {"node_id":252,"text":"法定代表人或其委托代理人:(法定代表人CA电子印章)","node_type":"text","parent":248,"children":[],"para_type":"text","pageno":17,"layout_index":4,"box":[508,465,262,11]}
- {"node_id":253,"text":"2022年9月3日","node_type":"text","parent":248,"children":[],"para_type":"text","pageno":17,"layout_index":5,"box":[629,506,81,11]}
- {"node_id":254,"text":"18 ","node_type":"head_tail","parent":248,"children":[],"para_type":"head_tail","pageno":17,"layout_index":6,"box":[416,539,12,9]}
- {"node_id":255,"text":"表5.4全费用综合单价分析表","node_type":"title","parent":0,"children":[256,257,258,259,260],"para_type":"title_1","pageno":18,"layout_index":0,"box":[342,93,157,13]}
- {"node_id":256,"text":[["项目编号","项目编号","010103002001 ","010103002001 ","010103002001 ","项目名称","项目名称","项目名称","项目名称","垃圾清理外运","垃圾清理外运","垃圾清理外运","垃圾清理外运","垃圾清理外运","计量单位","计量单位","计量单位","m3 ","m3 ","工程量","1743 ","1743 ","1743 "],["清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细"],["定额编号","定额名称","定额单位","数量","单价","单价","单价","单价","单价","单价","单价","单价","单价","单价","合价","合价","合价","合价","合价","合价","合价","合价","合价"],["定额编号","定额名称","定额单位","数量","人工费","材料费","机械费","管理费","利润","利润","措施项目费","规费","规费","税金","人工费","材料费","机械费","机械费","管理费","利润","措施项目费","规费","税金"],["m3 ","1743 ","20 ","4 ","55 ","5 ","10 ","10 ","5 ","5 ","5 ","9.36 ","34860 ","6972 ","95865 ","95865 ","8715 ","17430 ","8715 ","8715 ","16314.48 "],[""],[""],["人工单价(元\/工日)","人工单价(元\/工日)","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计"],["未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费"],["清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价"],["材料费明细","材料费明细","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","单位","单位","单位","数量","数量","除税单价(元) ","除税单价(元) ","除税单价(元) ","除税合价(元) ","除税合价(元) "],["雨布围挡","雨布围挡","","","","","","","","m2 ","m2 ","m2 ","4500 ","4500 ","104 ","104 ","104 ","181272 ","181272 "],[""],[""]],"node_type":"table","parent":255,"children":[],"para_type":"table","pageno":18,"layout_index":1,"box":[57,114,726,272]}
- {"node_id":257,"text":"投标人:(企业CA电子印章)","node_type":"text","parent":255,"children":[],"para_type":"text","pageno":18,"layout_index":2,"box":[508,408,188,11]}
- {"node_id":258,"text":"法定代表人或其委托代理人:(法定代表人CA电子印章)","node_type":"text","parent":255,"children":[],"para_type":"text","pageno":18,"layout_index":3,"box":[508,428,262,11]}
- {"node_id":259,"text":"2022年9月3日","node_type":"text","parent":255,"children":[],"para_type":"text","pageno":18,"layout_index":4,"box":[644,469,94,11]}
- {"node_id":260,"text":"19 ","node_type":"head_tail","parent":255,"children":[],"para_type":"head_tail","pageno":18,"layout_index":5,"box":[416,539,12,9]}
- {"node_id":261,"text":"表5.4全费用综合单价分析表","node_type":"title","parent":0,"children":[262,263,264,265,266],"para_type":"title_1","pageno":19,"layout_index":0,"box":[342,93,157,13]}
- {"node_id":262,"text":[["项目编号","项目编号","011602002001 ","011602002001 ","011602002001 ","项目名称","项目名称","项目名称","项目名称","基面铣刨","基面铣刨","基面铣刨","基面铣刨","基面铣刨","计量单位","计量单位","计量单位","m2 ","m2 ","工程量","20000 ","20000 ","20000 "],["清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细"],["定额编号","定额名称","定额单位","数量","单价","单价","单价","单价","单价","单价","单价","单价","单价","单价","合价","合价","合价","合价","合价","合价","合价","合价","合价"],["定额编号","定额名称","定额单位","数量","人工费","材料费","机械费","管理费","利润","利润","措施项目费","规费","规费","税金","人工费","材料费","机械费","机械费","管理费","利润","措施项目费","规费","税金"],["m2 ","20000 ","3 ","0 ","2.5 ","0.3 ","0.7 ","0.7 ","0.5 ","0.5 ","0.5 ","0.68 ","60000 ","0 ","50000 ","50000 ","6000 ","14000 ","10000 ","10000 ","13600 "],[""],[""],["人工单价(元\/工日)","人工单价(元\/工日)","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计"],["未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费"],["清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价"],["材料费明细","材料费明细","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","单位","单位","单位","数量","数量","除税单价(元) ","除税单价(元) ","除税单价(元) ","除税合价(元) ","除税合价(元) "],["m2 ","m2 ","m2 ","20000 ","20000 ","7.5 ","7.5 ","7.5 ","150000 ","150000 "],[""],[""]],"node_type":"table","parent":261,"children":[],"para_type":"table","pageno":19,"layout_index":1,"box":[65,114,709,272]}
- {"node_id":263,"text":"投标人:(企业CA电子印章)","node_type":"text","parent":261,"children":[],"para_type":"text","pageno":19,"layout_index":2,"box":[508,408,188,11]}
- {"node_id":264,"text":"法定代表人或其委托代理人:(法定代表人CA电子印章)","node_type":"text","parent":261,"children":[],"para_type":"text","pageno":19,"layout_index":3,"box":[508,452,262,11]}
- {"node_id":265,"text":"2022年9月3日","node_type":"text","parent":261,"children":[],"para_type":"text","pageno":19,"layout_index":4,"box":[671,497,99,11]}
- {"node_id":266,"text":"20 ","node_type":"head_tail","parent":261,"children":[],"para_type":"head_tail","pageno":19,"layout_index":5,"box":[416,539,12,9]}
- {"node_id":267,"text":"表5.4全费用综合单价分析表","node_type":"title","parent":0,"children":[268,269,270,271,272,273],"para_type":"title_1","pageno":20,"layout_index":0,"box":[330,93,158,13]}
- {"node_id":268,"text":[["项目编号","项目编号","011102003001 ","011102003001 ","011102003001 ","项目名称","项目名称","项目名称","项目名称","预制无机磨石施工","预制无机磨石施工","预制无机磨石施工","预制无机磨石施工","预制无机磨石施工","计量单位","计量单位","m2 ","m2 ","m2 ","工程量","1000 ","1000 ","1000 "],["清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细"],["定额编号","定额名称","定额单位","数量","单价","单价","单价","单价","单价","单价","单价","单价","单价","单价","合价","合价","合价","合价","合价","合价","合价","合价","合价"],["定额编号","定额名称","定额单位","数量","人工费","材料费","机械费","管理费","利润","利润","措施项目费","规费","税金","税金","人工费","材料费","机械费","机械费","管理费","利润","措施项目费","规费","税金"],["m2 ","1000 ","110 ","360 ","35 ","25.25 ","20 ","20 ","10 ","10 ","51.32 ","51.32 ","110000 ","360000 ","35000 ","35000 ","25250 ","20000 ","10000 ","10000 ","51320 "],[""],[""],["人工单价(元\/工日)","人工单价(元\/工日)","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计"],["未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费"],["清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价"],["材料费明细","材料费明细","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","单位","单位","单位","单位","数量","除税单价(元) ","除税单价(元) ","除税单价(元) ","除税合价(元) ","除税合价(元) "],["预制板材","预制板材","20厚预制板成品板","20厚预制板成品板","20厚预制板成品板","20厚预制板成品板","20厚预制板成品板","20厚预制板成品板","20厚预制板成品板","m2 ","m2 ","m2 ","m2 ","1000 ","570.25 ","570.25 ","570.25 ","570250 ","570250 "],[""],[""]],"node_type":"table","parent":267,"children":[],"para_type":"table","pageno":20,"layout_index":1,"box":[65,114,709,272]}
- {"node_id":269,"text":"投标人:","node_type":"text","parent":267,"children":[],"para_type":"text","pageno":20,"layout_index":2,"box":[505,408,41,11]}
- {"node_id":270,"text":"(企业CA电子印章)","node_type":"text","parent":267,"children":[],"para_type":"text","pageno":20,"layout_index":3,"box":[594,408,99,11]}
- {"node_id":271,"text":"法定代表人或其委托代理人:(法定代表人CA电子印章)","node_type":"text","parent":267,"children":[],"para_type":"text","pageno":20,"layout_index":4,"box":[508,452,262,11]}
- {"node_id":272,"text":"2022年9月3日","node_type":"text","parent":267,"children":[],"para_type":"text","pageno":20,"layout_index":5,"box":[676,493,94,11]}
- {"node_id":273,"text":"21 ","node_type":"head_tail","parent":267,"children":[],"para_type":"head_tail","pageno":20,"layout_index":6,"box":[416,539,12,9]}
- {"node_id":274,"text":"表5.4全费用综合单价分析表","node_type":"title","parent":0,"children":[275,276,277,278,279],"para_type":"title_1","pageno":21,"layout_index":0,"box":[342,93,157,13]}
- {"node_id":275,"text":[["项目编号","项目编号","011502001001 ","011502001001 ","011502001001 ","项目名称","项目名称","项目名称","项目名称","护边角钢","护边角钢","护边角钢","护边角钢","护边角钢","计量单位","计量单位","计量单位","m ","m ","工程量","2000 ","2000 ","2000 "],["清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细"],["定额编号","定额名称","定额单位","数量","单价","单价","单价","单价","单价","单价","单价","单价","单价","单价","合价","合价","合价","合价","合价","合价","合价","合价","合价"],["定额编号","定额名称","定额单位","数量","人工费","材料费","机械费","管理费","利润","利润","措施项目费","规费","规费","税金","人工费","材料费","机械费","机械费","管理费","利润","措施项目费","规费","税金"],["m ","2000 ","15 ","120 ","4 ","4 ","8 ","8 ","3 ","3 ","3 ","14.13 ","30000 ","240000 ","8000 ","8000 ","8000 ","16000 ","6000 ","6000 ","28260 "],[""],[""],["人工单价(元\/工日)","人工单价(元\/工日)","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计"],["未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费"],["清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价"],["材料费明细","材料费明细","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","单位","单位","单位","数量","数量","除税单价(元) ","除税单价(元) ","除税单价(元) ","除税合价(元) ","除税合价(元) "],["304不锈钢L型金属条","304不锈钢L型金属条","304不锈钢L型金属条","304不锈钢L型金属条","304不锈钢L型金属条","304不锈钢L型金属条","304不锈钢L型金属条","m ","m ","m ","2000 ","2000 ","157 ","157 ","157 ","314000 ","314000 "],[""],[""]],"node_type":"table","parent":274,"children":[],"para_type":"table","pageno":21,"layout_index":1,"box":[65,114,709,272]}
- {"node_id":276,"text":"投标人:(企业CA电子印章)","node_type":"text","parent":274,"children":[],"para_type":"text","pageno":21,"layout_index":2,"box":[508,408,188,11]}
- {"node_id":277,"text":"法定代表人或其委托代理人:(法定代表人CA电子印章)","node_type":"text","parent":274,"children":[],"para_type":"text","pageno":21,"layout_index":3,"box":[508,452,262,11]}
- {"node_id":278,"text":"2022年9月3日","node_type":"text","parent":274,"children":[],"para_type":"text","pageno":21,"layout_index":4,"box":[681,497,89,11]}
- {"node_id":279,"text":"22 ","node_type":"head_tail","parent":274,"children":[],"para_type":"head_tail","pageno":21,"layout_index":5,"box":[416,539,12,9]}
- {"node_id":280,"text":"表5.4全费用综合单价分析表","node_type":"title","parent":0,"children":[281,282,283,284,285,286],"para_type":"title_1","pageno":22,"layout_index":0,"box":[342,93,157,13]}
- {"node_id":281,"text":[["项目编号","项目编号","011101001001 ","011101001001 ","011101001001 ","项目名称","项目名称","项目名称","项目名称","抗裂砂浆垫层","抗裂砂浆垫层","抗裂砂浆垫层","抗裂砂浆垫层","抗裂砂浆垫层","计量单位","计量单位","m2 ","m2 ","工程量","7000 ","7000 ","7000 "],["清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细"],["定额编号","定额名称","定额单位","数量","单价","单价","单价","单价","单价","单价","单价","单价","单价","单价","合价","合价","合价","合价","合价","合价","合价","合价"],["定额编号","定额名称","定额单位","数量","人工费","材料费","机械费","管理费","利润","利润","措施项目费","规费","规费","税金","人工费","材料费","机械费","管理费","利润","措施项目费","规费","税金"],["m2 ","7000 ","15 ","100 ","5 ","4 ","8 ","8 ","3 ","3 ","3 ","12.42 ","105000 ","700000 ","35000 ","28000 ","56000 ","21000 ","21000 ","86940 "],[""],[""],["人工单价(元\/工日)","人工单价(元\/工日)","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计"],["未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费"],["清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价"],["材料费明细","材料费明细","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","单位","单位","单位","数量","数量","除税单价(元) ","除税单价(元) ","除税合价(元) ","除税合价(元) "],["钢筋网","钢筋网","8圆","8圆","8圆","8圆","8圆","8圆","8圆","m2 ","m2 ","m2 ","","","147 ","147 ","1029000 ","1029000 "],["抗裂砂浆","抗裂砂浆","快干速凝塑型混凝土","快干速凝塑型混凝土","快干速凝塑型混凝土","快干速凝塑型混凝土","快干速凝塑型混凝土","快干速凝塑型混凝土","快干速凝塑型混凝土","m2 ","m2 ","m2 ","7000 ","7000 "],[""]],"node_type":"table","parent":280,"children":[],"para_type":"table","pageno":22,"layout_index":1,"box":[58,114,723,266]}
- {"node_id":282,"text":"7000 ","node_type":"text","parent":280,"children":[],"para_type":"text","pageno":22,"layout_index":2,"box":[456,356,25,11]}
- {"node_id":283,"text":"投标人:(企业CA电子印章)","node_type":"text","parent":280,"children":[],"para_type":"text","pageno":22,"layout_index":3,"box":[505,401,146,11]}
- {"node_id":284,"text":"法定代表人或其委托代理人:(法定代表人CA电子印章)","node_type":"text","parent":280,"children":[],"para_type":"text","pageno":22,"layout_index":4,"box":[508,446,262,11]}
- {"node_id":285,"text":"2022年9月3日","node_type":"text","parent":280,"children":[],"para_type":"text","pageno":22,"layout_index":5,"box":[681,487,89,11]}
- {"node_id":286,"text":"23 ","node_type":"head_tail","parent":280,"children":[],"para_type":"head_tail","pageno":22,"layout_index":6,"box":[416,539,12,9]}
- {"node_id":287,"text":"表5.4全费用综合单价分析表","node_type":"title","parent":0,"children":[288,289,290,291,292],"para_type":"title_1","pageno":23,"layout_index":0,"box":[342,93,157,13]}
- {"node_id":288,"text":[["项目编号","项目编号","011101003001 ","011101003001 ","011101003001 ","项目名称","项目名称","项目名称","项目名称","C25混凝土","C25混凝土","C25混凝土","C25混凝土","C25混凝土","计量单位","计量单位","计量单位","m2 ","m2 ","工程量","14000 ","14000 ","14000 "],["清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细"],["定额编号","定额名称","定额单位","数量","单价","单价","单价","单价","单价","单价","单价","单价","单价","单价","合价","合价","合价","合价","合价","合价","合价","合价","合价"],["定额编号","定额名称","定额单位","数量","人工费","材料费","机械费","管理费","利润","利润","措施项目费","规费","规费","税金","人工费","材料费","机械费","机械费","管理费","利润","措施项目费","规费","税金"],["m2 ","14000 ","15 ","40 ","2.0 ","1 ","3 ","3 ","1 ","1 ","1 ","5.6 ","210000 ","560000 ","28000 ","28000 ","14000 ","42000 ","14000 ","28000 ","78400 "],[""],[""],["人工单价(元\/工日)","人工单价(元\/工日)","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计"],["未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费"],["清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价"],["材料费明细","材料费明细","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","单位","单位","单位","数量","数量","除税单价(元) ","除税单价(元) ","除税单价(元) ","除税合价(元) ","除税合价(元) "],["混凝土","混凝土","C25 ","C25 ","C25 ","C25 ","C25 ","C25 ","C25 ","m2 ","m2 ","m2 ","14000 ","14000 ","63 ","63 ","63 ","882000 ","882000 "],[""],[""]],"node_type":"table","parent":287,"children":[],"para_type":"table","pageno":23,"layout_index":1,"box":[60,114,720,272]}
- {"node_id":289,"text":"投标人:(企业CA电子印章)","node_type":"text","parent":287,"children":[],"para_type":"text","pageno":23,"layout_index":2,"box":[508,407,188,11]}
- {"node_id":290,"text":"法定代表人或其委托代理人:(法定代表人CA电子印章)","node_type":"text","parent":287,"children":[],"para_type":"text","pageno":23,"layout_index":3,"box":[505,448,262,11]}
- {"node_id":291,"text":"2022年9月3日","node_type":"text","parent":287,"children":[],"para_type":"text","pageno":23,"layout_index":4,"box":[645,489,92,11]}
- {"node_id":292,"text":"24 ","node_type":"head_tail","parent":287,"children":[],"para_type":"head_tail","pageno":23,"layout_index":5,"box":[416,539,12,9]}
- {"node_id":293,"text":"表5.4全费用综合单价分析表","node_type":"title","parent":0,"children":[294,295,296,297,298],"para_type":"title_1","pageno":24,"layout_index":0,"box":[342,93,157,13]}
- {"node_id":294,"text":[["项目编号","项目编号","01B004 ","01B004 ","01B004 ","项目名称","项目名称","项目名称","项目名称","钢纤维","钢纤维","钢纤维","钢纤维","计量单位","计量单位","计量单位","T ","T ","工程量","50 ","50 ","50 "],["清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细"],["定额编号","定额名称","定额单位","数量","单价","单价","单价","单价","单价","单价","单价","单价","单价","合价","合价","合价","合价","合价","合价","合价","合价","合价"],["定额编号","定额名称","定额单位","数量","人工费","材料费","机械费","管理费","利润","利润","措施项目费","规费","税金","人工费","材料费","机械费","机械费","管理费","利润","措施项目费","规费","税金"],["6000 ","","","","","","","780 ","","300000 ","","","","","","","39000 "],[""],[""],["人工单价(元\/工日)","人工单价(元\/工日)","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计"],["未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费"],["清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价"],["材料费明细","材料费明细","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","单位","单位","单位","数量","除税单价(元) ","除税单价(元) ","除税单价(元) ","除税合价(元) ","除税合价(元) "],["钢纤维","钢纤维","进口波尔派丝","进口波尔派丝","进口波尔派丝","进口波尔派丝","进口波尔派丝","进口波尔派丝","进口波尔派丝","T ","T ","T ","50 ","6000 ","6000 ","6000 ","300000 ","300000 "],[""],[""]],"node_type":"table","parent":293,"children":[],"para_type":"table","pageno":24,"layout_index":1,"box":[60,114,720,272]}
- {"node_id":295,"text":"投标人:(企业CA电子印章)","node_type":"text","parent":293,"children":[],"para_type":"text","pageno":24,"layout_index":2,"box":[513,408,152,11]}
- {"node_id":296,"text":"法定代表人或其委托代理人:(法定代表人CA电子印章)","node_type":"text","parent":293,"children":[],"para_type":"text","pageno":24,"layout_index":3,"box":[508,452,262,11]}
- {"node_id":297,"text":"2022年9月3日","node_type":"text","parent":293,"children":[],"para_type":"text","pageno":24,"layout_index":4,"box":[672,493,91,13]}
- {"node_id":298,"text":"25 ","node_type":"head_tail","parent":293,"children":[],"para_type":"head_tail","pageno":24,"layout_index":5,"box":[416,539,12,9]}
- {"node_id":299,"text":"表5.4全费用综合单价分析表","node_type":"title","parent":0,"children":[300,301,302,303,304,305,306,307,308,309,310,311,312],"para_type":"title_1","pageno":25,"layout_index":0,"box":[334,114,158,13]}
- {"node_id":300,"text":[["项目编号","项目编号","0111010020 ","0111010020 ","0111010020 ","项目名称","项目名称","项目名称","项目名称","项目名称","无机磨石","无机磨石","无机磨石","计量单位","计量单位","m2 ","m2 ","m2 ","工程量","20000 ","20000 ","20000 "],["清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细"],["定额编号","定额名称","定额单位","数量","单价","单价","单价","单价","单价","单价","单价","单价","单价","合价","合价","合价","合价","合价","合价","合价","合价","合价"],["定额编号","定额名称","定额单位","数量","人工费","材料费","机械费","管理费","利润","措施项目费","措施项目费","规费","税金","人工费","材料费","机械费","机械费","管理费","利润","措施项目费","规费","税金"],["m2 ","20000 ","120 ","286.85 ","10 ","13.0 0 ","27 ","10 ","10 ","10 ","42.92 ","2400000 ","5737000 ","200000 ","200000 ","260000 ","540000 ","200000 0 ","200000 ","858400 "],[""],[""],["人工单价(元\/工日)","人工单价(元\/工日)","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计"],["未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费"],["清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价"],["材料费明细","材料费明细","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","单位","单位","数量","除税单价(元) ","除税单价(元) ","除税单价(元) ","除税合价(元) ","除税合价(元) "],["磨石","磨石","ET系列磨石","ET系列磨石","ET系列磨石","ET系列磨石","ET系列磨石","ET系列磨石","ET系列磨石","ET系列磨石","m2 ","m2 ","20000 ","476.85 ","476.85 ","476.85 ","9537000 ","9537000 "],[""],[""]],"node_type":"table","parent":299,"children":[],"para_type":"table","pageno":25,"layout_index":1,"box":[53,135,733,295]}
- {"node_id":301,"text":"01 ","node_type":"text","parent":299,"children":[],"para_type":"text","pageno":25,"layout_index":2,"box":[155,151,13,10]}
- {"node_id":302,"text":"投标人:(企业CA电子印章)","node_type":"text","parent":299,"children":[],"para_type":"text","pageno":25,"layout_index":3,"box":[582,452,188,11]}
- {"node_id":303,"text":"法定代表人或其委托代理人:(法定代表人CA电子印章)","node_type":"text","parent":299,"children":[],"para_type":"text","pageno":25,"layout_index":4,"box":[508,472,262,11]}
- {"node_id":304,"text":"2022年9月3日","node_type":"text","parent":299,"children":[],"para_type":"text","pageno":25,"layout_index":5,"box":[677,512,75,11]}
- {"node_id":305,"text":"26 ","node_type":"head_tail","parent":299,"children":[],"para_type":"head_tail","pageno":25,"layout_index":6,"box":[416,539,12,9]}
- {"node_id":306,"text":"表5.4全费用综合单价分析表","node_type":"text","parent":299,"children":[],"para_type":"text","pageno":26,"layout_index":0,"box":[342,92,157,11]}
- {"node_id":307,"text":[["项目编号","项目编号","011105006001","011105006001","011105006001","项目名称","项目名称","项目名称","项目名称","不锈钢踢脚线","不锈钢踢脚线","不锈钢踢脚线","不锈钢踢脚线","不锈钢踢脚线","计量单位","计量单位","计量单位","m","m","工程是","10000","10000","10000"],["清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细"],["定额编号","定额名称","定额单位","数量","单价","单价","单价","单价","单价","单价","单价","单价","单价","单价","合价","合价","合价","合价","合价","合价","合价","合价","合价"],["定额编号","定额名称","定额单位","数量","人工费","材料费","机械费","管理费","利润","利润","措施项目费","","","税金","人工费","材料费","机械费","机械费","管理费","利润","措施项目费","规费","税金"],["m","10000","10","76","2","1.5","4.5","4.5","1.5","1.5","1.5","8.73","100000","760000","20000","20000","15000","45000","15000","15000","87300"],[""],[""],["人工单价(元\/工日)","人工单价(元\/工日)","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计"],["未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费"],["清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价"],["材料费明细","材料费明细","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","单位","单位","单位","数量","数量","除税单价(元)","除税单价(元)","除税单价(元)","除税合价(元)","除税合价(元)"],["基础板","基础板","密度板","密度板","密度板","密度板","密度板","密度板","密度板","米","米","米","10000","10000","97","97","97","970000","970000"],["不锈钢拉丝","不锈钢拉丝","304拉丝不锈钢","304拉丝不锈钢","304拉丝不锈钢","304拉丝不锈钢","304拉丝不锈钢","304拉丝不锈钢","304拉丝不锈钢","米","米","米","10000","10000"],[""]],"node_type":"table","parent":299,"children":[],"para_type":"table","pageno":26,"layout_index":1,"box":[60,114,720,271]}
- {"node_id":308,"text":"投标人","node_type":"text","parent":299,"children":[],"para_type":"text","pageno":26,"layout_index":2,"box":[504,406,51,12]}
- {"node_id":309,"text":"(企业CA电子印章)","node_type":"text","parent":299,"children":[],"para_type":"text","pageno":26,"layout_index":3,"box":[600,407,88,9]}
- {"node_id":310,"text":"法定代表人或其委托代理人:(法定代表人CA电子印章)","node_type":"text","parent":299,"children":[],"para_type":"text","pageno":26,"layout_index":4,"box":[508,452,256,9]}
- {"node_id":311,"text":"2022年9月3日","node_type":"text","parent":299,"children":[],"para_type":"text","pageno":26,"layout_index":5,"box":[686,490,74,10]}
- {"node_id":312,"text":"27","node_type":"head_tail","parent":299,"children":[],"para_type":"head_tail","pageno":26,"layout_index":6,"box":[414,537,12,9]}
- {"node_id":313,"text":"表5.4全费用综合单价分析表","node_type":"title","parent":0,"children":[314,315,316,317,318],"para_type":"title_1","pageno":27,"layout_index":0,"box":[342,114,157,13]}
- {"node_id":314,"text":[["项目编号","项目编号","011203001001 ","011203001001 ","011203001001 ","项目名称","项目名称","项目名称","项目名称","墙面零星抹灰","墙面零星抹灰","墙面零星抹灰","墙面零星抹灰","墙面零星抹灰","计量单位","计量单位","计量单位","m2 ","m2 ","工程量","2000 ","2000 ","2000 "],["清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细"],["定额编号","定额名称","定额单位","数量","单价","单价","单价","单价","单价","单价","单价","单价","单价","单价","合价","合价","合价","合价","合价","合价","合价","合价","合价"],["定额编号","定额名称","定额单位","数量","人工费","材料费","机械费","管理费","利润","利润","措施项目费","规费","规费","税金","人工费","材料费","机械费","机械费","管理费","利润","措施项目费","规费","税金"],["m2 ","2000 ","15 ","20 ","1 ","1 ","4 ","4 ","1.5 ","1.5 ","1.5 ","3.96 ","30000 ","40000 ","2000 ","2000 ","2000 ","8000 ","3000 ","3000 ","7920 "],[""],[""],["人工单价(元\/工日)","人工单价(元\/工日)","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计"],["未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费"],["清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价"],["材料费明细","材料费明细","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","单位","单位","单位","数量","数量","除税单价(元) ","除税单价(元) ","除税单价(元) ","除税合价(元) ","除税合价(元) "],["水泥黄沙","水泥黄沙","水泥黄沙","水泥黄沙","水泥黄沙","水泥黄沙","水泥黄沙","m2 ","m2 ","m2 ","2000 ","2000 ","44 ","44 ","44 ","88000 ","88000 "],[""],[""]],"node_type":"table","parent":313,"children":[],"para_type":"table","pageno":27,"layout_index":1,"box":[60,135,720,272]}
- {"node_id":315,"text":"投标人:(企业CA电子印章)","node_type":"text","parent":313,"children":[],"para_type":"text","pageno":27,"layout_index":2,"box":[513,428,188,11]}
- {"node_id":316,"text":"法定代表人或其委托代理人:(法定代表人CA电子印章)","node_type":"text","parent":313,"children":[],"para_type":"text","pageno":27,"layout_index":3,"box":[508,473,262,11]}
- {"node_id":317,"text":"2022年9月3日","node_type":"text","parent":313,"children":[],"para_type":"text","pageno":27,"layout_index":4,"box":[666,493,73,11]}
- {"node_id":318,"text":"28 ","node_type":"head_tail","parent":313,"children":[],"para_type":"head_tail","pageno":27,"layout_index":5,"box":[416,539,12,9]}
- {"node_id":319,"text":"表5.4全费用综合单价分析表","node_type":"title","parent":0,"children":[320,321,322,323,324],"para_type":"title_1","pageno":28,"layout_index":0,"box":[342,114,157,13]}
- {"node_id":320,"text":[["项目编号","项目编号","011406001001 ","011406001001 ","011406001001 ","项目名称","项目名称","项目名称","项目名称","墙面乳胶漆恢复","墙面乳胶漆恢复","墙面乳胶漆恢复","墙面乳胶漆恢复","墙面乳胶漆恢复","计量单位","计量单位","计量单位","m2 ","m2 ","工程量","500 ","500 ","500 "],["清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细"],["定额编号","定额名称","定额单位","数量","单价","单价","单价","单价","单价","单价","单价","单价","单价","单价","合价","合价","合价","合价","合价","合价","合价","合价","合价"],["定额编号","定额名称","定额单位","数量","人工费","材料费","机械费","管理费","利润","利润","措施项目费","规费","规费","税金","人工费","材料费","机械费","机械费","管理费","利润","措施项目费","规费","税金"],["m2 ","500 ","8 ","8 ","0 ","0.3 ","2 ","2 ","1 ","1 ","1 ","2 ","4000 ","4000 ","0 ","0 ","150 ","1000 ","500 ","500 ","1000 "],[""],[""],["人工单价(元\/工日)","人工单价(元\/工日)","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计"],["未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费"],["清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价"],["材料费明细","材料费明细","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","单位","单位","单位","数量","数量","除税单价(元) ","除税单价(元) ","除税单价(元) ","除税合价(元) ","除税合价(元) "],["涂料","涂料","涂料","涂料","涂料","涂料","涂料","","","","","","20.3 ","20.3 ","20.3 ","10150 ","10150 "],[""],[""]],"node_type":"table","parent":319,"children":[],"para_type":"table","pageno":28,"layout_index":1,"box":[60,135,720,272]}
- {"node_id":321,"text":"投标人:(企业CA电子印章)","node_type":"text","parent":319,"children":[],"para_type":"text","pageno":28,"layout_index":2,"box":[508,428,188,11]}
- {"node_id":322,"text":"法定代表人或其委托代理人:(法定代表人CA电子印章)","node_type":"text","parent":319,"children":[],"para_type":"text","pageno":28,"layout_index":3,"box":[508,473,262,11]}
- {"node_id":323,"text":"2022年9月3日","node_type":"text","parent":319,"children":[],"para_type":"text","pageno":28,"layout_index":4,"box":[643,493,75,11]}
- {"node_id":324,"text":"29 ","node_type":"head_tail","parent":319,"children":[],"para_type":"head_tail","pageno":28,"layout_index":5,"box":[416,539,12,9]}
- {"node_id":325,"text":"表5.4全费用综合单价分析表","node_type":"title","parent":0,"children":[326,327,328,329,330,331],"para_type":"title_1","pageno":29,"layout_index":0,"box":[342,96,157,13]}
- {"node_id":326,"text":[["项目编号","项目编号","0402050060 ","0402050060 ","0402050060 ","项目名称","项目名称","项目名称","项目名称","定置管理划线(环氧地坪漆)","定置管理划线(环氧地坪漆)","定置管理划线(环氧地坪漆)","定置管理划线(环氧地坪漆)","定置管理划线(环氧地坪漆)","计量单位","计量单位","计量单位","㎡","㎡","工程量","400 ","400 ","400 "],["清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细"],["定额编号","定额名称","定额单位","数量","单价","单价","单价","单价","单价","单价","单价","单价","单价","单价","合价","合价","合价","合价","合价","合价","合价","合价","合价"],["定额编号","定额名称","定额单位","数量","人工费","材料费","机械费","管理费","利润","利润","措施项目费","规费","规费","税金","人工费","材料费","机械费","机械费","管理费","利润","措施项目费","规费","税金"],["㎡","400 ","15 ","45 ","0 ","1.5 ","5 ","5 ","1.5 ","1.5 ","1.5 ","6.3 ","6000 ","18000 ","0 ","0 ","600 ","2000 ","600 ","600 ","2520 "],[""],[""],["人工单价(元\/工日)","人工单价(元\/工日)","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计"],["未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费"],["清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价"],["材料费明细","材料费明细","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","单位","单位","单位","数量","数量","除税单价(元) ","除税单价(元) ","除税单价(元) ","除税合价(元) ","除税合价(元) "],["西卡环氧树脂漆","西卡环氧树脂漆","西卡环氧树脂漆","西卡环氧树脂漆","西卡环氧树脂漆","西卡环氧树脂漆","西卡环氧树脂漆","","","","","","69.5 ","69.5 ","69.5 ","27800 ","27800 "],[""],[""]],"node_type":"table","parent":325,"children":[],"para_type":"table","pageno":29,"layout_index":1,"box":[60,118,720,272]}
- {"node_id":327,"text":"01 ","node_type":"text","parent":325,"children":[],"para_type":"text","pageno":29,"layout_index":2,"box":[167,134,13,10]}
- {"node_id":328,"text":"投标人:(企业CA电子印章)","node_type":"text","parent":325,"children":[],"para_type":"text","pageno":29,"layout_index":3,"box":[511,411,189,11]}
- {"node_id":329,"text":"法定代表人或其委托代理人:(法定代表人CA电子印章)","node_type":"text","parent":325,"children":[],"para_type":"text","pageno":29,"layout_index":4,"box":[508,456,262,11]}
- {"node_id":330,"text":"2022年9月3日","node_type":"text","parent":325,"children":[],"para_type":"text","pageno":29,"layout_index":5,"box":[668,476,76,11]}
- {"node_id":331,"text":"30 ","node_type":"head_tail","parent":325,"children":[],"para_type":"head_tail","pageno":29,"layout_index":6,"box":[416,539,12,9]}
- {"node_id":332,"text":"表5.4全费用综合单价分析表","node_type":"title","parent":0,"children":[333,334,335,336,337,338,339,340,341,342,343,344,345,350,356,374],"para_type":"title_1","pageno":30,"layout_index":0,"box":[342,93,157,13]}
- {"node_id":333,"text":[["项目编号","项目编号","010904004001 ","010904004001 ","010904004001 ","项目名称","项目名称","项目名称","项目名称","成品地面结构缝装置","成品地面结构缝装置","成品地面结构缝装置","成品地面结构缝装置","成品地面结构缝装置","计量单位","计量单位","计量单位","m ","m ","工程量","1000 ","1000 ","1000 "],["清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细"],["定额编号","定额名称","定额单位","数量","单价","单价","单价","单价","单价","单价","单价","单价","单价","单价","合价","合价","合价","合价","合价","合价","合价","合价","合价"],["定额编号","定额名称","定额单位","数量","人工费","材料费","机械费","管理费","利润","利润","措施项目费","规费","规费","税金","人工费","材料费","机械费","机械费","管理费","利润","措施项目费","规费","税金"],["m ","1000 ","25 ","120 ","0 ","3 ","10 ","10 ","3 ","","","3 14. 76 ","25000 ","120000 ","0 ","0 ","3000 ","10000 ","3000 ","3000 ","14000 "],[""],[""],["人工单价(元\/工日)","人工单价(元\/工日)","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计"],["未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费"],["清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价"],["材料费明细","材料费明细","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","单位","单位","单位","数量","数量","除税单价(元) ","除税单价(元) ","除税单价(元) ","除税合价(元) ","除税合价(元) "],["不锈钢铠甲缝","不锈钢铠甲缝","不锈钢铠甲缝","不锈钢铠甲缝","不锈钢铠甲缝","不锈钢铠甲缝","不锈钢铠甲缝","m ","m ","m ","1000 ","1000 ","164 ","164 ","164 ","164000 ","164000 "],[""],[""]],"node_type":"table","parent":332,"children":[],"para_type":"table","pageno":30,"layout_index":1,"box":[60,114,720,272]}
- {"node_id":334,"text":"投标人:(企业CA电子印章)","node_type":"text","parent":332,"children":[],"para_type":"text","pageno":30,"layout_index":2,"box":[511,408,189,11]}
- {"node_id":335,"text":"法定代表人或其委托代理人:(法定代表人CA电子印章)","node_type":"text","parent":332,"children":[],"para_type":"text","pageno":30,"layout_index":3,"box":[511,452,262,11]}
- {"node_id":336,"text":"2022年9月3日","node_type":"text","parent":332,"children":[],"para_type":"text","pageno":30,"layout_index":4,"box":[657,473,75,11]}
- {"node_id":337,"text":"31 ","node_type":"head_tail","parent":332,"children":[],"para_type":"head_tail","pageno":30,"layout_index":5,"box":[416,539,12,9]}
- {"node_id":338,"text":"表5.4全费用综合单价分析表","node_type":"text","parent":332,"children":[],"para_type":"text","pageno":31,"layout_index":0,"box":[342,134,157,11]}
- {"node_id":339,"text":[["项目编号","项目编号","01B002","01B002","01B002","项目名称","项目名称","项目名称","项目名称","设备防护措施","设备防护措施","设备防护措施","设备防护措施","设备防护措施","计量单位","计量单位","计量单位","m","m","工程是","5000","5000","5000"],["清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细","清单综合单价组成明细"],["定额编号","定额名称","定额单位","数量","单价","单价","单价","单价","单价","单价","单价","单价","单价","单价","合价","合价","合价","合价","合价","合价","合价","合价","合价"],["定额编号","定额名称","定额单位","数量","人工费","材料费","机械费","管理费","","","措施项目费","规费","规费","税金","人工费","材料费","机械费","机械费","管理费","利润","措施项目费","规费","税金"],["m","5000","4","8","0","0.4","0","0","0.3","0.3","0.3","1.17","20000","40000","0","0","2000","0","1500","1500","5500"],[""],[""],["人工单价(元\/工日)","人工单价(元\/工日)","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计","小计"],["未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费","未计价材料费"],["清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价","清单项目综合单价"],["材料费明细","材料费明细","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","主要材料名称、规格、型号","单位","单位","单位","数量","数量","除税单价(元)","除税单价(元)","除税单价(元)","除税合价(元)","除税合价(元)"],["防撞板,雨布,格栅","防撞板,雨布,格栅","防撞板,雨布,格栅","防撞板,雨布,格栅","防撞板,雨布,格栅","防撞板,雨布,格栅","防撞板,雨布,格栅","m","m","m","5000","5000","13","13","13","65000","65000"],[""],[""]],"node_type":"table","parent":332,"children":[],"para_type":"table","pageno":31,"layout_index":1,"box":[60,156,720,272]}
- {"node_id":340,"text":"投标人:","node_type":"text","parent":332,"children":[],"para_type":"text","pageno":31,"layout_index":2,"box":[507,448,68,11]}
- {"node_id":341,"text":"(企业CA电子印章)","node_type":"text","parent":332,"children":[],"para_type":"text","pageno":31,"layout_index":3,"box":[600,449,91,9]}
- {"node_id":342,"text":"法定代表人或其委托代理人:(法定代表人CA电子印章","node_type":"text","parent":332,"children":[],"para_type":"text","pageno":31,"layout_index":4,"box":[508,470,251,9]}
- {"node_id":343,"text":"2022年9月3日","node_type":"text","parent":332,"children":[],"para_type":"text","pageno":31,"layout_index":5,"box":[665,490,75,9]}
- {"node_id":344,"text":"32","node_type":"head_tail","parent":332,"children":[],"para_type":"head_tail","pageno":31,"layout_index":6,"box":[414,537,12,9]}
- {"node_id":345,"text":"5.5主要材料品牌推荐表","node_type":"title","parent":332,"children":[346,347,348,349],"para_type":"title_6","pageno":32,"layout_index":0,"box":[94,72,131,16]}
- {"node_id":346,"text":"说明:主要设备及材料品牌要求:请投标人提供响应设备的品牌、规格型号的信息,若投标人未使用推荐品牌,须提供与推荐品牌同档次产品的证明材料。","node_type":"text","parent":345,"children":[],"para_type":"text","pageno":32,"layout_index":1,"box":[70,95,682,10]}
- {"node_id":347,"text":[["序号","主材名称","规格型号","不低于下列同档次品牌","不低于下列同档次品牌","不低于下列同档次品牌","投标选用品牌及规格型号"],["1","无机磨石","1、成品钢筋网片,丝径6mm;2、无机磨石地坪,厚度≥10mm,骨料粒径6-8mm;3、防污抗渗罩面。5、铝镁分隔条(包含墙脚分隔条);6、垫层与面层为同一品牌产品,且无机磨石体系尺寸变化率不大于0.05%,莫氏硬度6级及以上,抗折强度不小于6Mpa,抗压强度不小于30Mpa,无机磨石表面平整度2米靠尺不大于2mm。","西卡","绰琪","迈拓","绰琪"],["2","预制无机磨石","1、成品预制无机磨石,颜色与无机磨石整体施工相一致,厚度大于等于20mm;2、预制磨石铺贴,2cm干混地面砂浆DS M20;3、不低于西卡、绰琪、迈拓品牌。","西卡","绰琪","迈拓","绰琪"],["3","抗裂砂浆垫层","1、部位:高程75.3m及以下或不具备钢纤维混凝土运输条件的部位;2、成品抗裂砂浆垫层(非现场搅拌砂浆后添加外加剂),具备低收缩早强快干性能;3、品牌与无机磨石一致","西卡","绰琪","迈拓","绰琪"],["4","墙面恢复","1、部位:原踢脚线拆除后的墙面;2、墙面修补,抗碱底漆二遍、内墙腻子二遍、面漆二遍。","多乐士","立邦","华润","多乐士"],["5","环氧地坪漆","1、部位:定置管理划线;2、表面刷掺胶水泥浆满刮两遍;3、涂刷环氧地坪漆两遍底漆、中漆一遍,面漆两遍。","西卡","巴斯夫","马贝","马贝"],[""]],"node_type":"table","parent":345,"children":[],"para_type":"table","pageno":32,"layout_index":2,"box":[69,113,701,313]}
- {"node_id":348,"text":"注:无机磨石地坪与抗裂砂浆垫层需为同一品牌。","node_type":"text","parent":345,"children":[],"para_type":"text","pageno":32,"layout_index":3,"box":[70,428,232,11]}
- {"node_id":349,"text":"33 ","node_type":"head_tail","parent":345,"children":[],"para_type":"head_tail","pageno":32,"layout_index":4,"box":[416,539,12,9]}
- {"node_id":350,"text":"5.6安全文明措施费报价明细表","node_type":"title","parent":332,"children":[351,352,353,354,355],"para_type":"title_6","pageno":33,"layout_index":0,"box":[68,50,167,16]}
- {"node_id":351,"text":[["序号","名称","事项","单位","数量","含税单价(元)","含税合价(元)"],["1","文明施工","安全警示、标志牌。","项","1 ","","3000 "],["2","现场围挡","现场采用封闭围挡、铁塔防护。","项","1 ","","12000 "],["3","八牌一图","","项","1 "],["4","材料堆放","材料、构件、料具等堆放时,悬挂有名称、品种、规格等标牌;水泥和其他易飞扬细颗粒建筑材料应密闭存放或采取覆盖等措施;易燃、易爆和有毒有害物品分类存放。","项","1 ","","12000 "],["5","现场防火","消防器材配置合理,设置消防栓、灭火器等,符合消防要求。","项","1 ","","4000 "],["6","垃圾清运","施工现场应设置密闭式垃圾站;施工垃圾、生活垃圾应分类存放、生活垃圾清理外运;施工垃圾必须采用相应容器或管道运输。","项","1 ","","197586 "],["7","安全生产","安全生产检查、评价、咨询和标准化建设费用;安全生产培训、教育、宣传费用;治安秩序管理费用。","项","1 ","","10000 "],["8 ","宣传栏、环保保护及不扰民措施","宣传栏、安全宣传标语等,洗车(防止污染市区道路)、粉尘;设备噪声控制、防扰民措施;水泥及其他细颗粒封闭存放及覆盖措施、土石方外运车辆保护;现场污染源的控制,排污(污水、废气)措施等。","项","1 ","","3500 "],["9","临时设施","现场办公、值班室、茶水休息间、工地厕所、库房、砂浆搅拌站、加工防护棚施工现场范围内建筑物(构筑物)沿外边起50m以内的供(排)水管道(沟)、供电管线等设施的搭设、维修、拆除、清理和摊销等费用。","项","1 ","","20000 "],["10 ","施工现场临时用电","施工中检修电源的布置、拆除、维护、修理等。按三级配电要求,配备总配电箱、分配电箱、开关箱三类(铁质)标准电箱。开关箱应符合一机、一箱、一闸、一漏。三类电箱中的各类电器应是合格品。按两级保护的要求,选取符合容量要求和质量合格的总配电箱和开关箱中的漏电保器。对大型、落地式分配电箱、开关箱设置防护棚和通透式围档。","项","1 ","","12000 "],["11","接地保护装置","施工现场应设置接地带装置。","项","1 ","","1000 "],[""]],"node_type":"table","parent":350,"children":[],"para_type":"table","pageno":33,"layout_index":1,"box":[67,67,459,708]}
- {"node_id":352,"text":"34 ","node_type":"head_tail","parent":350,"children":[],"para_type":"head_tail","pageno":33,"layout_index":2,"box":[293,779,12,9]}
- {"node_id":353,"text":[["12","现场变配电装置","总配电室建筑材料必须达到三级防火要求,室内做硬地坪、电缆沟、吊顶。","项","1","","3000"],["13","安全施工","临边洞口交叉高处作业防护","项","1","","5000"],["14","预留洞口防护","用硬质材料全封闭;短边超过1.5m长的洞口,除封闭外四周还应设有防护栏杆。","项","1","","5000"],["15","楼梯边防护","设1.2m高的定型化、工具化、标准化的防护栏杆,18cm高的踢脚板。","项","1","","12000"],["16","垂直方向交叉作业防护","设置防护隔离棚或其他设施。","项","1","","无"],["17","高空作业防护","有悬挂安全带的悬索或其他设施;有操作平台;有上下的梯子或其他形式的通道。","项","1","","6000"],["18","安全防护用品","安全帽、安全带、安全绳,特种作业人员(电工、混凝土工、焊工等)防护服装、用品等;生产工人防暑降温费、防寒保暖费用。","项","1","","2000"],["19","机械设备防护","机械设备防护。","项","1","","1500"],["20","特种设备","垂直运输等特种设备检测、检验;物料提升机、施工电梯等卸料平台搭设、两侧用密目式安全立网全封闭,安全防护门、防护棚等。","项","1","","15000"],["21","应急救援预案","现场临时医疗、救援及保健物品的配置费用;配备、维护、保养应急救援器材、设备费用和应急演练费用。","项","1","","15000"],["22","重大危险源","开展重大危险源和事故隐患评估、监控和整改支出。","项","1","","12000"],["23","非正常情况施工","其它特殊情况产生的防护费用。","项","1"],["24","疫情防控费用","因疫情防控需要购买口罩、消毒液以及进行核酸检测等费用","项","1","","3000"],[""],["总计","","","","","354586"],[""]],"node_type":"table","parent":350,"children":[],"para_type":"table","pageno":34,"layout_index":0,"box":[67,44,459,501]}
- {"node_id":354,"text":"注:投标人可根据项目实际情况对上表进行调整,费用总计应与投标报价汇总表中安全文明施工费报价保持一致,据实结算。","node_type":"text","parent":350,"children":[],"para_type":"text","pageno":34,"layout_index":1,"box":[43,549,508,28]}
- {"node_id":355,"text":"35","node_type":"head_tail","parent":350,"children":[],"para_type":"head_tail","pageno":34,"layout_index":2,"box":[290,776,13,11]}
- {"node_id":356,"text":"第六章施工组织设计(见技术标)","node_type":"title","parent":332,"children":[357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373],"para_type":"title_2","pageno":35,"layout_index":0,"box":[153,51,289,19]}
- {"node_id":357,"text":"1.投标人应根据招标文件和对现场的勘察情况,采用文字并结合图表形式,参考以下要点编制本工程的施工方案:","node_type":"text","parent":356,"children":[],"para_type":"text","pageno":35,"layout_index":1,"box":[44,87,506,34]}
- {"node_id":358,"text":"(1)施工组织设计(施工设备配置、选型的合理性;施工进度、强度分析,劳动力计划安排;项目资金使用、保证与分配、封闭管理及奖惩措施;专业队伍配备,拟投入本项目现有人员数量、工种、资格资质证书情况;施工方法、程序、配合环节等。)。","node_type":"text","parent":356,"children":[],"para_type":"text","pageno":35,"layout_index":2,"box":[44,132,512,60]}
- {"node_id":359,"text":"(2)无机磨石品牌及质量(根据投标人提供的无机磨石品牌及对应检测报告、产品说明书,以及样品俯视图、剖面图等。)。","node_type":"text","parent":356,"children":[],"para_type":"text","pageno":35,"layout_index":3,"box":[44,202,511,36]}
- {"node_id":360,"text":"(3)无机磨石地坪的施工工艺及质量控制(针对本项目特点及现场情况对投标人提供保证质量的技术措施。对无机磨石地坪的主要施工方法、程序的合理性及质量保证措施,对无机磨石抗裂的应对措施,对混凝土找平层及结构缝的主要施工方法、程序的合理性及质量保证措施)。","node_type":"text","parent":356,"children":[],"para_type":"text","pageno":35,"layout_index":4,"box":[44,249,506,60]}
- {"node_id":361,"text":"(4)施工安全和文明施工(针对本项目特点及现场情况对投标人提供安全和文明施工的技术措施,环保实施措施,防灾应急措施,对周边已有设施的保护措施、减小施工中的震动对周边已有设施的影响、对施工粉尘的控制措施等。)。","node_type":"text","parent":356,"children":[],"para_type":"text","pageno":35,"layout_index":5,"box":[44,319,506,60]}
- {"node_id":362,"text":"(5)组织机构及施工管理人员(项目现场组织机构、职责,项目经理和技术负责人的经历、主持过的工程项目等)。","node_type":"text","parent":356,"children":[],"para_type":"text","pageno":35,"layout_index":6,"box":[44,389,511,37]}
- {"node_id":363,"text":"(6)成品保护和工程保修工作的管理措施和承诺;","node_type":"text","parent":356,"children":[],"para_type":"text","pageno":35,"layout_index":7,"box":[68,436,271,13]}
- {"node_id":364,"text":"(7)任何可能的紧急情况的处理措施、预案以及抵抗风险(包括工程施工过程中可能遇到的各种风险)的措施;","node_type":"text","parent":356,"children":[],"para_type":"text","pageno":35,"layout_index":8,"box":[44,459,506,37]}
- {"node_id":365,"text":"(8)与发包人的配合;","node_type":"text","parent":356,"children":[],"para_type":"text","pageno":35,"layout_index":9,"box":[68,506,127,13]}
- {"node_id":366,"text":"(9)招标文件规定的其他内容。","node_type":"text","parent":356,"children":[],"para_type":"text","pageno":35,"layout_index":10,"box":[68,530,175,13]}
- {"node_id":367,"text":"2.方案除采用文字表述外可附下列图表,图表及格式要求附后。","node_type":"text","parent":356,"children":[],"para_type":"text","pageno":35,"layout_index":11,"box":[56,578,343,13]}
- {"node_id":368,"text":"附件一","node_type":"text","parent":356,"children":[],"para_type":"text","pageno":35,"layout_index":12,"box":[68,600,36,13]}
- {"node_id":369,"text":"拟投入本工程的主要施工设备表","node_type":"text","parent":356,"children":[],"para_type":"text","pageno":35,"layout_index":13,"box":[116,600,168,13]}
- {"node_id":370,"text":"附件二拟配备本工程的试验和检测仪器设备表","node_type":"text","parent":356,"children":[],"para_type":"text","pageno":35,"layout_index":14,"box":[68,623,252,13]}
- {"node_id":371,"text":"附件三劳动力计划表","node_type":"text","parent":356,"children":[],"para_type":"text","pageno":35,"layout_index":15,"box":[68,647,120,13]}
- {"node_id":372,"text":"附件四计划开、竣工日期和施工进度网络图","node_type":"text","parent":356,"children":[],"para_type":"text","pageno":35,"layout_index":16,"box":[68,670,240,13]}
- {"node_id":373,"text":"36 ","node_type":"head_tail","parent":356,"children":[],"para_type":"head_tail","pageno":35,"layout_index":17,"box":[293,779,12,9]}
- {"node_id":374,"text":"第七章项目管理机构","node_type":"title","parent":332,"children":[],"para_type":"title_2","pageno":36,"layout_index":0,"box":[206,49,182,19]}
- {"node_id":375,"text":"项目经理","node_type":"title","parent":0,"children":[376,377,378,379,380,381],"para_type":"title_1","pageno":36,"layout_index":1,"box":[252,129,65,16]}
- {"node_id":376,"text":"技术经理","node_type":"text","parent":375,"children":[],"para_type":"text","pageno":36,"layout_index":2,"box":[202,187,66,17]}
- {"node_id":377,"text":"安全员","node_type":"text","parent":375,"children":[],"para_type":"text","pageno":36,"layout_index":3,"box":[112,245,48,17]}
- {"node_id":378,"text":"抗裂基层施工班组","node_type":"text","parent":375,"children":[],"para_type":"text","pageno":36,"layout_index":4,"box":[195,235,81,36]}
- {"node_id":379,"text":"磨石面层施工班组","node_type":"text","parent":375,"children":[],"para_type":"text","pageno":36,"layout_index":5,"box":[295,236,79,35]}
- {"node_id":380,"text":"其他班组","node_type":"text","parent":375,"children":[],"para_type":"text","pageno":36,"layout_index":6,"box":[395,243,76,20]}
- {"node_id":381,"text":"(一)项目管理机构组成表","node_type":"title","parent":375,"children":[382,383],"para_type":"title_4","pageno":36,"layout_index":7,"box":[100,304,161,14]}
- {"node_id":382,"text":[["职务","姓名","职称","执业或职业资格证明","执业或职业资格证明","执业或职业资格证明","执业或职业资格证明","执业或职业资格证明","备注"],["职务","姓名","职称","证书名称","级别","证号","专业","社保","备注"],["项目经理","方海涛","中级","二级建造师","二级","沪231152203096","建筑工程","已交"],["技术经理","胡居雷","中级","油漆工","中级","19430001241920900","油漆涂刷","已交"],["生产管理","白双龙","初级","","","","现场管理","已交"],["安全员","顾东升","中级","安全员","初级","沪建安A(2019)2199201","安全管理","已交"],["资料员","邓琴","初级","","","","资料管理","已交"],["质量员","夏秀辉","初级","","","","质量管理","已交"],["材料员","朱涛","初级","","","","材料管理","已交"],["标准员","余浩","初级","","","","质量标准","已交"],[""],[""],[""]],"node_type":"table","parent":381,"children":[],"para_type":"table","pageno":36,"layout_index":8,"box":[70,333,453,410]}
- {"node_id":383,"text":"37","node_type":"head_tail","parent":381,"children":[],"para_type":"head_tail","pageno":36,"layout_index":9,"box":[291,777,12,9]}
- {"node_id":384,"text":"公司员工社保缴费证明","node_type":"title","parent":0,"children":[385],"para_type":"title_1","pageno":37,"layout_index":0,"box":[187,71,218,21]}
- {"node_id":385,"text":"JJZJ03 ","node_type":"text","parent":384,"children":[],"para_type":"text","pageno":37,"layout_index":1,"box":[148,118,26,5]}
- {"node_id":386,"text":"单位职工参加城镇基本养老保险情况","node_type":"title","parent":0,"children":[387,388,389,390,391],"para_type":"title_1","pageno":37,"layout_index":2,"box":[170,138,250,14]}
- {"node_id":387,"text":"参保单位名称:上海绰琪新型建材科技有限公司","node_type":"text","parent":386,"children":[],"para_type":"text","pageno":37,"layout_index":3,"box":[149,165,198,9]}
- {"node_id":388,"text":"社保登记码:01196856","node_type":"text","parent":386,"children":[],"para_type":"text","pageno":37,"layout_index":4,"box":[348,166,84,7]}
- {"node_id":389,"text":[["序号","姓名","身份证号码","上月缴费状态","上月缴费状态"],["28","余浩","320324197508295676","正常缴费","正常缴费"],["33","季长磊","320324197608235910","正常缴费","正常缴费"],["34","夏秀辉","36232619851227601X","正常缴费","正常缴费"],["35","邱玉婷","510182198404016225","正常缴费","正常缴费"],["36","胡居雷","320324197901200637","正常缴费","正常缴费"],["37","顾东升","320324197805041576","正常缴费","正常缴费"],["41","白双龙","150430199312154150","正常缴费","正常缴费"],["44","邓琴","510821197708260025","正常缴费","正常缴费"],["48","方海涛","342623198204208131","正常缴费","正常缴费"],["49","沙兴丽","320324197709075944","正常缴费","正常缴费"],["50","朱涛","320324196904290338","常缴费","常缴费"],["本页第1页,共1页子印草心全称◆上海市社会保险事业管理中心网上业务专用章已经上海市数字证书认证中心认证,是对处经办网上业务指定电子用章。打印期:222年26日","本页第1页,共1页子印草心全称◆上海市社会保险事业管理中心网上业务专用章已经上海市数字证书认证中心认证,是对处经办网上业务指定电子用章。打印期:222年26日","本页第1页,共1页子印草心全称◆上海市社会保险事业管理中心网上业务专用章已经上海市数字证书认证中心认证,是对处经办网上业务指定电子用章。打印期:222年26日","本页第1页,共1页子印草心全称◆上海市社会保险事业管理中心网上业务专用章已经上海市数字证书认证中心认证,是对处经办网上业务指定电子用章。打印期:222年26日","本页第1页,共1页子印草心全称◆上海市社会保险事业管理中心网上业务专用章已经上海市数字证书认证中心认证,是对处经办网上业务指定电子用章。打印期:222年26日"],[""]],"node_type":"table","parent":386,"children":[],"para_type":"table","pageno":37,"layout_index":5,"box":[148,182,295,371]}
- {"node_id":390,"text":"38","node_type":"head_tail","parent":386,"children":[],"para_type":"head_tail","pageno":37,"layout_index":6,"box":[291,777,12,9]}
- {"node_id":391,"text":"(二)主要人员简历表","node_type":"title","parent":386,"children":[392,393,394,395,396,397,398,399,400,401,402],"para_type":"title_4","pageno":38,"layout_index":0,"box":[227,53,140,15]}
- {"node_id":392,"text":"附1:项目经理简历表","node_type":"text","parent":391,"children":[],"para_type":"text","pageno":38,"layout_index":1,"box":[44,81,118,13]}
- {"node_id":393,"text":"项目经理应附建造师执业资格证书、注册证书、安全生产考核合格证书、身份证、职称证、学历证、社保证明及未担任其他在施建设工程项目项目经理的承诺书,管理过的项目业绩须附合同协议书和竣工验收备案登记表扫描件。类似项目限于以项目经理身份参与的项目。","node_type":"text","parent":391,"children":[],"para_type":"text","pageno":38,"layout_index":2,"box":[44,104,506,60]}
- {"node_id":394,"text":[["姓名","方海涛","年龄","41 ","学历","本科"],["职称","中级","职务","项目经理","拟在本工程任职","项目经理"],["注册建造师执业资格等级","注册建造师执业资格等级","注册建造师执业资格等级","二级","建造师专业","沪231152203096 "],["安全生产考核合格证书","安全生产考核合格证书","安全生产考核合格证书","沪建安B(2019)2179689 ","沪建安B(2019)2179689 ","沪建安B(2019)2179689 "],["毕业学校","2015年毕业于上海大学学校工程管理专业","2015年毕业于上海大学学校工程管理专业","2015年毕业于上海大学学校工程管理专业","2015年毕业于上海大学学校工程管理专业","2015年毕业于上海大学学校工程管理专业"],["主要工作经历","主要工作经历","主要工作经历","主要工作经历","主要工作经历","主要工作经历"],["时间","参加过的类似项目名称","参加过的类似项目名称","参加过的类似项目名称","工程概况说明","发包人及联系电话"],["2020 ","广州泰和肿瘤医院项目","广州泰和肿瘤医院项目","广州泰和肿瘤医院项目","合同金额202万元"],["2020 ","菏泽市民文化活动中心面积:2万平米","菏泽市民文化活动中心面积:2万平米","菏泽市民文化活动中心面积:2万平米","合同金额831万元"],["2021 ","嘉兴高铁站候车厅面积6000多平米","嘉兴高铁站候车厅面积6000多平米","嘉兴高铁站候车厅面积6000多平米","合同金额679万元","汪经理15755949755 "],["2021 ","四川永祥新能源面积16000多平米","四川永祥新能源面积16000多平米","四川永祥新能源面积16000多平米","合同金额783万元"],["2022 ","内蒙通威多晶硅15000平米","内蒙通威多晶硅15000平米","内蒙通威多晶硅15000平米","合同金额876万元","杨总18004727932 "],[""],[""],[""],[""]],"node_type":"table","parent":391,"children":[],"para_type":"table","pageno":38,"layout_index":3,"box":[87,168,419,482]}
- {"node_id":395,"text":"39 ","node_type":"head_tail","parent":391,"children":[],"para_type":"head_tail","pageno":38,"layout_index":4,"box":[293,779,12,9]}
- {"node_id":396,"text":"项目经理身份证,二级建造师和项目经理安全证书","node_type":"text","parent":391,"children":[],"para_type":"text","pageno":39,"layout_index":0,"box":[98,50,396,16]}
- {"node_id":397,"text":"姓名方海涛","node_type":"text","parent":391,"children":[],"para_type":"text","pageno":39,"layout_index":1,"box":[179,132,87,18]}
- {"node_id":398,"text":"性别男民族汉","node_type":"text","parent":391,"children":[],"para_type":"text","pageno":39,"layout_index":2,"box":[180,162,119,14]}
- {"node_id":399,"text":"出生1982年4月20日","node_type":"text","parent":391,"children":[],"para_type":"text","pageno":39,"layout_index":3,"box":[180,188,148,12]}
- {"node_id":400,"text":"住址安徽省芜湖市无为县泥汊镇保安行政村满竹自然村107","node_type":"text","parent":391,"children":[],"para_type":"text","pageno":39,"layout_index":4,"box":[180,216,173,47]}
- {"node_id":401,"text":"公民身份号码","node_type":"text","parent":391,"children":[],"para_type":"text","pageno":39,"layout_index":5,"box":[181,281,77,15]}
- {"node_id":402,"text":"342623198204208131","node_type":"text","parent":391,"children":[],"para_type":"text","pageno":39,"layout_index":6,"box":[254,282,195,12]}
- {"node_id":403,"text":"中华人民共和国","node_type":"title","parent":0,"children":[404,405,406,407,408,409,410,411,412,413],"para_type":"title_1","pageno":39,"layout_index":7,"box":[269,360,178,22]}
- {"node_id":404,"text":"居民身份证","node_type":"text","parent":403,"children":[],"para_type":"text","pageno":39,"layout_index":8,"box":[256,396,207,30]}
- {"node_id":405,"text":"签发机关无为县公安局","node_type":"text","parent":403,"children":[],"para_type":"text","pageno":39,"layout_index":9,"box":[235,490,134,12]}
- {"node_id":406,"text":"有效期限2017.09.11-2037.09.11","node_type":"text","parent":403,"children":[],"para_type":"text","pageno":39,"layout_index":10,"box":[235,518,195,11]}
- {"node_id":407,"text":"40","node_type":"head_tail","parent":403,"children":[],"para_type":"head_tail","pageno":39,"layout_index":11,"box":[291,777,11,10]}
- {"node_id":408,"text":"二级建造师注册证书","node_type":"text","parent":403,"children":[],"para_type":"text","pageno":40,"layout_index":0,"box":[159,126,277,26]}
- {"node_id":409,"text":"姓名:方海涛","node_type":"text","parent":403,"children":[],"para_type":"text","pageno":40,"layout_index":1,"box":[162,211,99,14]}
- {"node_id":410,"text":"性别:男","node_type":"text","parent":403,"children":[],"para_type":"text","pageno":40,"layout_index":2,"box":[162,240,80,13]}
- {"node_id":411,"text":"注册编号:沪231152203096","node_type":"text","parent":403,"children":[],"para_type":"text","pageno":40,"layout_index":3,"box":[162,269,141,11]}
- {"node_id":412,"text":"聘用企业:上海绰琪新型建材科技有限公司","node_type":"text","parent":403,"children":[],"para_type":"text","pageno":40,"layout_index":4,"box":[162,297,213,11]}
- {"node_id":413,"text":"注册专业:建筑工程(有效期至2025年03月17日)","node_type":"text","parent":403,"children":[],"para_type":"text","pageno":40,"layout_index":5,"box":[162,325,240,11]}
- {"node_id":414,"text":"上海市住房和城建设管理委员会","node_type":"title","parent":0,"children":[415,416,417,418,419,420,421,422,423,424,425],"para_type":"title_1","pageno":40,"layout_index":6,"box":[270,574,197,13]}
- {"node_id":415,"text":"发证日期2022年03月19日","node_type":"text","parent":414,"children":[],"para_type":"text","pageno":40,"layout_index":7,"box":[342,594,124,12]}
- {"node_id":416,"text":"注册人员最新信息请关注","node_type":"text","parent":414,"children":[],"para_type":"text","pageno":40,"layout_index":8,"box":[117,619,76,7]}
- {"node_id":417,"text":"微信公众号“上海建筑业”扫一扫查询","node_type":"text","parent":414,"children":[],"para_type":"text","pageno":40,"layout_index":9,"box":[118,627,116,7]}
- {"node_id":418,"text":"41","node_type":"head_tail","parent":414,"children":[],"para_type":"head_tail","pageno":40,"layout_index":10,"box":[290,776,13,11]}
- {"node_id":419,"text":"建筑施工企业项目负责人安全生产知识考核合格证书","node_type":"text","parent":414,"children":[],"para_type":"text","pageno":41,"layout_index":0,"box":[162,127,268,45]}
- {"node_id":420,"text":"姓名:方海涛","node_type":"text","parent":414,"children":[],"para_type":"text","pageno":41,"layout_index":1,"box":[156,216,104,12]}
- {"node_id":421,"text":"身份证号:342623198204208131","node_type":"text","parent":414,"children":[],"para_type":"text","pageno":41,"layout_index":2,"box":[157,245,168,12]}
- {"node_id":422,"text":"证书编号:沪建安B(2019)2179689","node_type":"text","parent":414,"children":[],"para_type":"text","pageno":41,"layout_index":3,"box":[157,274,180,12]}
- {"node_id":423,"text":"企业名称:上海绰琪新型建材科技有限公司","node_type":"text","parent":414,"children":[],"para_type":"text","pageno":41,"layout_index":4,"box":[156,302,224,12]}
- {"node_id":424,"text":"有效期至:2022年6月30日","node_type":"text","parent":414,"children":[],"para_type":"text","pageno":41,"layout_index":5,"box":[156,332,142,12]}
- {"node_id":425,"text":"本电子证书由上海市住房和城乡建设管理委员会核发,本证书表明持证人通过上海市建筑施工企业项目负责人安全生产知识考核,成绩合格。","node_type":"text","parent":414,"children":[],"para_type":"text","pageno":41,"layout_index":6,"box":[162,366,278,39]}
- {"node_id":426,"text":"上海市住房和城乡建设管理委员会","node_type":"title","parent":0,"children":[427,428,429,430,431],"para_type":"title_1","pageno":41,"layout_index":7,"box":[267,586,203,16]}
- {"node_id":427,"text":"发证时间:2019年3月5日","node_type":"text","parent":426,"children":[],"para_type":"text","pageno":41,"layout_index":8,"box":[341,610,115,11]}
- {"node_id":428,"text":"建筑施工企业目负责人新关注","node_type":"text","parent":426,"children":[],"para_type":"text","pageno":41,"layout_index":9,"box":[110,635,128,7]}
- {"node_id":429,"text":"微信公众号上海建筑业”一询","node_type":"text","parent":426,"children":[],"para_type":"text","pageno":41,"layout_index":10,"box":[111,643,121,7]}
- {"node_id":430,"text":"2022年8月25日","node_type":"text","parent":426,"children":[],"para_type":"text","pageno":41,"layout_index":11,"box":[451,673,45,7]}
- {"node_id":431,"text":"42","node_type":"head_tail","parent":426,"children":[],"para_type":"head_tail","pageno":41,"layout_index":12,"box":[290,775,14,13]}
- {"node_id":432,"text":"附2:主要项目管理人员简历表","node_type":"title","parent":0,"children":[433,434,435],"para_type":"title_1","pageno":42,"layout_index":0,"box":[214,73,166,13]}
- {"node_id":433,"text":"主要项目管理人员指项目副经理、技术负责人、合同商务负责人、专职安全生产管理人员等岗位人员。应附注册资格证书、身份证、职称证、学历证、社保证明扫描件,专职安全生产管理人员应附安全生产考核合格证书,主要业绩须附合同协议书。","node_type":"text","parent":432,"children":[],"para_type":"text","pageno":42,"layout_index":1,"box":[45,97,504,59]}
- {"node_id":434,"text":[["岗位名称","技术经理","技术经理","技术经理"],["姓名","胡居雷","年龄","43 "],["性别","男","毕业学校","徐州职业技术学院"],["学历和专业","工程管理","毕业时间","2001 "],["拥有的执业资格","中级油漆","专业职称","中级"],["执业资格证书编号","19430001241920 900 ","工作年限","20 "],["主要工作业绩和担任的主要工作","1、菏泽市民文化活动中心,合同金额831万元技术经理2、嘉兴高铁站候车厅,合同金额679万元项目副经理3、广州泰和肿瘤医院,合同金额230万元项目经理4、浙江佛学院米勒圣坛,合同金额320万元项目经理5、内蒙通威多晶硅,合同金额876万技术经理","1、菏泽市民文化活动中心,合同金额831万元技术经理2、嘉兴高铁站候车厅,合同金额679万元项目副经理3、广州泰和肿瘤医院,合同金额230万元项目经理4、浙江佛学院米勒圣坛,合同金额320万元项目经理5、内蒙通威多晶硅,合同金额876万技术经理","1、菏泽市民文化活动中心,合同金额831万元技术经理2、嘉兴高铁站候车厅,合同金额679万元项目副经理3、广州泰和肿瘤医院,合同金额230万元项目经理4、浙江佛学院米勒圣坛,合同金额320万元项目经理5、内蒙通威多晶硅,合同金额876万技术经理"],[""]],"node_type":"table","parent":432,"children":[],"para_type":"table","pageno":42,"layout_index":2,"box":[80,161,432,420]}
- {"node_id":435,"text":"43 ","node_type":"head_tail","parent":432,"children":[],"para_type":"head_tail","pageno":42,"layout_index":3,"box":[293,779,12,9]}
- {"node_id":436,"text":"技术经理胡居雷资格证书","node_type":"title","parent":0,"children":[437,438,439,440,441,442,443,444,445,446,447,448],"para_type":"title_1","pageno":43,"layout_index":0,"box":[220,83,154,14]}
- {"node_id":437,"text":"本证书表明持证人已通过住房城乡建设行业职业技能培训考核,成绩合格","node_type":"text","parent":436,"children":[],"para_type":"text","pageno":43,"layout_index":1,"box":[122,154,146,54]}
- {"node_id":438,"text":"证号:19430001241920900","node_type":"text","parent":436,"children":[],"para_type":"text","pageno":43,"layout_index":2,"box":[122,272,102,10]}
- {"node_id":439,"text":"培训考核机构:(盖章)","node_type":"text","parent":436,"children":[],"para_type":"text","pageno":43,"layout_index":3,"box":[121,293,103,11]}
- {"node_id":440,"text":"发证日期:2019年1月23日","node_type":"text","parent":436,"children":[],"para_type":"text","pageno":43,"layout_index":4,"box":[121,315,121,14]}
- {"node_id":441,"text":"查询网址:.hunanjs .goen","node_type":"text","parent":436,"children":[],"para_type":"text","pageno":43,"layout_index":5,"box":[122,337,133,11]}
- {"node_id":442,"text":"建筑工人职业培训","node_type":"text","parent":436,"children":[],"para_type":"text","pageno":43,"layout_index":6,"box":[175,354,72,14]}
- {"node_id":443,"text":"考核专用","node_type":"text","parent":436,"children":[],"para_type":"text","pageno":43,"layout_index":7,"box":[192,367,34,12]}
- {"node_id":444,"text":"胡居雷066","node_type":"text","parent":436,"children":[],"para_type":"text","pageno":43,"layout_index":8,"box":[388,220,29,7]}
- {"node_id":445,"text":"姓名:胡居雷","node_type":"text","parent":436,"children":[],"para_type":"text","pageno":43,"layout_index":9,"box":[317,291,96,13]}
- {"node_id":446,"text":"性别:男","node_type":"text","parent":436,"children":[],"para_type":"text","pageno":43,"layout_index":10,"box":[317,311,78,16]}
- {"node_id":447,"text":"职业(工种):油漆工","node_type":"text","parent":436,"children":[],"para_type":"text","pageno":43,"layout_index":11,"box":[318,336,95,13]}
- {"node_id":448,"text":"等级:中级工","node_type":"text","parent":436,"children":[],"para_type":"text","pageno":43,"layout_index":12,"box":[318,356,95,14]}
- {"node_id":449,"text":"安全管理员顾东升","node_type":"title","parent":0,"children":[450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475],"para_type":"title_1","pageno":43,"layout_index":13,"box":[241,426,112,14]}
- {"node_id":450,"text":"企业名称:上海绰琪新型建材科技有限公司","node_type":"text","parent":449,"children":[],"para_type":"text","pageno":43,"layout_index":14,"box":[315,502,155,30]}
- {"node_id":451,"text":"职务:总经理","node_type":"text","parent":449,"children":[],"para_type":"text","pageno":43,"layout_index":15,"box":[315,546,100,13]}
- {"node_id":452,"text":"技术职称:无","node_type":"text","parent":449,"children":[],"para_type":"text","pageno":43,"layout_index":16,"box":[314,566,82,17]}
- {"node_id":453,"text":"姓名:顾东升","node_type":"text","parent":449,"children":[],"para_type":"text","pageno":43,"layout_index":17,"box":[103,609,96,17]}
- {"node_id":454,"text":"性别::男","node_type":"text","parent":449,"children":[],"para_type":"text","pageno":43,"layout_index":18,"box":[104,635,75,15]}
- {"node_id":455,"text":"出生年月:1978年5月4日","node_type":"text","parent":449,"children":[],"para_type":"text","pageno":43,"layout_index":19,"box":[104,660,128,13]}
- {"node_id":456,"text":"身份证号:320324197805041576","node_type":"text","parent":449,"children":[],"para_type":"text","pageno":43,"layout_index":20,"box":[103,685,162,13]}
- {"node_id":457,"text":"证书编号:沪建安A(2019)2199201","node_type":"text","parent":449,"children":[],"para_type":"text","pageno":43,"layout_index":21,"box":[316,591,170,15]}
- {"node_id":458,"text":"⊙","node_type":"text","parent":449,"children":[],"para_type":"text","pageno":43,"layout_index":22,"box":[371,588,118,125]}
- {"node_id":459,"text":"考核发证单位","node_type":"text","parent":449,"children":[],"para_type":"text","pageno":43,"layout_index":23,"box":[430,640,49,8]}
- {"node_id":460,"text":"(公章)核","node_type":"text","parent":449,"children":[],"para_type":"text","pageno":43,"layout_index":24,"box":[440,650,38,16]}
- {"node_id":461,"text":"发证时间:","node_type":"text","parent":449,"children":[],"para_type":"text","pageno":43,"layout_index":25,"box":[318,682,46,9]}
- {"node_id":462,"text":"9","node_type":"text","parent":449,"children":[],"para_type":"text","pageno":43,"layout_index":26,"box":[448,680,13,11]}
- {"node_id":463,"text":"2日","node_type":"text","parent":449,"children":[],"para_type":"text","pageno":43,"layout_index":27,"box":[471,679,17,13]}
- {"node_id":464,"text":"44","node_type":"head_tail","parent":449,"children":[],"para_type":"head_tail","pageno":43,"layout_index":28,"box":[291,776,11,10]}
- {"node_id":465,"text":"附3:承诺书","node_type":"text","parent":449,"children":[],"para_type":"text","pageno":44,"layout_index":0,"box":[262,50,70,13]}
- {"node_id":466,"text":"承诺书","node_type":"text","parent":449,"children":[],"para_type":"text","pageno":44,"layout_index":1,"box":[269,76,56,15]}
- {"node_id":467,"text":"中国长江电力股份有限公司—(招标人名称):","node_type":"text","parent":449,"children":[],"para_type":"text","pageno":44,"layout_index":2,"box":[44,107,246,13]}
- {"node_id":468,"text":"我方在此声明,我方拟派往三峡左岸及地下电站地坪整治(项目名称)(以下简称“本工程”)的项目经理方海涛(项目经理姓名),自本项目合同生效之日起,不再担任除本合同之外任何在施建设工程项目的项目经理。","node_type":"text","parent":449,"children":[],"para_type":"text","pageno":44,"layout_index":3,"box":[44,136,512,59]}
- {"node_id":469,"text":"我方保证上述信息的真实和准确,并愿意承担因我方就此弄虚作假所引起的一切法律后果。","node_type":"text","parent":449,"children":[],"para_type":"text","pageno":44,"layout_index":4,"box":[68,206,480,13]}
- {"node_id":470,"text":"特此承诺!","node_type":"text","parent":449,"children":[],"para_type":"text","pageno":44,"layout_index":5,"box":[68,229,59,13]}
- {"node_id":471,"text":"投标人:上海绰琪新型建材科技有限公司(企业CA电子印章)","node_type":"text","parent":449,"children":[],"para_type":"text","pageno":44,"layout_index":6,"box":[200,408,353,13]}
- {"node_id":472,"text":"法定代表人:朱涛(法定代表人CA 电子印章)","node_type":"text","parent":449,"children":[],"para_type":"text","pageno":44,"layout_index":7,"box":[241,431,281,13]}
- {"node_id":473,"text":"2022年9 月3日","node_type":"text","parent":449,"children":[],"para_type":"text","pageno":44,"layout_index":8,"box":[205,478,184,15]}
- {"node_id":474,"text":"45 ","node_type":"head_tail","parent":449,"children":[],"para_type":"head_tail","pageno":44,"layout_index":9,"box":[293,779,12,9]}
- {"node_id":475,"text":"第八章资格审查资料","node_type":"title","parent":449,"children":[476],"para_type":"title_2","pageno":45,"layout_index":0,"box":[207,51,180,19]}
- {"node_id":476,"text":"(一)投标人基本情况表","node_type":"title","parent":475,"children":[477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529],"para_type":"title_4","pageno":45,"layout_index":1,"box":[220,84,154,15]}
- {"node_id":477,"text":[["投标人名称","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司"],["投标人组织机构代码或统一社会信用代码","91310112MA1GC4MP45 ","91310112MA1GC4MP45 ","91310112MA1GC4MP45 ","91310112MA1GC4MP45 ","91310112MA1GC4MP45 ","91310112MA1GC4MP45 ","91310112MA1GC4MP45 ","91310112MA1GC4MP45 "],["注册地址","上海市闵行区元江路5500第一幢F2396 ","上海市闵行区元江路5500第一幢F2396 ","上海市闵行区元江路5500第一幢F2396 ","上海市闵行区元江路5500第一幢F2396 ","邮政编码"],["联系方式","联系人","余浩","余浩","余浩","电话","18616632076 ","18616632076 ","18616632076 "],["联系方式","传真","02134730118 ","02134730118 ","02134730118 ","网址","www.chuoqi-group.com ","www.chuoqi-group.com ","www.chuoqi-group.com "],["组织结构"],["法定代表人","姓名","朱涛","技术职称","技师","技师","技师","电话","13918684421 "],["技术负责人","姓名","胡居雷","技术职称","中级","中级","中级","电话","13817475596 "],["成立时间","2018-8-9 ","2018-8-9 ","员工总人数:50 ","员工总人数:50 ","员工总人数:50 ","员工总人数:50 ","员工总人数:50 ","员工总人数:50 "],["企业资质等级","装修二级","装修二级","其中","项目经理","项目经理","项目经理","3 ","3 "],["营业执照号","120000002019060 60158 ","120000002019060 60158 ","其中","高级职称人员","高级职称人员","高级职称人员","4 ","4 "],["注册资金","3980万元","3980万元","其中","中级职称人员","中级职称人员","中级职称人员","8 ","8 "],["开户银行","中国农业银行股份有限公司上海杜行支行","中国农业银行股份有限公司上海杜行支行","其中","初级职称人员","初级职称人员","初级职称人员","5 ","5 "],["账号","09032401040031280 ","09032401040031280 ","其中","技工","技工","技工","20 ","20 "],["经营范围","从事新型建材科技领域内的技术开发、技术服务,新型建筑材料、新型环保再生建筑材料、干(湿)砂浆材料、自流平水泥、无(有)机磨石材料、快速修补砂浆、抗裂水泥、透水地坪材料、预制产品、新型地砖墙砖、石英砂、玻璃颗粒、玉石水晶颗粒、工程机械、建筑耗材辅料、水泥添加剂、涂料、防腐防静电地坪材料、彩砂地坪材料、化工原料的销售,建筑装饰工程设计及施工,建筑装修装饰建设工程专业施工,建筑防水建设工程专业施工,防腐保温建设工程专业施工,桥梁道路工程施工。","从事新型建材科技领域内的技术开发、技术服务,新型建筑材料、新型环保再生建筑材料、干(湿)砂浆材料、自流平水泥、无(有)机磨石材料、快速修补砂浆、抗裂水泥、透水地坪材料、预制产品、新型地砖墙砖、石英砂、玻璃颗粒、玉石水晶颗粒、工程机械、建筑耗材辅料、水泥添加剂、涂料、防腐防静电地坪材料、彩砂地坪材料、化工原料的销售,建筑装饰工程设计及施工,建筑装修装饰建设工程专业施工,建筑防水建设工程专业施工,防腐保温建设工程专业施工,桥梁道路工程施工。","从事新型建材科技领域内的技术开发、技术服务,新型建筑材料、新型环保再生建筑材料、干(湿)砂浆材料、自流平水泥、无(有)机磨石材料、快速修补砂浆、抗裂水泥、透水地坪材料、预制产品、新型地砖墙砖、石英砂、玻璃颗粒、玉石水晶颗粒、工程机械、建筑耗材辅料、水泥添加剂、涂料、防腐防静电地坪材料、彩砂地坪材料、化工原料的销售,建筑装饰工程设计及施工,建筑装修装饰建设工程专业施工,建筑防水建设工程专业施工,防腐保温建设工程专业施工,桥梁道路工程施工。","从事新型建材科技领域内的技术开发、技术服务,新型建筑材料、新型环保再生建筑材料、干(湿)砂浆材料、自流平水泥、无(有)机磨石材料、快速修补砂浆、抗裂水泥、透水地坪材料、预制产品、新型地砖墙砖、石英砂、玻璃颗粒、玉石水晶颗粒、工程机械、建筑耗材辅料、水泥添加剂、涂料、防腐防静电地坪材料、彩砂地坪材料、化工原料的销售,建筑装饰工程设计及施工,建筑装修装饰建设工程专业施工,建筑防水建设工程专业施工,防腐保温建设工程专业施工,桥梁道路工程施工。","从事新型建材科技领域内的技术开发、技术服务,新型建筑材料、新型环保再生建筑材料、干(湿)砂浆材料、自流平水泥、无(有)机磨石材料、快速修补砂浆、抗裂水泥、透水地坪材料、预制产品、新型地砖墙砖、石英砂、玻璃颗粒、玉石水晶颗粒、工程机械、建筑耗材辅料、水泥添加剂、涂料、防腐防静电地坪材料、彩砂地坪材料、化工原料的销售,建筑装饰工程设计及施工,建筑装修装饰建设工程专业施工,建筑防水建设工程专业施工,防腐保温建设工程专业施工,桥梁道路工程施工。","从事新型建材科技领域内的技术开发、技术服务,新型建筑材料、新型环保再生建筑材料、干(湿)砂浆材料、自流平水泥、无(有)机磨石材料、快速修补砂浆、抗裂水泥、透水地坪材料、预制产品、新型地砖墙砖、石英砂、玻璃颗粒、玉石水晶颗粒、工程机械、建筑耗材辅料、水泥添加剂、涂料、防腐防静电地坪材料、彩砂地坪材料、化工原料的销售,建筑装饰工程设计及施工,建筑装修装饰建设工程专业施工,建筑防水建设工程专业施工,防腐保温建设工程专业施工,桥梁道路工程施工。","从事新型建材科技领域内的技术开发、技术服务,新型建筑材料、新型环保再生建筑材料、干(湿)砂浆材料、自流平水泥、无(有)机磨石材料、快速修补砂浆、抗裂水泥、透水地坪材料、预制产品、新型地砖墙砖、石英砂、玻璃颗粒、玉石水晶颗粒、工程机械、建筑耗材辅料、水泥添加剂、涂料、防腐防静电地坪材料、彩砂地坪材料、化工原料的销售,建筑装饰工程设计及施工,建筑装修装饰建设工程专业施工,建筑防水建设工程专业施工,防腐保温建设工程专业施工,桥梁道路工程施工。","从事新型建材科技领域内的技术开发、技术服务,新型建筑材料、新型环保再生建筑材料、干(湿)砂浆材料、自流平水泥、无(有)机磨石材料、快速修补砂浆、抗裂水泥、透水地坪材料、预制产品、新型地砖墙砖、石英砂、玻璃颗粒、玉石水晶颗粒、工程机械、建筑耗材辅料、水泥添加剂、涂料、防腐防静电地坪材料、彩砂地坪材料、化工原料的销售,建筑装饰工程设计及施工,建筑装修装饰建设工程专业施工,建筑防水建设工程专业施工,防腐保温建设工程专业施工,桥梁道路工程施工。"],["备注"],[""]],"node_type":"table","parent":476,"children":[],"para_type":"table","pageno":45,"layout_index":2,"box":[84,106,424,572]}
- {"node_id":478,"text":"备注:1、本表后应附企业法人营业执照、企业资质证书副本、安全生产许可证等材料的扫描件,还有国际ISO 认证证书3个。","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":45,"layout_index":3,"box":[45,701,510,35]}
- {"node_id":479,"text":"46 ","node_type":"head_tail","parent":476,"children":[],"para_type":"head_tail","pageno":45,"layout_index":4,"box":[293,779,12,9]}
- {"node_id":480,"text":"生宣鸡生区","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":0,"box":[497,61,12,10]}
- {"node_id":481,"text":"38色188旗区上区卡一","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":1,"box":[322,95,11,9]}
- {"node_id":482,"text":"各键载银口","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":2,"box":[169,107,8,7]}
- {"node_id":483,"text":"三这学4%区”","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":3,"box":[175,107,8,6]}
- {"node_id":484,"text":"级回法兴布","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":4,"box":[192,106,8,6]}
- {"node_id":485,"text":"巴","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":5,"box":[448,95,12,15]}
- {"node_id":486,"text":"长","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":6,"box":[180,112,7,7]}
- {"node_id":487,"text":"2始州与腊上","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":7,"box":[187,113,6,5]}
- {"node_id":488,"text":"180-80-83073160-80-89007","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":8,"box":[297,116,10,9]}
- {"node_id":489,"text":"8","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":9,"box":[448,107,10,13]}
- {"node_id":490,"text":"家","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":10,"box":[198,129,7,6]}
- {"node_id":491,"text":"实","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":11,"box":[447,129,12,12]}
- {"node_id":492,"text":"期550800086817","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":12,"box":[248,163,10,9]}
- {"node_id":493,"text":"世2200","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":13,"box":[446,163,13,11]}
- {"node_id":494,"text":"160-80-8107","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":14,"box":[273,193,10,10]}
- {"node_id":495,"text":"米削","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":15,"box":[405,207,15,13]}
- {"node_id":496,"text":"-9038","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":16,"box":[205,230,20,19]}
- {"node_id":497,"text":"-95738","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":17,"box":[362,229,21,19]}
- {"node_id":498,"text":"圆北基出卡","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":18,"box":[493,227,9,7]}
- {"node_id":499,"text":"北旺会场","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":19,"box":[501,227,10,9]}
- {"node_id":500,"text":"长愆审裹","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":20,"box":[247,258,13,11]}
- {"node_id":501,"text":"材贤","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":21,"box":[272,258,13,11]}
- {"node_id":502,"text":"竖颖≥抛","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":22,"box":[296,258,13,12]}
- {"node_id":503,"text":"匪拓手抛","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":23,"box":[162,274,39,37]}
- {"node_id":504,"text":"共","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":24,"box":[318,302,14,14]}
- {"node_id":505,"text":"长照长将","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":25,"box":[321,334,10,8]}
- {"node_id":506,"text":"长升证菜(2菜共脚长乘买点","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":26,"box":[330,333,8,7]}
- {"node_id":507,"text":"买数长科城华实()","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":27,"box":[338,329,8,8]}
- {"node_id":508,"text":"集家实按譯联点明礼车","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":28,"box":[346,334,8,7]}
- {"node_id":509,"text":"君拳一名(唱喝唱","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":29,"box":[369,329,8,8]}
- {"node_id":510,"text":"提会业日修点提会业最关经日提会业明日中","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":30,"box":[376,329,10,8]}
- {"node_id":511,"text":"10138","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":31,"box":[442,317,21,20]}
- {"node_id":512,"text":"长画)","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":32,"box":[208,339,16,15]}
- {"node_id":513,"text":"英台议英经菜号号英屏菜","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":33,"box":[353,336,9,7]}
- {"node_id":514,"text":"是主變唯组唯丝实隆菜","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":34,"box":[360,336,10,8]}
- {"node_id":515,"text":"可炎","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":35,"box":[391,362,10,8]}
- {"node_id":516,"text":"英商一","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":36,"box":[247,438,10,9]}
- {"node_id":517,"text":"(堅管)出繼隆联","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":37,"box":[269,433,13,11]}
- {"node_id":518,"text":"08102270720200000071,吵骤匪以","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":38,"box":[205,487,11,9]}
- {"node_id":519,"text":"日提脚旗剂帐案日","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":39,"box":[383,485,8,7]}
- {"node_id":520,"text":"00国会","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":40,"box":[489,490,12,11]}
- {"node_id":521,"text":"定奖旺趣业#|","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":41,"box":[171,515,10,9]}
- {"node_id":522,"text":"32109-7271100016","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":42,"box":[188,527,8,7]}
- {"node_id":523,"text":"菜","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":43,"box":[294,537,9,17]}
- {"node_id":524,"text":"龄","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":44,"box":[245,558,11,14]}
- {"node_id":525,"text":"如","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":45,"box":[244,570,14,14]}
- {"node_id":526,"text":"一长纪假类","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":46,"box":[296,563,11,10]}
- {"node_id":527,"text":"絲","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":47,"box":[268,570,14,14]}
- {"node_id":528,"text":"画积抛","node_type":"text","parent":476,"children":[],"para_type":"text","pageno":46,"layout_index":48,"box":[318,561,13,12]}
- {"node_id":529,"text":"47","node_type":"head_tail","parent":476,"children":[],"para_type":"head_tail","pageno":46,"layout_index":49,"box":[291,776,12,11]}
- {"node_id":530,"text":"安全生产许可证","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":47,"layout_index":0,"box":[154,268,281,39]}
- {"node_id":531,"text":"(副本)","node_type":"title","parent":0,"children":[532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547],"para_type":"title_1","pageno":47,"layout_index":1,"box":[267,320,67,19]}
- {"node_id":532,"text":"编号:(沪)JZ安许证字[2019]041209","node_type":"text","parent":531,"children":[],"para_type":"text","pageno":47,"layout_index":2,"box":[177,351,187,14]}
- {"node_id":533,"text":"单位名称:上海绰琪新型建材科技有限公司","node_type":"text","parent":531,"children":[],"para_type":"text","pageno":47,"layout_index":3,"box":[129,384,216,11]}
- {"node_id":534,"text":"主要负责人:朱涛","node_type":"text","parent":531,"children":[],"para_type":"text","pageno":47,"layout_index":4,"box":[128,402,89,12]}
- {"node_id":535,"text":"单位地址:上海市闵行区元江路5500号第1幢F2396室","node_type":"text","parent":531,"children":[],"para_type":"text","pageno":47,"layout_index":5,"box":[129,420,230,11]}
- {"node_id":536,"text":"经济类型:有限责任公司(自然人投资或控股)","node_type":"text","parent":531,"children":[],"para_type":"text","pageno":47,"layout_index":6,"box":[128,439,223,12]}
- {"node_id":537,"text":"许可范围:建筑施工","node_type":"text","parent":531,"children":[],"para_type":"text","pageno":47,"layout_index":7,"box":[128,456,110,13]}
- {"node_id":538,"text":"有效期:2019年10月19日至2022年10月18日","node_type":"text","parent":531,"children":[],"para_type":"text","pageno":47,"layout_index":8,"box":[128,476,221,12]}
- {"node_id":539,"text":"本使用件仅用于:投标","node_type":"text","parent":531,"children":[],"para_type":"text","pageno":47,"layout_index":9,"box":[128,494,90,12]}
- {"node_id":540,"text":"使用期限2022-08-27至2022-10-18","node_type":"text","parent":531,"children":[],"para_type":"text","pageno":47,"layout_index":10,"box":[196,516,180,11]}
- {"node_id":541,"text":"发证机关:上海市住房和城乡建设管理委员会","node_type":"text","parent":531,"children":[],"para_type":"text","pageno":47,"layout_index":11,"box":[242,573,220,13]}
- {"node_id":542,"text":"2019年10月19日","node_type":"text","parent":531,"children":[],"para_type":"text","pageno":47,"layout_index":12,"box":[359,592,75,10]}
- {"node_id":543,"text":"安全生产许可证最新信息可通过微信服务号","node_type":"text","parent":531,"children":[],"para_type":"text","pageno":47,"layout_index":13,"box":[108,674,145,7]}
- {"node_id":544,"text":"“上海建筑业”扫描二维码查询。","node_type":"text","parent":531,"children":[],"para_type":"text","pageno":47,"layout_index":14,"box":[111,684,108,9]}
- {"node_id":545,"text":"本使用件生成日期:2022年08月27日09:18","node_type":"text","parent":531,"children":[],"para_type":"text","pageno":47,"layout_index":15,"box":[358,712,128,9]}
- {"node_id":546,"text":"资质变更中,不影响项目投标。","node_type":"text","parent":531,"children":[],"para_type":"text","pageno":47,"layout_index":16,"box":[199,750,187,14]}
- {"node_id":547,"text":"48","node_type":"head_tail","parent":531,"children":[],"para_type":"head_tail","pageno":47,"layout_index":17,"box":[291,777,12,9]}
- {"node_id":548,"text":"建筑业企业资质证书","node_type":"title","parent":0,"children":[549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565],"para_type":"title_1","pageno":48,"layout_index":0,"box":[187,208,222,24]}
- {"node_id":549,"text":"企业名称:上海绰琪新型建材科技有限公司","node_type":"text","parent":548,"children":[],"para_type":"text","pageno":48,"layout_index":1,"box":[142,278,182,9]}
- {"node_id":550,"text":"注册地址:上海市闵行区元江路5500号第1幢F2396室","node_type":"text","parent":548,"children":[],"para_type":"text","pageno":48,"layout_index":2,"box":[142,294,227,10]}
- {"node_id":551,"text":"统一社会信用代码营业执照注册号:91310112MA1GC4MP45法定代表人:朱涛","node_type":"text","parent":548,"children":[],"para_type":"text","pageno":48,"layout_index":3,"box":[143,308,257,16]}
- {"node_id":552,"text":"注册资本:3980.0000万人民币经济性质:有限责任公司(自然人投资或控股)","node_type":"text","parent":548,"children":[],"para_type":"text","pageno":48,"layout_index":4,"box":[142,325,328,13]}
- {"node_id":553,"text":"证书编号:D231603322","node_type":"text","parent":548,"children":[],"para_type":"text","pageno":48,"layout_index":5,"box":[142,342,112,9]}
- {"node_id":554,"text":"有效期:至2024年05月07日","node_type":"text","parent":548,"children":[],"para_type":"text","pageno":48,"layout_index":6,"box":[316,342,135,10]}
- {"node_id":555,"text":"资质类别及等级:防水防腐保温工程专业承包二级,建筑装修装饰工程专业承","node_type":"text","parent":548,"children":[],"para_type":"text","pageno":48,"layout_index":7,"box":[142,358,308,13]}
- {"node_id":556,"text":"包二级","node_type":"text","parent":548,"children":[],"para_type":"text","pageno":48,"layout_index":8,"box":[208,372,27,10]}
- {"node_id":557,"text":"本使用件仅用于:投标","node_type":"text","parent":548,"children":[],"para_type":"text","pageno":48,"layout_index":9,"box":[141,505,91,14]}
- {"node_id":558,"text":"使用期限2022-08-27至2022-11-26","node_type":"text","parent":548,"children":[],"para_type":"text","pageno":48,"layout_index":10,"box":[209,527,177,11]}
- {"node_id":559,"text":"发证机关:","node_type":"text","parent":548,"children":[],"para_type":"text","pageno":48,"layout_index":11,"box":[331,602,42,10]}
- {"node_id":560,"text":"批准日期:219年05月08日","node_type":"text","parent":548,"children":[],"para_type":"text","pageno":48,"layout_index":12,"box":[331,618,107,12]}
- {"node_id":561,"text":"企业最新信息可通过微信服务号“上海建筑业”扫描二维码查询","node_type":"text","parent":548,"children":[],"para_type":"text","pageno":48,"layout_index":13,"box":[110,660,194,7]}
- {"node_id":562,"text":"本件生成日期:2022年08月27日09:11","node_type":"text","parent":548,"children":[],"para_type":"text","pageno":48,"layout_index":14,"box":[363,687,117,7]}
- {"node_id":563,"text":"资质变更中,不影响项目投标。","node_type":"text","parent":548,"children":[],"para_type":"text","pageno":48,"layout_index":15,"box":[199,734,187,14]}
- {"node_id":564,"text":"49","node_type":"head_tail","parent":548,"children":[],"para_type":"head_tail","pageno":48,"layout_index":16,"box":[290,776,13,11]}
- {"node_id":565,"text":"4","node_type":"text","parent":548,"children":[],"para_type":"text","pageno":49,"layout_index":0,"box":[485,127,12,9]}
- {"node_id":566,"text":"管理体系认证证书","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":49,"layout_index":1,"box":[168,262,238,27]}
- {"node_id":567,"text":"兹证明","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":49,"layout_index":2,"box":[274,293,29,10]}
- {"node_id":568,"text":"上海绰琪新型建材科技有限公司","node_type":"title","parent":0,"children":[569,570,571,572,573,574],"para_type":"title_1","pageno":49,"layout_index":3,"box":[176,308,222,12]}
- {"node_id":569,"text":"注册地址:上海市闵行区元江路5500号第一幢F2396室邮编:2200000","node_type":"text","parent":568,"children":[],"para_type":"text","pageno":49,"layout_index":4,"box":[142,328,293,9]}
- {"node_id":570,"text":"经营地址:上海市闵行区浦江镇经济开发区东城三路3号邮编:200000","node_type":"text","parent":568,"children":[],"para_type":"text","pageno":49,"layout_index":5,"box":[143,339,293,9]}
- {"node_id":571,"text":"质量管理体系符合","node_type":"text","parent":568,"children":[],"para_type":"text","pageno":49,"layout_index":6,"box":[244,354,90,11]}
- {"node_id":572,"text":"S09001:2019","node_type":"text","parent":568,"children":[],"para_type":"text","pageno":49,"layout_index":7,"box":[248,368,84,10]}
- {"node_id":573,"text":"GB\/T50430-2018","node_type":"text","parent":568,"children":[],"para_type":"text","pageno":49,"layout_index":8,"box":[244,383,91,10]}
- {"node_id":574,"text":"本证书覆盖范围","node_type":"text","parent":568,"children":[],"para_type":"text","pageno":49,"layout_index":9,"box":[254,398,70,9]}
- {"node_id":575,"text":"上海绰琪新型建材科技有限公司特种专业工程施工(资质范围内)","node_type":"title","parent":0,"children":[576,577,578,579,580,581,582,583,584],"para_type":"title_1","pageno":49,"layout_index":10,"box":[114,413,313,12]}
- {"node_id":576,"text":"质量管理体系符合","node_type":"text","parent":575,"children":[],"para_type":"text","pageno":49,"layout_index":11,"box":[244,430,90,11]}
- {"node_id":577,"text":"IS09001:2018","node_type":"text","parent":575,"children":[],"para_type":"text","pageno":49,"layout_index":12,"box":[246,444,83,10]}
- {"node_id":578,"text":"本证书覆盖范围","node_type":"text","parent":575,"children":[],"para_type":"text","pageno":49,"layout_index":13,"box":[252,460,75,12]}
- {"node_id":579,"text":"新型地坪材料、墙体材料的销售;上海绰琪新型建材科技有限公司新型地坪材料(无机硅晶石、水泥干粉类、无机硅纳米砂浆)的研发、设计及生产发证日期:2018年12月31日有效期:2018年12月31日至2029年12月30日","node_type":"text","parent":575,"children":[],"para_type":"text","pageno":49,"layout_index":14,"box":[143,476,334,53]}
- {"node_id":580,"text":"注册号:M43113Q21456R0M","node_type":"text","parent":575,"children":[],"para_type":"text","pageno":49,"layout_index":15,"box":[149,536,122,7]}
- {"node_id":581,"text":"JAS-ANZ ","node_type":"text","parent":575,"children":[],"para_type":"text","pageno":49,"layout_index":16,"box":[147,566,45,8]}
- {"node_id":582,"text":"体系认证","node_type":"text","parent":575,"children":[],"para_type":"text","pageno":49,"layout_index":17,"box":[153,634,31,10]}
- {"node_id":583,"text":"M4310809CB","node_type":"text","parent":575,"children":[],"para_type":"text","pageno":49,"layout_index":18,"box":[147,647,43,6]}
- {"node_id":584,"text":"总经理:强克冰","node_type":"text","parent":575,"children":[],"para_type":"text","pageno":49,"layout_index":19,"box":[322,531,102,26]}
- {"node_id":585,"text":"北京大陆航星质量认证中心有限公司","node_type":"title","parent":0,"children":[586,587,588,589],"para_type":"title_1","pageno":49,"layout_index":20,"box":[142,683,300,14]}
- {"node_id":586,"text":"地址:北京市海淀区玉泉路甲12号七层","node_type":"text","parent":585,"children":[],"para_type":"text","pageno":49,"layout_index":21,"box":[176,701,153,10]}
- {"node_id":587,"text":"邮编:100143","node_type":"text","parent":585,"children":[],"para_type":"text","pageno":49,"layout_index":22,"box":[351,702,52,7]}
- {"node_id":588,"text":"d","node_type":"text","parent":585,"children":[],"para_type":"text","pageno":49,"layout_index":23,"box":[485,710,12,12]}
- {"node_id":589,"text":"50","node_type":"head_tail","parent":585,"children":[],"para_type":"head_tail","pageno":49,"layout_index":24,"box":[291,777,11,9]}
- {"node_id":590,"text":"管理体系认证证书","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":50,"layout_index":0,"box":[168,239,240,28]}
- {"node_id":591,"text":"兹证明","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":50,"layout_index":1,"box":[275,274,31,10]}
- {"node_id":592,"text":"上海绰琪新型建材科技有限公司","node_type":"title","parent":0,"children":[593,594,595,596,597,598,599,600,601,602,603,604],"para_type":"title_1","pageno":50,"layout_index":2,"box":[176,290,226,15]}
- {"node_id":593,"text":"注册地址:上海市闵行区元江路5500号第一幢F2396室邮编:200000经营地址:上海市闵行区浦江镇经济开发区东城三路3号邮编:2000000","node_type":"text","parent":592,"children":[],"para_type":"text","pageno":50,"layout_index":3,"box":[142,308,296,22]}
- {"node_id":594,"text":"环境管理体系符合","node_type":"text","parent":592,"children":[],"para_type":"text","pageno":50,"layout_index":4,"box":[245,340,91,11]}
- {"node_id":595,"text":"IS014001:2018","node_type":"text","parent":592,"children":[],"para_type":"text","pageno":50,"layout_index":5,"box":[249,360,93,10]}
- {"node_id":596,"text":"本证书覆盖范围","node_type":"text","parent":592,"children":[],"para_type":"text","pageno":50,"layout_index":6,"box":[253,386,75,10]}
- {"node_id":597,"text":"上海绰琪新型建材科技有限公司:特种专业工程施工(资质范围内);新型地坪材料、墙体材料的销售;上海绰琪新型建材科技有限公司新型地坪材料(无机硅晶石、水泥干粉类、无机硅纳米砂浆)的研发、设计及生产","node_type":"text","parent":592,"children":[],"para_type":"text","pageno":50,"layout_index":7,"box":[116,403,370,41]}
- {"node_id":598,"text":"发证日期:2018年12月31日","node_type":"text","parent":592,"children":[],"para_type":"text","pageno":50,"layout_index":8,"box":[143,455,128,10]}
- {"node_id":599,"text":"注册号:M43113E20527R0M","node_type":"text","parent":592,"children":[],"para_type":"text","pageno":50,"layout_index":9,"box":[142,487,122,8]}
- {"node_id":600,"text":"JAS-ANZ ","node_type":"text","parent":592,"children":[],"para_type":"text","pageno":50,"layout_index":10,"box":[148,538,45,8]}
- {"node_id":601,"text":"体系认证","node_type":"text","parent":592,"children":[],"para_type":"text","pageno":50,"layout_index":11,"box":[153,604,31,9]}
- {"node_id":602,"text":"M4310809CB","node_type":"text","parent":592,"children":[],"para_type":"text","pageno":50,"layout_index":12,"box":[146,617,44,6]}
- {"node_id":603,"text":"有效期:2018年12月31日至2029年12月30日","node_type":"text","parent":592,"children":[],"para_type":"text","pageno":50,"layout_index":13,"box":[322,455,119,21]}
- {"node_id":604,"text":"总经理:强克冰","node_type":"text","parent":592,"children":[],"para_type":"text","pageno":50,"layout_index":14,"box":[326,480,101,26]}
- {"node_id":605,"text":"北京大陆航星质量认证中心有限公司","node_type":"title","parent":0,"children":[606,607,608],"para_type":"title_1","pageno":50,"layout_index":15,"box":[143,654,304,15]}
- {"node_id":606,"text":"地址:北京市海淀区玉泉路甲12号七层","node_type":"text","parent":605,"children":[],"para_type":"text","pageno":50,"layout_index":16,"box":[177,674,155,9]}
- {"node_id":607,"text":"邮编:100143","node_type":"text","parent":605,"children":[],"para_type":"text","pageno":50,"layout_index":17,"box":[355,675,52,6]}
- {"node_id":608,"text":"51","node_type":"head_tail","parent":605,"children":[],"para_type":"head_tail","pageno":50,"layout_index":18,"box":[291,777,10,9]}
- {"node_id":609,"text":"管理体系认证证书","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":51,"layout_index":0,"box":[168,230,240,29]}
- {"node_id":610,"text":"兹证明","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":51,"layout_index":1,"box":[275,266,31,10]}
- {"node_id":611,"text":"上海绰琪新型建材科技有限公司","node_type":"title","parent":0,"children":[612,613,614,615,616,617,618,619,620,621,622,623,624],"para_type":"title_1","pageno":51,"layout_index":2,"box":[176,283,225,12]}
- {"node_id":612,"text":"注册地址:上海市闵行区元江路5500号第一幢F2396室邮编:200000经营地址:上海市闵行区浦江镇经济开发区东城三路3号邮编:2000000","node_type":"text","parent":611,"children":[],"para_type":"text","pageno":51,"layout_index":3,"box":[142,300,296,22]}
- {"node_id":613,"text":"环境管理体系符合","node_type":"text","parent":611,"children":[],"para_type":"text","pageno":51,"layout_index":4,"box":[245,332,91,12]}
- {"node_id":614,"text":"IS014001:2018","node_type":"text","parent":611,"children":[],"para_type":"text","pageno":51,"layout_index":5,"box":[248,351,94,11]}
- {"node_id":615,"text":"本证书覆盖范围","node_type":"text","parent":611,"children":[],"para_type":"text","pageno":51,"layout_index":6,"box":[253,377,76,12]}
- {"node_id":616,"text":"上海绰琪新型建材科技有限公司:特种专业工程施工(资质范围内);新型地坪材料、墙体材料的销售;上海绰琪新型建材科技有限公司新型地坪材料(无机硅晶石、水泥干粉类、无机硅纳米砂浆)的研发、设计及生产","node_type":"text","parent":611,"children":[],"para_type":"text","pageno":51,"layout_index":7,"box":[116,395,370,41]}
- {"node_id":617,"text":"发证日期:2018年12月31日","node_type":"text","parent":611,"children":[],"para_type":"text","pageno":51,"layout_index":8,"box":[143,447,127,9]}
- {"node_id":618,"text":"注册号:M43113E20527R0M","node_type":"text","parent":611,"children":[],"para_type":"text","pageno":51,"layout_index":9,"box":[142,478,122,9]}
- {"node_id":619,"text":"JAS-ANZ ","node_type":"text","parent":611,"children":[],"para_type":"text","pageno":51,"layout_index":10,"box":[148,529,46,9]}
- {"node_id":620,"text":"体系认证","node_type":"text","parent":611,"children":[],"para_type":"text","pageno":51,"layout_index":11,"box":[154,597,30,7]}
- {"node_id":621,"text":"M4310809CB","node_type":"text","parent":611,"children":[],"para_type":"text","pageno":51,"layout_index":12,"box":[146,609,45,6]}
- {"node_id":622,"text":"有效期:2018年12月31日至","node_type":"text","parent":611,"children":[],"para_type":"text","pageno":51,"layout_index":13,"box":[322,447,119,8]}
- {"node_id":623,"text":"2029年12月30日","node_type":"text","parent":611,"children":[],"para_type":"text","pageno":51,"layout_index":14,"box":[358,459,74,9]}
- {"node_id":624,"text":"总经理:强克冰","node_type":"text","parent":611,"children":[],"para_type":"text","pageno":51,"layout_index":15,"box":[326,471,101,28]}
- {"node_id":625,"text":"北京大陆航星质量认证中心有限公司","node_type":"title","parent":0,"children":[626,627,628,629],"para_type":"title_1","pageno":51,"layout_index":16,"box":[143,646,303,15]}
- {"node_id":626,"text":"地址:北京市海淀区玉泉路甲12号七层","node_type":"text","parent":625,"children":[],"para_type":"text","pageno":51,"layout_index":17,"box":[177,666,156,9]}
- {"node_id":627,"text":"邮编:100143","node_type":"text","parent":625,"children":[],"para_type":"text","pageno":51,"layout_index":18,"box":[354,666,52,7]}
- {"node_id":628,"text":"52","node_type":"head_tail","parent":625,"children":[],"para_type":"head_tail","pageno":51,"layout_index":19,"box":[291,777,11,9]}
- {"node_id":629,"text":"附件一无机磨石地面系统生产(制造)商资格声明","node_type":"title","parent":625,"children":[630,636],"para_type":"title_2","pageno":52,"layout_index":0,"box":[139,84,316,15]}
- {"node_id":630,"text":"1. 名称及概况:","node_type":"title","parent":629,"children":[631,632,633,634,635],"para_type":"title_5","pageno":52,"layout_index":1,"box":[44,136,94,15]}
- {"node_id":631,"text":"(1)生产(制造)商名称:上海绰琪新型建材科技有限公司","node_type":"text","parent":630,"children":[],"para_type":"text","pageno":52,"layout_index":2,"box":[44,159,323,15]}
- {"node_id":632,"text":"(2)总部地址:上海市闵行区浦江镇东晨三路3号","node_type":"text","parent":630,"children":[],"para_type":"text","pageno":52,"layout_index":3,"box":[44,182,287,16]}
- {"node_id":633,"text":"传真\/电话号码:021-34730118\/34730119邮政编码:","node_type":"text","parent":630,"children":[],"para_type":"text","pageno":52,"layout_index":4,"box":[44,206,300,14]}
- {"node_id":634,"text":"(3)成立和\/或注册日期:2018年8月9日","node_type":"text","parent":630,"children":[],"para_type":"text","pageno":52,"layout_index":5,"box":[44,231,243,13]}
- {"node_id":635,"text":"(4)法定代表人姓名:朱涛","node_type":"text","parent":630,"children":[],"para_type":"text","pageno":52,"layout_index":6,"box":[44,253,175,13]}
- {"node_id":636,"text":"2.(1)关于生产(制造)投标货物的设施及有关情况:","node_type":"title","parent":629,"children":[637,638,639,640,641,642,643,644,645,646,647,648],"para_type":"title_5","pageno":52,"layout_index":7,"box":[44,278,285,13]}
- {"node_id":637,"text":"工厂名称地址生产的项目年生产能力职工人数","node_type":"text","parent":636,"children":[],"para_type":"text","pageno":52,"layout_index":8,"box":[44,299,378,13]}
- {"node_id":638,"text":"安徽绰琪,宿县无机磨石及抗裂砂浆10万吨","node_type":"text","parent":636,"children":[],"para_type":"text","pageno":52,"layout_index":9,"box":[44,325,278,13]}
- {"node_id":639,"text":"20 ","node_type":"text","parent":636,"children":[],"para_type":"text","pageno":52,"layout_index":10,"box":[388,325,18,13]}
- {"node_id":640,"text":"(2)本生产(制造)商不生产,而需从其它生产(制造)商购买的主要零部件: ","node_type":"text","parent":636,"children":[],"para_type":"text","pageno":52,"layout_index":11,"box":[44,372,415,13]}
- {"node_id":641,"text":"生产(制造)商名称和地址","node_type":"text","parent":636,"children":[],"para_type":"text","pageno":52,"layout_index":12,"box":[44,393,144,13]}
- {"node_id":642,"text":"主要零部件名称","node_type":"text","parent":636,"children":[],"para_type":"text","pageno":52,"layout_index":13,"box":[290,393,84,13]}
- {"node_id":643,"text":"多乐士","node_type":"text","parent":636,"children":[],"para_type":"text","pageno":52,"layout_index":14,"box":[44,416,36,13]}
- {"node_id":644,"text":"踢脚线内墙涂料","node_type":"text","parent":636,"children":[],"para_type":"text","pageno":52,"layout_index":15,"box":[248,416,84,13]}
- {"node_id":645,"text":"马贝","node_type":"text","parent":636,"children":[],"para_type":"text","pageno":52,"layout_index":16,"box":[44,440,24,13]}
- {"node_id":646,"text":"地坪材料","node_type":"text","parent":636,"children":[],"para_type":"text","pageno":52,"layout_index":17,"box":[290,440,48,13]}
- {"node_id":647,"text":"3. 其他情况:组织机构、技术力量等。","node_type":"text","parent":636,"children":[],"para_type":"text","pageno":52,"layout_index":18,"box":[44,463,208,15]}
- {"node_id":648,"text":"兹证明上述声明是真实、正确的,并提供了全部能提供的资料和数据,我们同意遵照贵方要求出示有关证明文件。","node_type":"text","parent":636,"children":[],"para_type":"text","pageno":52,"layout_index":19,"box":[44,487,504,36]}
- {"node_id":649,"text":"生产(制造)商名称上海绰琪新型建材科技有限公司(盖单位章)","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":52,"layout_index":20,"box":[132,555,366,13]}
- {"node_id":650,"text":"签字人姓名和职务余浩总经理","node_type":"title","parent":0,"children":[651,652,653,654,655,656,657],"para_type":"title_1","pageno":52,"layout_index":21,"box":[279,578,180,13]}
- {"node_id":651,"text":"签字人签字","node_type":"text","parent":650,"children":[],"para_type":"text","pageno":52,"layout_index":22,"box":[339,602,60,13]}
- {"node_id":652,"text":"签字日期","node_type":"text","parent":650,"children":[],"para_type":"text","pageno":52,"layout_index":23,"box":[345,625,48,13]}
- {"node_id":653,"text":"传真021-34730119 ","node_type":"text","parent":650,"children":[],"para_type":"text","pageno":52,"layout_index":24,"box":[318,649,106,14]}
- {"node_id":654,"text":"电话021-34730118 ","node_type":"text","parent":650,"children":[],"para_type":"text","pageno":52,"layout_index":25,"box":[318,672,106,14]}
- {"node_id":655,"text":"电子邮箱834751909@qq.com ","node_type":"text","parent":650,"children":[],"para_type":"text","pageno":52,"layout_index":26,"box":[290,695,163,14]}
- {"node_id":656,"text":"53 ","node_type":"head_tail","parent":650,"children":[],"para_type":"head_tail","pageno":52,"layout_index":27,"box":[293,779,12,9]}
- {"node_id":657,"text":"(二)近年财务状况表","node_type":"title","parent":650,"children":[658,659,660],"para_type":"title_4","pageno":53,"layout_index":0,"box":[227,53,140,15]}
- {"node_id":658,"text":[["序号","项目","2020年","2021年"],["1 ","固定资产","1,420,623.02 ","1,846,416.25 "],["2 ","流动资产","17,426,114.76 ","25,487,522.19 "],["其中:存货","974,273.09 ","2,660,825.00 "],["3 ","总资产","19,106,737.78 ","27,593,938.44 "],["4 ","长期负债","0 ","0 "],["5 ","流动负债","3,490,343.09 ","6,328,850.65 "],["6 ","净资产","15,616,394.69 ","21,265,087.79 "],["7 ","利润总额","6,194,957.43 ","7,619,982.59 "],["8 ","资产负债率","18.26% ","22.94% "],["9 ","流动比率","4.99 ","4.02 "],["10 ","速动比率","4.71 ","3.60 "],["11 ","销售利润率","16.5% ","16.2% "],[""]],"node_type":"table","parent":657,"children":[],"para_type":"table","pageno":53,"layout_index":1,"box":[72,75,449,419]}
- {"node_id":659,"text":"备注:在此附经会计师事务所或审计机构审计的财务财务会计报表,包括资产负债表、现金流量表、利润表和财务情况说明书的扫描件。","node_type":"text","parent":657,"children":[],"para_type":"text","pageno":53,"layout_index":2,"box":[45,510,504,34]}
- {"node_id":660,"text":"54 ","node_type":"head_tail","parent":657,"children":[],"para_type":"head_tail","pageno":53,"layout_index":3,"box":[293,779,12,9]}
- {"node_id":661,"text":"近年类似业绩案例六个","node_type":"title","parent":0,"children":[662,663,664,665,666,667,668],"para_type":"title_1","pageno":54,"layout_index":0,"box":[187,49,220,24]}
- {"node_id":662,"text":"1、嘉兴高铁站北候车厅合同金额679万元;","node_type":"text","parent":661,"children":[],"para_type":"text","pageno":54,"layout_index":1,"box":[89,78,249,16]}
- {"node_id":663,"text":"2、菏泽市民文化中心合同金额831万元;","node_type":"text","parent":661,"children":[],"para_type":"text","pageno":54,"layout_index":2,"box":[89,100,243,15]}
- {"node_id":664,"text":"3、四川永祥乐山工厂项目合同金额679万元;","node_type":"text","parent":661,"children":[],"para_type":"text","pageno":54,"layout_index":3,"box":[89,122,267,16]}
- {"node_id":665,"text":"4、内蒙通威多晶硅项目合同金额783万元;","node_type":"text","parent":661,"children":[],"para_type":"text","pageno":54,"layout_index":4,"box":[89,144,267,16]}
- {"node_id":666,"text":"5、广州泰和肿瘤医院项目合同金额202万元;","node_type":"text","parent":661,"children":[],"para_type":"text","pageno":54,"layout_index":5,"box":[89,166,267,15]}
- {"node_id":667,"text":"6、在建待验收项目浙江佛学院二期,合同金额320万元;","node_type":"text","parent":661,"children":[],"para_type":"text","pageno":54,"layout_index":6,"box":[89,191,310,13]}
- {"node_id":668,"text":"(三)近年类似项目业绩(案例一)","node_type":"title","parent":661,"children":[669,670,671,672],"para_type":"title_4","pageno":54,"layout_index":7,"box":[185,216,224,15]}
- {"node_id":669,"text":[["项目名称","嘉兴高铁站候车厅磨石项目"],["项目所在地","浙江省嘉兴市南湖区城东路83号"],["发包人名称","中铁建工集团有限公司"],["发包人地址","上海"],["发包人联系人及电话","王五18552145050 "],["合同价格","679万元"],["开工日期","2021年2月5日"],["竣工日期","2021年6月26日"],["承担的工作","项目管理和协调"],["工程质量","合格"],["项目经理","方海涛"],["技术负责人","白双龙"],["总监理工程师及电话","王小米18616517838 "],["项目描述","面积6000平米,绰琪推荐5+1磨石系统,即5cm厚度抗裂砂浆找平层,1.5cm厚度高端商业磨石面层,合同总价679万元,历时4个月完工,顺利通过甲方竣工验收。"],["备注"],[""]],"node_type":"table","parent":668,"children":[],"para_type":"table","pageno":54,"layout_index":8,"box":[70,238,454,428]}
- {"node_id":670,"text":"备注:1、类似项目业绩指具有2016年1月1日(以合同签订时间为准)以来已完(竣)工的无机磨石地坪施工业绩,其中有单项合同金额在200万元以上或者面积不少于2000平方无机磨石地坪工程施工业绩。","node_type":"text","parent":668,"children":[],"para_type":"text","pageno":54,"layout_index":9,"box":[44,686,507,29]}
- {"node_id":671,"text":"2、投标人应随此表附上类似业绩证明材料,如合同及相关内容的已标价工程量清单、竣工验收单以及汇款证明或发票等(3项缺一不可)的彩色扫描件。证明材料应能反映合同签订时间、工程类别及特征、合同金额或地坪面积等信息,否则,评标委员会将不予采信。","node_type":"text","parent":668,"children":[],"para_type":"text","pageno":54,"layout_index":10,"box":[44,724,508,45]}
- {"node_id":672,"text":"55 ","node_type":"head_tail","parent":668,"children":[],"para_type":"head_tail","pageno":54,"layout_index":11,"box":[293,779,12,9]}
- {"node_id":673,"text":"建设工程专业分包合同","node_type":"title","parent":0,"children":[674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,712,716,725],"para_type":"title_1","pageno":55,"layout_index":0,"box":[223,168,125,13]}
- {"node_id":674,"text":"合同编号:SHF一专业一嘉兴站改-2021-0088","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":1,"box":[201,186,195,14]}
- {"node_id":675,"text":"承包人:中铁建工集团有限公司(以下简称甲方)","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":2,"box":[132,206,159,10]}
- {"node_id":676,"text":"(1)纳税人识别号:91110000710921189P","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":3,"box":[136,218,133,9]}
- {"node_id":677,"text":"(2)税务地址:北京市丰台区南四环西路128号诺德中心1号楼","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":4,"box":[136,226,217,12]}
- {"node_id":678,"text":"(3)电话:010-51169898","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":5,"box":[136,240,89,9]}
- {"node_id":679,"text":"(4)开户行:建行北京六里桥支行","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":6,"box":[136,250,112,10]}
- {"node_id":680,"text":"(5)帐号:11001045200056000613","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":7,"box":[132,262,124,9]}
- {"node_id":681,"text":"(6)发票备注栏信息:项目名称:沪昆线嘉兴站站房改扩建工程","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":8,"box":[137,269,220,13]}
- {"node_id":682,"text":"项目地址:浙江省嘉兴市南湖区","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":9,"box":[210,280,114,11]}
- {"node_id":683,"text":"(7)货物或应税劳务、服务名称写成:建筑服务(工程款)","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":10,"box":[138,292,191,11]}
- {"node_id":684,"text":"分包人:上海绰琪新型建材科技有限公司(以下简称乙方)","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":11,"box":[134,303,190,11]}
- {"node_id":685,"text":"(1)统一社会信用代码:91310112MA1GC4MP45","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":12,"box":[139,315,148,10]}
- {"node_id":686,"text":"法定代表人姓名:顾东升","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":13,"box":[153,326,86,9]}
- {"node_id":687,"text":"(2)税务地址:上海市闵行区元江路5500号第一幢F2396室","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":14,"box":[139,335,210,12]}
- {"node_id":688,"text":"(3)电话:02134730118","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":15,"box":[139,349,90,8]}
- {"node_id":689,"text":"(4)开户行:中国农业银行股份有限公司上海鲁汇分理处","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":16,"box":[140,357,191,12]}
- {"node_id":690,"text":"(5)帐号:03410100040019001","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":17,"box":[140,370,111,9]}
- {"node_id":691,"text":"(6)纳税人身份:一般纳税人","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":18,"box":[140,381,103,10]}
- {"node_id":692,"text":"(7)资质证书编号:D231603322","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":19,"box":[140,392,109,9]}
- {"node_id":693,"text":"发证机关:上海市住房和城乡建设管理委员会","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":20,"box":[160,402,147,10]}
- {"node_id":694,"text":"资质专业及等级:建筑装饰装修工程专业承包二级","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":21,"box":[160,412,165,11]}
- {"node_id":695,"text":"复审时间及有效期:至2024年05月07日","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":22,"box":[160,423,144,10]}
- {"node_id":696,"text":"(8)安全生产许可证编号:(沪)1Z安许证字【2019】041209","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":23,"box":[142,433,205,12]}
- {"node_id":697,"text":"许可范围:建筑施工","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":24,"box":[161,447,73,8]}
- {"node_id":698,"text":"有效期:2019年10月19日至2022年10月18日","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":25,"box":[161,455,167,11]}
- {"node_id":699,"text":"(9)准入证号:中铁建工集团上海分公司第162号","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":26,"box":[143,467,169,10]}
- {"node_id":700,"text":"依照《中华人民共和国合同法》《中华人民共和国建筑法》及其它有关法律、行政法规,遵循平等、自愿、公平和诚实信用的原则,双方就专业分包事项协商达成一致,订立本合同。","node_type":"text","parent":673,"children":[],"para_type":"text","pageno":55,"layout_index":27,"box":[140,474,309,25]}
- {"node_id":701,"text":"第一条分包工程概况","node_type":"title","parent":673,"children":[702,703,704,705,706,707,708,709,710,711],"para_type":"title_2","pageno":55,"layout_index":28,"box":[154,502,71,8]}
- {"node_id":702,"text":"1.1分包工程名称:沪昆线嘉兴站站房改扩建项目无机人造石地面工程:","node_type":"text","parent":701,"children":[],"para_type":"text","pageno":55,"layout_index":29,"box":[155,509,233,12]}
- {"node_id":703,"text":"1.2施工地点:浙江省嘉兴市南湖区城东路83号:","node_type":"text","parent":701,"children":[],"para_type":"text","pageno":55,"layout_index":30,"box":[155,522,174,10]}
- {"node_id":704,"text":"1.3专业分包范围:沪昆线嘉兴站站房改扩建项目无机人造石地面工程二标段,具体内容详","node_type":"text","parent":701,"children":[],"para_type":"text","pageno":55,"layout_index":31,"box":[156,529,296,14]}
- {"node_id":705,"text":"见清单。","node_type":"text","parent":701,"children":[],"para_type":"text","pageno":55,"layout_index":32,"box":[141,547,30,7]}
- {"node_id":706,"text":"1.4若施工过程中乙方劳动力不足无法满足现场施工需要或由于业主方原因减少工程量的,","node_type":"text","parent":701,"children":[],"para_type":"text","pageno":55,"layout_index":33,"box":[156,551,291,14]}
- {"node_id":707,"text":"2","node_type":"text","parent":701,"children":[],"para_type":"text","pageno":55,"layout_index":34,"box":[294,568,6,6]}
- {"node_id":708,"text":"56","node_type":"head_tail","parent":701,"children":[],"para_type":"head_tail","pageno":55,"layout_index":35,"box":[291,777,12,9]}
- {"node_id":709,"text":"甲方有权利将部分或全部工作内容分包其他单位或由业主方指定其他单位施工,乙方不得提出索赔。","node_type":"text","parent":701,"children":[],"para_type":"text","pageno":56,"layout_index":0,"box":[159,166,300,21]}
- {"node_id":710,"text":"1.5专业分包项目:沪昆线嘉兴站站房改扩建项目无机人造石地面工程二标段,详合同附件一《分包工程量清单》。","node_type":"text","parent":701,"children":[],"para_type":"text","pageno":56,"layout_index":1,"box":[159,191,300,21]}
- {"node_id":711,"text":"1.6附件一《工程量清单》中的数量为合同数量,仅作为双方签订合同的依据,实际结算数量以设计图纸和技术交底为基础,并以乙方实际完成、依据《工程量清单》中的计量规则由甲方工程技术人员收方、技术负责人审核签认、预算合同人员复核、监理和业主认可的合格工程数量为准。工程量清单的任何错误和遗漏,不能免除乙方根据合同规定的义务和按图纸、规范履行合同的责任。乙方承诺:甲方有权根据施工需要调整乙方承包范围内的施工项目和施工数量,乙方不得因此而提出索赔。","node_type":"text","parent":701,"children":[],"para_type":"text","pageno":56,"layout_index":2,"box":[160,216,299,68]}
- {"node_id":712,"text":"第二条分包工作期限","node_type":"title","parent":673,"children":[713,714,715],"para_type":"title_2","pageno":56,"layout_index":3,"box":[174,289,67,7]}
- {"node_id":713,"text":"2.1总日历工作天数为:30天,计划开始工作日期2021年04月01日至2021年04月30日:实际开工日期以甲方书面通知为主。","node_type":"text","parent":712,"children":[],"para_type":"text","pageno":56,"layout_index":4,"box":[159,302,298,19]}
- {"node_id":714,"text":"2.2如甲方认为乙方的施工进度不能满足本合同的要求,甲方有权要求乙方采取必要的赶工措施,乙方应立即采取必要的步骤加快工程施工进度,以使其符合完工期限要求。因赶工所产生的费用均已包括在本合同约定的综合单价中。","node_type":"text","parent":712,"children":[],"para_type":"text","pageno":56,"layout_index":5,"box":[159,326,300,31]}
- {"node_id":715,"text":"2.3关于工期的其他约定:","node_type":"title","parent":712,"children":[],"para_type":"title_6","pageno":56,"layout_index":6,"box":[174,362,94,8]}
- {"node_id":716,"text":"第三条合同组成文件","node_type":"title","parent":673,"children":[717,718,719,720,721,722,723,724],"para_type":"title_2","pageno":56,"layout_index":7,"box":[174,374,67,7]}
- {"node_id":717,"text":"合同组成文件及优先解释顺序如下:","node_type":"text","parent":716,"children":[],"para_type":"text","pageno":56,"layout_index":8,"box":[174,388,108,6]}
- {"node_id":718,"text":"(1)本专业分包合同及附件、补充协议:","node_type":"text","parent":716,"children":[],"para_type":"text","pageno":56,"layout_index":9,"box":[177,400,123,6]}
- {"node_id":719,"text":"(2)中标通知书(如果有);","node_type":"text","parent":716,"children":[],"para_type":"text","pageno":56,"layout_index":10,"box":[177,412,88,7]}
- {"node_id":720,"text":"(3)招标文件(如果有);","node_type":"text","parent":716,"children":[],"para_type":"text","pageno":56,"layout_index":11,"box":[177,424,80,7]}
- {"node_id":721,"text":"(4)投标文件(如果有);","node_type":"text","parent":716,"children":[],"para_type":"text","pageno":56,"layout_index":12,"box":[177,436,80,6]}
- {"node_id":722,"text":"(5)施工图纸;","node_type":"text","parent":716,"children":[],"para_type":"text","pageno":56,"layout_index":13,"box":[177,448,45,7]}
- {"node_id":723,"text":"(6)现场签证:","node_type":"text","parent":716,"children":[],"para_type":"text","pageno":56,"layout_index":14,"box":[176,461,46,7]}
- {"node_id":724,"text":"(7)双方为实现分包合同目,就工程工期、质量、安全文明施工等(价格调整除外)形成的会议纪要和记录。","node_type":"text","parent":716,"children":[],"para_type":"text","pageno":56,"layout_index":15,"box":[159,472,300,19]}
- {"node_id":725,"text":"第四条合同价款","node_type":"title","parent":673,"children":[726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765],"para_type":"title_2","pageno":56,"layout_index":16,"box":[173,497,54,7]}
- {"node_id":726,"text":"4.1本合同为固定综合单价合同,实际合同价以最终结算为准。","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":56,"layout_index":17,"box":[174,510,192,7]}
- {"node_id":727,"text":"4.2暂定合同总价(暂定):6789247.35元(大写:人民币陆佰柒拾捌万玖仟贰佰肆拾柒元叁角伍分),其中不含税价款为6228667.29元(大写:人民币陆佰贰拾贰万捌仟陆佰陆拾柒元贰角玖分),增值税税率为9%,增值税560580.06元(大写:人民币伍拾陆万零伍佰捌拾元零陆分),合同中不含税价不因国家税收政策变化而变化,若在合同履行期间,遇到国家税收政策调整,则未开发票部分按照新税率重新计算含税价。","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":56,"layout_index":18,"box":[159,522,300,56]}
- {"node_id":728,"text":"4.4合同单价:详见附件一《分包工程量清单》。分包工程量清单中的单价为固定综合单价(不含增值税),包括但不限于以下各项费用:","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":56,"layout_index":19,"box":[162,583,295,18]}
- {"node_id":729,"text":"3","node_type":"head_tail","parent":725,"children":[],"para_type":"head_tail","pageno":56,"layout_index":20,"box":[306,616,4,6]}
- {"node_id":730,"text":"57","node_type":"head_tail","parent":725,"children":[],"para_type":"head_tail","pageno":56,"layout_index":21,"box":[291,777,11,10]}
- {"node_id":731,"text":"电子邮件的方式。","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":0,"box":[141,173,52,7]}
- {"node_id":732,"text":"甲方的送达地址为沪昆线嘉兴站站房改扩建工程联合体项目经理部:电子邮箱为:1912654881qq.com:","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":1,"box":[141,184,293,19]}
- {"node_id":733,"text":"乙方的送达地址为上海市闵行区浦江镇东晨三路三号:电子邮箱为tailinwei @126.com双方的送达地址或电子邮箱发生变更,应通过书面送达的方式通知对方。否则,因未有效通知而引起的一切损失由责任方承担。","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":2,"box":[141,209,298,32]}
- {"node_id":734,"text":"21.4乙方作为一个有经验的专业分包方,对本合同条款已认真阅读,对合同约定的所有事项均已完全理解,对履行本合同可能存在的各项风险包括但不限于工程停建、工期变更、资金周转、自然条件变化、征地拆迁滞后、图纸迟延等均已充分判断,乙方签订本合同则视为自愿承担可能存在的各种风险,并不得据此向甲方索赔工程费用。","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":3,"box":[141,246,298,42]}
- {"node_id":735,"text":"21.5本合同书自双方签字盖章后生效,全部工程完工经竣工验收合格、质保期满后终止。","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":4,"box":[155,295,273,6]}
- {"node_id":736,"text":"21.6合同正本贰份,具有同等效力,由甲方和乙方各执壹份;本合同副本肆份,甲方执叁份,乙方执壹份。","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":5,"box":[141,307,297,19]}
- {"node_id":737,"text":"附件1《分包工程量清单》","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":6,"box":[155,331,84,7]}
- {"node_id":738,"text":"附件2《甲方供应材料一览表》","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":7,"box":[155,344,97,6]}
- {"node_id":739,"text":"附件3《甲方供应机械设备及周转材料一览表》","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":8,"box":[155,356,147,7]}
- {"node_id":740,"text":"附件4《乙方供应机械设备及周转材料一览表》","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":9,"box":[155,368,146,7]}
- {"node_id":741,"text":"附件5《甲方提供临时设施一览表》","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":10,"box":[155,380,112,6]}
- {"node_id":742,"text":"附件6《乙方主要管理人员名单》","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":11,"box":[155,392,105,6]}
- {"node_id":743,"text":"附件7乙方授权委托","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":12,"box":[155,404,66,7]}
- {"node_id":744,"text":"附件8《安全生产、文明施工协议》","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":13,"box":[156,416,111,7]}
- {"node_id":745,"text":"附件9《环境保护协议》","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":14,"box":[155,429,76,6]}
- {"node_id":746,"text":"附件10《建筑安装施工质量协议》","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":15,"box":[156,441,107,7]}
- {"node_id":747,"text":"附件11《廉洁协议》","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":16,"box":[155,454,66,6]}
- {"node_id":748,"text":"附件12《施工现场临时用电安全管理协议》","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":17,"box":[156,466,135,6]}
- {"node_id":749,"text":"附件13《治安消防安全管理协议》","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":18,"box":[155,478,108,6]}
- {"node_id":750,"text":"附件14质量安全红线管理承诺书","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":19,"box":[155,488,108,6]}
- {"node_id":751,"text":"附件15《农民工工资实名制考勤表及工资单》","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":20,"box":[155,498,143,7]}
- {"node_id":752,"text":"(以下内容无正文)","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":21,"box":[144,509,67,7]}
- {"node_id":753,"text":"承包人:(公章或合同专用章)","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":22,"box":[141,522,95,6]}
- {"node_id":754,"text":"分包人(公章或合同专用章)","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":23,"box":[286,521,95,8]}
- {"node_id":755,"text":"住所地址:北京市丰台区南四环西路128号住所地","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":24,"box":[141,535,173,7]}
- {"node_id":756,"text":"诺德心1号楼","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":25,"box":[177,547,49,6]}
- {"node_id":757,"text":"法定代表人:","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":26,"box":[141,559,37,7]}
- {"node_id":758,"text":"法定代表人:","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":27,"box":[285,559,38,7]}
- {"node_id":759,"text":"委托代理人:","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":28,"box":[141,578,37,7]}
- {"node_id":760,"text":"心","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":29,"box":[186,564,52,37]}
- {"node_id":761,"text":"委托代理人:","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":30,"box":[285,578,39,7]}
- {"node_id":762,"text":"电话:","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":31,"box":[141,592,17,8]}
- {"node_id":763,"text":"电话:","node_type":"text","parent":725,"children":[],"para_type":"text","pageno":57,"layout_index":32,"box":[285,592,17,8]}
- {"node_id":764,"text":"14","node_type":"head_tail","parent":725,"children":[],"para_type":"head_tail","pageno":57,"layout_index":33,"box":[285,620,11,6]}
- {"node_id":765,"text":"58","node_type":"head_tail","parent":725,"children":[],"para_type":"head_tail","pageno":57,"layout_index":34,"box":[291,777,12,9]}
- {"node_id":766,"text":"嘉兴火车站磨石项目收款记录5张331万元","node_type":"title","parent":0,"children":[767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,821,829],"para_type":"title_1","pageno":58,"layout_index":0,"box":[162,52,270,14]}
- {"node_id":767,"text":"中国农业银行","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":58,"layout_index":1,"box":[127,83,68,10]}
- {"node_id":768,"text":"网上银行电子回单","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":58,"layout_index":2,"box":[246,84,73,9]}
- {"node_id":769,"text":"AGRICTTTLAL. BANK OF OIINA ","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":58,"layout_index":3,"box":[128,98,67,2]}
- {"node_id":770,"text":"客户收付款入账通知","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":58,"layout_index":4,"box":[253,96,61,7]}
- {"node_id":771,"text":[["回单编号:09002634641848053912第1次打印","回单编号:09002634641848053912第1次打印","回单编号:09002634641848053912第1次打印","回单编号:09002634641848053912第1次打印","回单编号:09002634641848053912第1次打印","回单编号:09002634641848053912第1次打印"],["付款方","账号632293182","账号632293182","收款方","账号","03410100040019001"],["付款方","户名开户行","中铁建工集团有限公司沪昆线嘉兴站站房改扩建工程联合体项目经理部中国民生银行股份有限公司嘉兴分行营业部","收款方","户名","上海绰琪新型建材科技有限公司"],["付款方","户名开户行","中铁建工集团有限公司沪昆线嘉兴站站房改扩建工程联合体项目经理部中国民生银行股份有限公司嘉兴分行营业部","收款方","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","300000.00","金额(大写)","金额(大写)","叁拾万元整"],["币种人民币","币种人民币","币种人民币","交易渠道","交易渠道","CNPS "],["摘要转账存款","摘要转账存款","摘要转账存款","凭证号","凭证号","09032550100000550"],["交易时间","交易时间","2021-04-1410:00:28","会计日期","会计日期","20210414"],["附言","附言","工程款内部成员单位账号:户名:","工程款内部成员单位账号:户名:","工程款内部成员单位账号:户名:","工程款内部成员单位账号:户名:"],[""]],"node_type":"table","parent":766,"children":[],"para_type":"table","pageno":58,"layout_index":5,"box":[106,106,385,142]}
- {"node_id":772,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":58,"layout_index":6,"box":[110,254,178,6]}
- {"node_id":773,"text":"打印日期:2022-08-28","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":58,"layout_index":7,"box":[406,254,61,6]}
- {"node_id":774,"text":"中国农业银行","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":58,"layout_index":8,"box":[122,306,70,10]}
- {"node_id":775,"text":"网上银行电子回单","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":58,"layout_index":9,"box":[245,307,75,9]}
- {"node_id":776,"text":"MGRICITTITLAL BAYK O OnNA ","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":58,"layout_index":10,"box":[124,320,70,2]}
- {"node_id":777,"text":"客户收付款入账通知","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":58,"layout_index":11,"box":[251,318,63,7]}
- {"node_id":778,"text":[["回单编号:09004281204645322773第2次打印","回单编号:09004281204645322773第2次打印","回单编号:09004281204645322773第2次打印","回单编号:09004281204645322773第2次打印","回单编号:09004281204645322773第2次打印","回单编号:09004281204645322773第2次打印"],["账号付款户名方","账号付款户名方","632293182","收款方","账号","03410100040019001"],["账号付款户名方","账号付款户名方","中铁建工集团有限公司沪昆线嘉兴站站房改扩建工程联合体项目经理部开户行中国民生银行股份有限公司嘉兴分行营业部","收款方","户名","上海绰琪新型建材科技有限公司"],["账号付款户名方","账号付款户名方","中铁建工集团有限公司沪昆线嘉兴站站房改扩建工程联合体项目经理部开户行中国民生银行股份有限公司嘉兴分行营业部","收款方","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","360000.00","金额(大写)","金额(大写)","叁拾陆万元整"],["币种","币种","人民币","交易渠道","交易渠道","CNPS "],["摘要","摘要","转账存款","凭证号","凭证号","09032550100000550"],["交易时间","交易时间","2021-04-2516:03:05","会计日期","会计日期","20210425"],["附言","附言","工程款内部成员单位账号:户名:","工程款内部成员单位账号:户名:","工程款内部成员单位账号:户名:","工程款内部成员单位账号:户名:"],[""]],"node_type":"table","parent":766,"children":[],"para_type":"table","pageno":58,"layout_index":12,"box":[99,329,392,145]}
- {"node_id":779,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":58,"layout_index":13,"box":[106,481,181,6]}
- {"node_id":780,"text":"打印日期:2022-08-28","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":58,"layout_index":14,"box":[408,481,62,6]}
- {"node_id":781,"text":"中国农业银行","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":58,"layout_index":15,"box":[119,524,71,11]}
- {"node_id":782,"text":"网上银行电子回单","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":58,"layout_index":16,"box":[242,526,75,10]}
- {"node_id":783,"text":"AGRCITTITLAL. BASK OONA ","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":58,"layout_index":17,"box":[120,540,68,2]}
- {"node_id":784,"text":"客户收付款入账通知","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":58,"layout_index":18,"box":[249,538,63,7]}
- {"node_id":785,"text":[["回单编号:09004339787740756555第2次打印","回单编号:09004339787740756555第2次打印","回单编号:09004339787740756555第2次打印","回单编号:09004339787740756555第2次打印","回单编号:09004339787740756555第2次打印","回单编号:09004339787740756555第2次打印"],["付款方","账号632293182","账号632293182","收款方","账号","03410100040019001"],["付款方","户名部","中铁建工集团有限公司沪昆线嘉兴站站房改扩建工程联合体项目经理","收款方","户名","上海绰琪新型建材科技有限公司"],["付款方","","开户行中国民生银行股份有限公司嘉兴分行营业部","收款方","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)币种摘要","金额(小写)币种摘要","820000.00人民币转账存款","金额(大写)","金额(大写)","捌拾贰万元整"],["金额(小写)币种摘要","金额(小写)币种摘要","820000.00人民币转账存款","交易渠道","交易渠道","CNPS "],["金额(小写)币种摘要","金额(小写)币种摘要","820000.00人民币转账存款","凭证号","凭证号","09032550100000550"],["交易时间","交易时间","2021-05-2615:27:10","会计日期","会计日期","20210526"],["附言","附言","工程款内部成员单位账号:户名:","工程款内部成员单位账号:户名:","工程款内部成员单位账号:户名:","工程款内部成员单位账号:户名:"],[""]],"node_type":"table","parent":766,"children":[],"para_type":"table","pageno":58,"layout_index":19,"box":[99,548,392,146]}
- {"node_id":786,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":58,"layout_index":20,"box":[102,701,182,6]}
- {"node_id":787,"text":"打印日期:2022-08-28","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":58,"layout_index":21,"box":[407,701,63,6]}
- {"node_id":788,"text":"59","node_type":"head_tail","parent":766,"children":[],"para_type":"head_tail","pageno":58,"layout_index":22,"box":[291,777,11,9]}
- {"node_id":789,"text":"中国农业银行","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":59,"layout_index":0,"box":[119,61,70,10]}
- {"node_id":790,"text":"网上银行电子回单","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":59,"layout_index":1,"box":[241,62,75,9]}
- {"node_id":791,"text":"MGRRCUTTURAL. RANK OOINA ","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":59,"layout_index":2,"box":[120,76,66,2]}
- {"node_id":792,"text":"客户收付款入账通知","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":59,"layout_index":3,"box":[248,74,63,7]}
- {"node_id":793,"text":[["回单编号:09002530667089589563第2次打印","回单编号:09002530667089589563第2次打印","回单编号:09002530667089589563第2次打印","回单编号:09002530667089589563第2次打印","回单编号:09002530667089589563第2次打印","回单编号:09002530667089589563第2次打印"],["账号632293182中铁建工集团有限公司沪昆线嘉兴站站房改扩建工程联合体项目经理付款户名部方开户行中国民生银行股份有限公司嘉兴分行营业部","账号632293182中铁建工集团有限公司沪昆线嘉兴站站房改扩建工程联合体项目经理付款户名部方开户行中国民生银行股份有限公司嘉兴分行营业部","账号632293182中铁建工集团有限公司沪昆线嘉兴站站房改扩建工程联合体项目经理付款户名部方开户行中国民生银行股份有限公司嘉兴分行营业部","收款方","账号","03410100040019001"],["账号632293182中铁建工集团有限公司沪昆线嘉兴站站房改扩建工程联合体项目经理付款户名部方开户行中国民生银行股份有限公司嘉兴分行营业部","账号632293182中铁建工集团有限公司沪昆线嘉兴站站房改扩建工程联合体项目经理付款户名部方开户行中国民生银行股份有限公司嘉兴分行营业部","账号632293182中铁建工集团有限公司沪昆线嘉兴站站房改扩建工程联合体项目经理付款户名部方开户行中国民生银行股份有限公司嘉兴分行营业部","收款方","户名","上海绰琪新型建材科技有限公司"],["账号632293182中铁建工集团有限公司沪昆线嘉兴站站房改扩建工程联合体项目经理付款户名部方开户行中国民生银行股份有限公司嘉兴分行营业部","账号632293182中铁建工集团有限公司沪昆线嘉兴站站房改扩建工程联合体项目经理付款户名部方开户行中国民生银行股份有限公司嘉兴分行营业部","账号632293182中铁建工集团有限公司沪昆线嘉兴站站房改扩建工程联合体项目经理付款户名部方开户行中国民生银行股份有限公司嘉兴分行营业部","收款方","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","180000.00","金额(大写)","金额(大写)","壹拾捌万元整"],["币种","币种","人民币","交易渠道","交易渠道","CNPS "],["摘要","摘要","转账存款","凭证号","凭证号","09032550100000550"],["交易时间","交易时间","2021-06-2309:51:39","会计日期","会计日期","20210623"],["附言","附言","工程款内部成员单位账号:户名:","工程款内部成员单位账号:户名:","工程款内部成员单位账号:户名:","工程款内部成员单位账号:户名:"],[""]],"node_type":"table","parent":766,"children":[],"para_type":"table","pageno":59,"layout_index":4,"box":[98,84,394,147]}
- {"node_id":794,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":59,"layout_index":5,"box":[101,237,183,6]}
- {"node_id":795,"text":"打印日期:2022-08-28","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":59,"layout_index":6,"box":[407,237,62,6]}
- {"node_id":796,"text":"中国农业银行","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":59,"layout_index":7,"box":[122,285,70,10]}
- {"node_id":797,"text":"网上银行电子回单","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":59,"layout_index":8,"box":[244,286,75,10]}
- {"node_id":798,"text":"A","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":59,"layout_index":9,"box":[122,299,70,4]}
- {"node_id":799,"text":"客户收付款入账通知","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":59,"layout_index":10,"box":[251,298,62,7]}
- {"node_id":800,"text":[["回单编号:09005544531573433979第2次打印","回单编号:09005544531573433979第2次打印","回单编号:09005544531573433979第2次打印","回单编号:09005544531573433979第2次打印","回单编号:09005544531573433979第2次打印","回单编号:09005544531573433979第2次打印"],["付款方","账号632293182","账号632293182","收款方","账号","03410100040019001"],["付款方","户名","中铁建工集团有限公司沪昆线嘉兴站站房改扩建工程联合体项目经理部","收款方","户名","上海绰琪新型建材科技有限公司"],["付款方","开户行","中国民生银行股份有限公司嘉兴分行营业部","收款方","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","1445775.95","金额(大写)","金额(大写)","壹佰肆拾肆万伍仟柒佰柒拾伍元玖角伍分"],["币种","币种","人民币","交易渠道","交易渠道","CNPS "],["摘要","摘要","转账存款","凭证号","凭证号","09032550100000550"],["交易时间","交易时间","2022-01-2116:50:43","会计日期","会计日期","20220121"],["附言","附言","工程款内部成员单位账号:户名:","工程款内部成员单位账号:户名:","工程款内部成员单位账号:户名:","工程款内部成员单位账号:户名:"],[""]],"node_type":"table","parent":766,"children":[],"para_type":"table","pageno":59,"layout_index":11,"box":[98,308,394,155]}
- {"node_id":801,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":59,"layout_index":12,"box":[104,470,182,6]}
- {"node_id":802,"text":"打印日期:2022-08-28","node_type":"text","parent":766,"children":[],"para_type":"text","pageno":59,"layout_index":13,"box":[409,470,61,6]}
- {"node_id":803,"text":"60","node_type":"head_tail","parent":766,"children":[],"para_type":"head_tail","pageno":59,"layout_index":14,"box":[291,777,11,9]}
- {"node_id":804,"text":"(三)近年类似项目业绩(案例二)","node_type":"title","parent":766,"children":[805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820],"para_type":"title_4","pageno":60,"layout_index":0,"box":[185,53,224,15]}
- {"node_id":805,"text":[["项目名称","菏泽市民文化活动中心"],["项目所在地","菏泽市"],["发包人名称","苏州金螳螂建筑装饰股份有限公司"],["发包人地址","苏州"],["发包人联系人及电话","项目总王鑫13915563522 "],["合同价格","831万元"],["开工日期","2020年1月10日"],["竣工日期","2020年11月31日"],["承担的工作","无机磨石施工的项目管理和协调"],["工程质量","合格"],["项目经理","方海涛"],["技术负责人","胡居雷"],["总监理工程师及电话","傅经理18621551946 "],["项目描述","面积20000平米,绰琪推荐5+1磨石系统,即5cm厚度抗裂砂浆找平层,1.5cm厚度高端商业磨石面层,合同总价831万元,历时4个月完工,顺利通过甲方竣工验收。"],["备注"],[""]],"node_type":"table","parent":804,"children":[],"para_type":"table","pageno":60,"layout_index":1,"box":[70,75,454,457]}
- {"node_id":806,"text":"备注:1、类似项目业绩指具有2016年1月1日(以合同签订时间为准)以来已完(竣)工的无机磨石地坪施工业绩,其中有单项合同金额在200万元以上或者面积不少于2000平方无机磨石地坪工程施工业绩。","node_type":"text","parent":804,"children":[],"para_type":"text","pageno":60,"layout_index":2,"box":[44,553,506,28]}
- {"node_id":807,"text":"2、投标人应随此表附上类似业绩证明材料,如合同及相关内容的已标价工程量清单、竣工验收单以及汇款证明或发票等(3项缺一不可)的彩色扫描件。证明材料应能反映合同签订时间、工程类别及特征、合同金额或地坪面积等信息,否则,评标委员会将不予采信。","node_type":"text","parent":804,"children":[],"para_type":"text","pageno":60,"layout_index":3,"box":[44,591,503,44]}
- {"node_id":808,"text":"3、如有多个类似项目,可按此表格扩展。每张表格只填写一个项目,并标明序号。","node_type":"text","parent":804,"children":[],"para_type":"text","pageno":60,"layout_index":4,"box":[65,644,383,11]}
- {"node_id":809,"text":"61 ","node_type":"head_tail","parent":804,"children":[],"para_type":"head_tail","pageno":60,"layout_index":5,"box":[293,779,12,9]}
- {"node_id":810,"text":"金螳螂材料采购安装协议","node_type":"text","parent":804,"children":[],"para_type":"text","pageno":61,"layout_index":0,"box":[360,114,108,12]}
- {"node_id":811,"text":"合同名称:材料采购安装协议","node_type":"text","parent":804,"children":[],"para_type":"text","pageno":61,"layout_index":1,"box":[114,140,189,14]}
- {"node_id":812,"text":"G0103200001-2YFBT-0003","node_type":"text","parent":804,"children":[],"para_type":"text","pageno":61,"layout_index":2,"box":[122,166,93,6]}
- {"node_id":813,"text":"需方:苏州金螳螂建筑装饰股份有限公司","node_type":"text","parent":804,"children":[],"para_type":"text","pageno":61,"layout_index":3,"box":[114,197,138,10]}
- {"node_id":814,"text":"菏泽市市民文化中心中庭及走廊装饰工程、连廊装饰工程和外部景观工程项目部(以下称甲方)供方:上海绰琪新型建材科技有限公司【税务登记号(或身份证号):91310112MA1GC4MP45】(以下称乙方)","node_type":"text","parent":804,"children":[],"para_type":"text","pageno":61,"layout_index":4,"box":[114,214,353,44]}
- {"node_id":815,"text":"甲乙双方为明确双方权利和义务,依照《中华人民共和国合同法》及其有关法律、法规规定,经双方协商一致,特订立本合同。","node_type":"text","parent":804,"children":[],"para_type":"text","pageno":61,"layout_index":5,"box":[116,282,351,27]}
- {"node_id":816,"text":"工程概况和内容","node_type":"text","parent":804,"children":[],"para_type":"text","pageno":61,"layout_index":6,"box":[115,335,55,9]}
- {"node_id":817,"text":"1、工程名称:菏泽市市民文化中心中庭及走廊装饰工程、连廊装饰工程和外部景观工程","node_type":"text","parent":804,"children":[],"para_type":"text","pageno":61,"layout_index":7,"box":[131,351,297,10]}
- {"node_id":818,"text":"2、工程承包范围:菏泽市市民文化中心中庭工程地面无机水磨石具体内容详见设计文件及清单。","node_type":"text","parent":804,"children":[],"para_type":"text","pageno":61,"layout_index":8,"box":[131,368,329,11]}
- {"node_id":819,"text":"3、工程地点:菏泽市和平路与永昌路交叉路口西南角","node_type":"text","parent":804,"children":[],"para_type":"text","pageno":61,"layout_index":9,"box":[132,388,180,7]}
- {"node_id":820,"text":"4、承包方式:。","node_type":"text","parent":804,"children":[],"para_type":"text","pageno":61,"layout_index":10,"box":[131,404,56,9]}
- {"node_id":821,"text":"第一条合同(暂估)价款","node_type":"title","parent":766,"children":[822,823,824,825,826,827,828],"para_type":"title_2","pageno":61,"layout_index":11,"box":[116,422,90,9]}
- {"node_id":822,"text":"1.1合同金额(不含增值税):大写人民币伍佰陆拾肆万零叁佰肆拾元叁角壹分(¥5640340.31元),增值税金额:大写人民币伍拾万柒仟陆佰叁拾元陆角叁分(¥507630.63元),合同总金额大写人民币陆佰壹拾肆万柒仟玖佰柒拾元玖角肆分(¥6147970.94元)。若合同履行过程中遇国家增值税税率调整,增值税税率以纳税义务发生时的适用税率为准,增值税金额根据适用税率进行实际调整,该价款包含但不限于安装人工、机械费及易耗品、生产所需的原料及安装所需辅料、五金件等、材料的卸车、场内运输、清点、验货、接收、保管、材料损耗等、施工放线、现场安全文明施工费、垃圾清运、场地清洁、成品保护、雨季或异常气候施工措施费、远程施工增加费、现场经费、水电费、管理费、增值税等一切费用。","node_type":"text","parent":821,"children":[],"para_type":"text","pageno":61,"layout_index":12,"box":[118,437,354,130]}
- {"node_id":823,"text":"1.2本合同价款的方式为:乙方应缴纳自己所进行施工部分的税收及行政管理部门的其他收费,并按所施工部分审计定案总价款的0.00%向甲方支付协调、采购配合及技术支持等费用。","node_type":"text","parent":821,"children":[],"para_type":"text","pageno":61,"layout_index":13,"box":[120,574,348,29]}
- {"node_id":824,"text":"版本号:2019","node_type":"text","parent":821,"children":[],"para_type":"text","pageno":61,"layout_index":14,"box":[124,658,45,7]}
- {"node_id":825,"text":"打印日期:2020-03-06","node_type":"text","parent":821,"children":[],"para_type":"text","pageno":61,"layout_index":15,"box":[392,656,69,7]}
- {"node_id":826,"text":"62","node_type":"head_tail","parent":821,"children":[],"para_type":"head_tail","pageno":61,"layout_index":16,"box":[291,777,11,9]}
- {"node_id":827,"text":"66金螳螂","node_type":"text","parent":821,"children":[],"para_type":"text","pageno":62,"layout_index":0,"box":[350,133,52,14]}
- {"node_id":828,"text":"材料采购安装协议","node_type":"text","parent":821,"children":[],"para_type":"text","pageno":62,"layout_index":1,"box":[408,139,49,7]}
- {"node_id":829,"text":"第十五条投诉举报","node_type":"title","parent":766,"children":[830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846],"para_type":"title_2","pageno":62,"layout_index":2,"box":[124,158,65,7]}
- {"node_id":830,"text":"邮箱:jubaoegoldmantis .com","node_type":"text","parent":829,"children":[],"para_type":"text","pageno":62,"layout_index":3,"box":[125,207,93,6]}
- {"node_id":831,"text":"合同附件:","node_type":"text","parent":829,"children":[],"para_type":"text","pageno":62,"layout_index":4,"box":[124,249,37,9]}
- {"node_id":832,"text":"7、其他资料。","node_type":"text","parent":829,"children":[],"para_type":"text","pageno":62,"layout_index":5,"box":[138,316,46,7]}
- {"node_id":833,"text":"甲方代表:","node_type":"text","parent":829,"children":[],"para_type":"text","pageno":62,"layout_index":6,"box":[139,396,30,7]}
- {"node_id":834,"text":"授权代表人陈","node_type":"text","parent":829,"children":[],"para_type":"text","pageno":62,"layout_index":7,"box":[138,423,74,26]}
- {"node_id":835,"text":"签订日期:","node_type":"text","parent":829,"children":[],"para_type":"text","pageno":62,"layout_index":8,"box":[138,460,32,8]}
- {"node_id":836,"text":"版本号:2019","node_type":"text","parent":829,"children":[],"para_type":"text","pageno":62,"layout_index":9,"box":[128,642,41,6]}
- {"node_id":837,"text":"部门:监察部","node_type":"text","parent":829,"children":[],"para_type":"text","pageno":62,"layout_index":10,"box":[125,191,42,7]}
- {"node_id":838,"text":"电话:0512-68509315","node_type":"text","parent":829,"children":[],"para_type":"text","pageno":62,"layout_index":11,"box":[193,191,68,7]}
- {"node_id":839,"text":"1、合同清单(签字、盖章);","node_type":"text","parent":829,"children":[],"para_type":"text","pageno":62,"layout_index":12,"box":[138,267,96,9]}
- {"node_id":840,"text":"3、红杠线责任状(签字、盖章,若有);","node_type":"text","parent":829,"children":[],"para_type":"text","pageno":62,"layout_index":13,"box":[138,284,129,7]}
- {"node_id":841,"text":"5、施工图\/节点图(签字、盖章);","node_type":"text","parent":829,"children":[],"para_type":"text","pageno":62,"layout_index":14,"box":[138,300,111,7]}
- {"node_id":842,"text":"甲方(盖章)","node_type":"text","parent":829,"children":[],"para_type":"text","pageno":62,"layout_index":15,"box":[139,348,39,7]}
- {"node_id":843,"text":"手机:13776089069","node_type":"text","parent":829,"children":[],"para_type":"text","pageno":62,"layout_index":16,"box":[290,190,61,8]}
- {"node_id":844,"text":"2、履约承诺书(签字、盖章);","node_type":"text","parent":829,"children":[],"para_type":"text","pageno":62,"layout_index":17,"box":[293,268,99,7]}
- {"node_id":845,"text":"4、组价分析(签字、盖章);","node_type":"text","parent":829,"children":[],"para_type":"text","pageno":62,"layout_index":18,"box":[293,283,92,7]}
- {"node_id":846,"text":"6、工程量计算底稿(签字、盖章);","node_type":"text","parent":829,"children":[],"para_type":"text","pageno":62,"layout_index":19,"box":[293,300,114,7]}
- {"node_id":847,"text":"乙方(盖章)","node_type":"title","parent":0,"children":[848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,876],"para_type":"title_1","pageno":62,"layout_index":20,"box":[275,348,39,7]}
- {"node_id":848,"text":"合同专用","node_type":"text","parent":847,"children":[],"para_type":"text","pageno":62,"layout_index":21,"box":[319,368,41,14]}
- {"node_id":849,"text":"乙方代表","node_type":"text","parent":847,"children":[],"para_type":"text","pageno":62,"layout_index":22,"box":[275,395,31,10]}
- {"node_id":850,"text":"授权代表人:","node_type":"text","parent":847,"children":[],"para_type":"text","pageno":62,"layout_index":23,"box":[275,428,38,7]}
- {"node_id":851,"text":"签订日期","node_type":"text","parent":847,"children":[],"para_type":"text","pageno":62,"layout_index":24,"box":[275,459,31,9]}
- {"node_id":852,"text":"金螳螂","node_type":"text","parent":847,"children":[],"para_type":"text","pageno":62,"layout_index":25,"box":[364,401,98,98]}
- {"node_id":853,"text":"第12页共12页","node_type":"head_tail","parent":847,"children":[],"para_type":"head_tail","pageno":62,"layout_index":26,"box":[266,640,52,6]}
- {"node_id":854,"text":"打印日期:2019-12-27","node_type":"head_tail","parent":847,"children":[],"para_type":"head_tail","pageno":62,"layout_index":27,"box":[378,640,66,6]}
- {"node_id":855,"text":"63","node_type":"head_tail","parent":847,"children":[],"para_type":"head_tail","pageno":62,"layout_index":28,"box":[291,777,11,9]}
- {"node_id":856,"text":"金螳螂材料采购安装协议","node_type":"text","parent":847,"children":[],"para_type":"text","pageno":63,"layout_index":0,"box":[383,114,90,10]}
- {"node_id":857,"text":"合同名称:材料采购安装协议","node_type":"text","parent":847,"children":[],"para_type":"text","pageno":63,"layout_index":1,"box":[116,139,190,15]}
- {"node_id":858,"text":"G0103190039-ZYFBHT -0003","node_type":"text","parent":847,"children":[],"para_type":"text","pageno":63,"layout_index":2,"box":[124,164,93,7]}
- {"node_id":859,"text":"需方:苏州金螳螂建筑装饰股份有限公司","node_type":"text","parent":847,"children":[],"para_type":"text","pageno":63,"layout_index":3,"box":[116,196,138,9]}
- {"node_id":860,"text":"【菏泽市民文化中心】(山东)菏泽市市民文化中心艺术馆(小剧场除外)、工人文化宫、青少年宫、美术馆精装修施工项目项目部(以下称甲方)","node_type":"text","parent":847,"children":[],"para_type":"text","pageno":63,"layout_index":4,"box":[116,212,354,29]}
- {"node_id":861,"text":"供方:上海绰琪新型建材科技有限公司【税务登记号(或身份证号):91310112MA1GC4MP45】(以下称乙方)","node_type":"text","parent":847,"children":[],"para_type":"text","pageno":63,"layout_index":5,"box":[115,247,355,27]}
- {"node_id":862,"text":"甲乙双方为明确双方权利和义务,依照《中华人民共和国合同法》及其有关法律、法规规定,经双方协商一致,特订立本合同。","node_type":"text","parent":847,"children":[],"para_type":"text","pageno":63,"layout_index":6,"box":[116,299,354,27]}
- {"node_id":863,"text":"工程概况和内容","node_type":"text","parent":847,"children":[],"para_type":"text","pageno":63,"layout_index":7,"box":[116,352,54,9]}
- {"node_id":864,"text":"1、工程名称:【菏泽市民文化中心】(山东)菏泽市市民文化中心艺术馆(小剧场除外)、工人文化宫、青少年宫、美术馆精装修施工项目","node_type":"text","parent":847,"children":[],"para_type":"text","pageno":63,"layout_index":8,"box":[116,368,350,27]}
- {"node_id":865,"text":"2、工程承包范围:菏泽市市民文化中心地面无机水磨石具体内容详见设计文件及清单。","node_type":"text","parent":847,"children":[],"para_type":"text","pageno":63,"layout_index":9,"box":[131,402,301,11]}
- {"node_id":866,"text":"3、工程地点:菏泽市和平路与永昌路交叉路口西南角","node_type":"text","parent":847,"children":[],"para_type":"text","pageno":63,"layout_index":10,"box":[131,420,183,10]}
- {"node_id":867,"text":"4、承包方式:。","node_type":"text","parent":847,"children":[],"para_type":"text","pageno":63,"layout_index":11,"box":[131,438,54,9]}
- {"node_id":868,"text":"第一条合同(暂估)价款","node_type":"title","parent":847,"children":[869,870,871,872,873,874,875],"para_type":"title_2","pageno":63,"layout_index":12,"box":[116,456,89,8]}
- {"node_id":869,"text":"1.1合同金额(不含增值税):大写人民币壹佰玖拾壹万壹仟玖佰肆拾玖元叁角陆分(¥1911949.36元),增值税金额:大写人民币壹拾柒万贰仟零柒拾伍元肆角肆分(172075.44元)合同总金额:大写人民币贰佰零捌万肆仟零贰拾肆元捌角(¥2084024.80元)。若合同履行过程中遇国家增值税税率调整,增值税税率以纳税义务发生时的适用税率为准,增值税金额根据适用税率进行实际调整,该价款包含但不限于安装人工、机械费及易耗品、生产所需的原料及安装所需辅料、五金件等、材料的卸车、场内运输、清点、验货、接收、保管、材料损耗等、施工放线、现场安全文明施工费、垃圾清运、场地清洁、成品保护、雨季或异常气候施工措施费、远程施工增加费、现场经费、水电费、管理费、增值税等一切费用。","node_type":"text","parent":868,"children":[],"para_type":"text","pageno":63,"layout_index":13,"box":[116,471,356,132]}
- {"node_id":870,"text":"1.2本合同价款的方式为:固定单价,乙方应缴纳自己所进行施工部分的税收及行政管理部门的其他收费,并按所施工部分审计定案总价款的0.00%向甲方支付协调、采购配合及技术支持等费用。","node_type":"text","parent":868,"children":[],"para_type":"text","pageno":63,"layout_index":14,"box":[118,609,354,28]}
- {"node_id":871,"text":"版本号:2019","node_type":"text","parent":868,"children":[],"para_type":"text","pageno":63,"layout_index":15,"box":[121,658,45,7]}
- {"node_id":872,"text":"第1页共12页","node_type":"head_tail","parent":868,"children":[],"para_type":"head_tail","pageno":63,"layout_index":16,"box":[271,657,52,6]}
- {"node_id":873,"text":"打印日期:2019-12-27","node_type":"head_tail","parent":868,"children":[],"para_type":"head_tail","pageno":63,"layout_index":17,"box":[390,656,70,7]}
- {"node_id":874,"text":"64","node_type":"head_tail","parent":868,"children":[],"para_type":"head_tail","pageno":63,"layout_index":18,"box":[291,777,11,9]}
- {"node_id":875,"text":"金螳螂材料采购安装协议","node_type":"text","parent":868,"children":[],"para_type":"text","pageno":64,"layout_index":0,"box":[392,160,88,12]}
- {"node_id":876,"text":"第十五条投诉举报","node_type":"title","parent":847,"children":[877,878,879],"para_type":"title_2","pageno":64,"layout_index":1,"box":[128,186,67,7]}
- {"node_id":877,"text":"邮箱:jubao @goldmantis .com","node_type":"text","parent":876,"children":[],"para_type":"text","pageno":64,"layout_index":2,"box":[128,237,99,7]}
- {"node_id":878,"text":"合同附件:","node_type":"text","parent":876,"children":[],"para_type":"text","pageno":64,"layout_index":3,"box":[127,281,39,10]}
- {"node_id":879,"text":"7、其他资料","node_type":"title","parent":876,"children":[880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901],"para_type":"title_5","pageno":64,"layout_index":4,"box":[143,352,42,7]}
- {"node_id":880,"text":"甲方代表:","node_type":"text","parent":879,"children":[],"para_type":"text","pageno":64,"layout_index":5,"box":[142,436,34,8]}
- {"node_id":881,"text":"授权代表人陈","node_type":"text","parent":879,"children":[],"para_type":"text","pageno":64,"layout_index":6,"box":[142,466,77,28]}
- {"node_id":882,"text":"签订日期:","node_type":"text","parent":879,"children":[],"para_type":"text","pageno":64,"layout_index":7,"box":[142,505,34,9]}
- {"node_id":883,"text":"版本号:2019","node_type":"text","parent":879,"children":[],"para_type":"text","pageno":64,"layout_index":8,"box":[131,697,43,6]}
- {"node_id":884,"text":"部门:监察部","node_type":"text","parent":879,"children":[],"para_type":"text","pageno":64,"layout_index":9,"box":[128,219,45,9]}
- {"node_id":885,"text":"电话:0512-68509315","node_type":"text","parent":879,"children":[],"para_type":"text","pageno":64,"layout_index":10,"box":[200,220,72,7]}
- {"node_id":886,"text":"1、合同清单(签字、盖章);3、红杠线责任状(签字、盖章,若有);","node_type":"text","parent":879,"children":[],"para_type":"text","pageno":64,"layout_index":11,"box":[142,300,137,26]}
- {"node_id":887,"text":"5、施工图\/节点图(签字、盖章);","node_type":"text","parent":879,"children":[],"para_type":"text","pageno":64,"layout_index":12,"box":[143,335,117,9]}
- {"node_id":888,"text":"甲方(盖章)","node_type":"text","parent":879,"children":[],"para_type":"text","pageno":64,"layout_index":13,"box":[143,385,42,9]}
- {"node_id":889,"text":"手机:13776089069","node_type":"text","parent":879,"children":[],"para_type":"text","pageno":64,"layout_index":14,"box":[303,220,64,7]}
- {"node_id":890,"text":"2、履约承诺书(签字、盖章);","node_type":"text","parent":879,"children":[],"para_type":"text","pageno":64,"layout_index":15,"box":[305,300,106,9]}
- {"node_id":891,"text":"4、组价分析(签字、盖章);","node_type":"text","parent":879,"children":[],"para_type":"text","pageno":64,"layout_index":16,"box":[306,317,98,9]}
- {"node_id":892,"text":"6、工程量计算底稿(签字、盖章);","node_type":"text","parent":879,"children":[],"para_type":"text","pageno":64,"layout_index":17,"box":[306,334,120,8]}
- {"node_id":893,"text":"乙方(盖章):","node_type":"text","parent":879,"children":[],"para_type":"text","pageno":64,"layout_index":18,"box":[286,382,68,15]}
- {"node_id":894,"text":"合同专用","node_type":"text","parent":879,"children":[],"para_type":"text","pageno":64,"layout_index":19,"box":[333,407,44,14]}
- {"node_id":895,"text":"乙方代表","node_type":"text","parent":879,"children":[],"para_type":"text","pageno":64,"layout_index":20,"box":[287,436,32,8]}
- {"node_id":896,"text":"授权代表人:","node_type":"text","parent":879,"children":[],"para_type":"text","pageno":64,"layout_index":21,"box":[286,470,42,8]}
- {"node_id":897,"text":"签订日期","node_type":"text","parent":879,"children":[],"para_type":"text","pageno":64,"layout_index":22,"box":[286,504,32,9]}
- {"node_id":898,"text":"金螳螂","node_type":"text","parent":879,"children":[],"para_type":"text","pageno":64,"layout_index":23,"box":[380,442,105,104]}
- {"node_id":899,"text":"第12页共12页","node_type":"head_tail","parent":879,"children":[],"para_type":"head_tail","pageno":64,"layout_index":24,"box":[277,695,55,7]}
- {"node_id":900,"text":"打印日期:2019-12-27","node_type":"head_tail","parent":879,"children":[],"para_type":"head_tail","pageno":64,"layout_index":25,"box":[396,695,69,8]}
- {"node_id":901,"text":"65","node_type":"head_tail","parent":879,"children":[],"para_type":"head_tail","pageno":64,"layout_index":26,"box":[291,777,11,9]}
- {"node_id":902,"text":"菏泽磨石项目银行回款记录31张728万元","node_type":"title","parent":0,"children":[903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929],"para_type":"title_1","pageno":65,"layout_index":0,"box":[165,83,264,14]}
- {"node_id":903,"text":"中国农业银行","node_type":"text","parent":902,"children":[],"para_type":"text","pageno":65,"layout_index":1,"box":[103,126,76,11]}
- {"node_id":904,"text":"网上银行电子回单","node_type":"text","parent":902,"children":[],"para_type":"text","pageno":65,"layout_index":2,"box":[235,128,81,10]}
- {"node_id":905,"text":"AGRICUTTRAL. RANK OF OIYA ","node_type":"text","parent":902,"children":[],"para_type":"text","pageno":65,"layout_index":3,"box":[105,142,75,2]}
- {"node_id":906,"text":"客户收付款入账通知","node_type":"text","parent":902,"children":[],"para_type":"text","pageno":65,"layout_index":4,"box":[242,141,67,7]}
- {"node_id":907,"text":[["回单编号:04990451491256670435第1次打印","回单编号:04990451491256670435第1次打印","回单编号:04990451491256670435第1次打印","回单编号:04990451491256670435第1次打印","回单编号:04990451491256670435第1次打印","回单编号:04990451491256670435第1次打印"],["付款方","账号","325603000018170041318","收款方","账号","03410100040019001"],["付款方","户名","苏州金螳螂建筑装饰股份有限公司","收款方","户名","上海绰琪新型建材科技有限公司"],["付款方","开户行","交通银行苏州分行","收款方","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","350000.00","金额(大写)","金额(大写)","叁拾伍万元整"],["币种","币种","人民币","交易渠道","交易渠道","BEPS "],["摘要","摘要","转账存款","凭证号","凭证号","09032550100000550"],["交易时间","交易时间","2020-05-1215:52:36","会计日期","会计日期","20200512"],["附言","附言","0051101732>>菏泽市市民文化中心中内部成员单位账号:户名:","0051101732>>菏泽市市民文化中心中内部成员单位账号:户名:","0051101732>>菏泽市市民文化中心中内部成员单位账号:户名:","0051101732>>菏泽市市民文化中心中内部成员单位账号:户名:"],[""]],"node_type":"table","parent":902,"children":[],"para_type":"table","pageno":65,"layout_index":5,"box":[79,152,426,136]}
- {"node_id":908,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":902,"children":[],"para_type":"text","pageno":65,"layout_index":6,"box":[86,296,196,6]}
- {"node_id":909,"text":"打印日期:2022-08-28","node_type":"text","parent":902,"children":[],"para_type":"text","pageno":65,"layout_index":7,"box":[412,296,66,6]}
- {"node_id":910,"text":"中国农业银行","node_type":"text","parent":902,"children":[],"para_type":"text","pageno":65,"layout_index":8,"box":[104,359,77,11]}
- {"node_id":911,"text":"网上银行电子回单","node_type":"text","parent":902,"children":[],"para_type":"text","pageno":65,"layout_index":9,"box":[238,361,81,10]}
- {"node_id":912,"text":"AGRICIITRAL BANK O CIIYA ","node_type":"text","parent":902,"children":[],"para_type":"text","pageno":65,"layout_index":10,"box":[106,375,73,2]}
- {"node_id":913,"text":"客户收付款入账通知","node_type":"text","parent":902,"children":[],"para_type":"text","pageno":65,"layout_index":11,"box":[244,373,70,9]}
- {"node_id":914,"text":[["回单编号:05650439949870046118第1次打印","回单编号:05650439949870046118第1次打印","回单编号:05650439949870046118第1次打印","回单编号:05650439949870046118第1次打印","回单编号:05650439949870046118第1次打印","回单编号:05650439949870046118第1次打印"],["账号付款方户名开户行","账号付款方户名开户行","325603000018170041318","收款方","账号","03410100040019001"],["账号付款方户名开户行","账号付款方户名开户行","苏州金螳螂建筑装饰股份有限公司","收款方","户名","上海绰琪新型建材科技有限公司"],["账号付款方户名开户行","账号付款方户名开户行","交通银行苏州分行","收款方","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","538745.58","金额(大写)","金额(大写)","伍拾叁万捌仟柒佰肆拾伍元伍角捌分"],["币种","币种","人民币","交易渠道","交易渠道","BEPS "],["摘要","摘要","转账存款","凭证号","凭证号","09032550100000550"],["交易时间","交易时间","2020-07-1715:49:20","会计日期","会计日期","20200717"],["附言","附言","0071106083>>菏泽市市民文化中心中内部成员单位账号:户名:","0071106083>>菏泽市市民文化中心中内部成员单位账号:户名:","0071106083>>菏泽市市民文化中心中内部成员单位账号:户名:","0071106083>>菏泽市市民文化中心中内部成员单位账号:户名:"],[""]],"node_type":"table","parent":902,"children":[],"para_type":"table","pageno":65,"layout_index":12,"box":[79,384,426,138]}
- {"node_id":915,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":902,"children":[],"para_type":"text","pageno":65,"layout_index":13,"box":[86,530,198,7]}
- {"node_id":916,"text":"打印日期:2022-08-28","node_type":"text","parent":902,"children":[],"para_type":"text","pageno":65,"layout_index":14,"box":[416,530,68,7]}
- {"node_id":917,"text":"中国农业银行","node_type":"text","parent":902,"children":[],"para_type":"text","pageno":65,"layout_index":15,"box":[100,575,77,12]}
- {"node_id":918,"text":"网上银行电子回单","node_type":"text","parent":902,"children":[],"para_type":"text","pageno":65,"layout_index":16,"box":[233,577,81,10]}
- {"node_id":919,"text":"客户收付款入账通知","node_type":"text","parent":902,"children":[],"para_type":"text","pageno":65,"layout_index":17,"box":[239,588,69,9]}
- {"node_id":920,"text":[["回单编号:05840397016785459642第1次打印","回单编号:05840397016785459642第1次打印","回单编号:05840397016785459642第1次打印","回单编号:05840397016785459642第1次打印","回单编号:05840397016785459642第1次打印","回单编号:05840397016785459642第1次打印"],["付款方","账号","325603000018170041318","账号","账号","03410100040019001"],["付款方","户","苏州金螳螂建筑装饰股份有限公司","收款方户名","收款方户名","上海绰琪新型建材科技有限公司"],["付款方","开户行","交通银行苏州分行","","开户行","中国农业银行股份有限公司上海鲁汇支行"],["付款方","开户行","交通银行苏州分行","","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","450000.00","金额(大写)","金额(大写)","肆拾伍万元整"],["币种","币种","人民币","交易渠道","交易渠道","BEPS "],["摘要","摘要","转账存款","凭证号","凭证号","09032550100000550"],["交易时间","交易时间","2020-08-0514:13:14","会计日期","会计日期","20200805"],["附言","附言","0081101185>>菏泽市市民文化中心中内部成员单位账号:户名","0081101185>>菏泽市市民文化中心中内部成员单位账号:户名","0081101185>>菏泽市市民文化中心中内部成员单位账号:户名","0081101185>>菏泽市市民文化中心中内部成员单位账号:户名"],[""]],"node_type":"table","parent":902,"children":[],"para_type":"table","pageno":65,"layout_index":18,"box":[79,600,426,138]}
- {"node_id":921,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":902,"children":[],"para_type":"text","pageno":65,"layout_index":19,"box":[82,746,198,7]}
- {"node_id":922,"text":"打印日期:2022-08-28","node_type":"text","parent":902,"children":[],"para_type":"text","pageno":65,"layout_index":20,"box":[412,746,66,7]}
- {"node_id":923,"text":"66","node_type":"head_tail","parent":902,"children":[],"para_type":"head_tail","pageno":65,"layout_index":21,"box":[291,777,11,9]}
- {"node_id":924,"text":[["出票日期","2020-04-17","票据状态","背书已签收"],[""]],"node_type":"table","parent":902,"children":[],"para_type":"table","pageno":66,"layout_index":0,"box":[95,91,396,16]}
- {"node_id":925,"text":"汇到期日","node_type":"text","parent":902,"children":[],"para_type":"text","pageno":66,"layout_index":1,"box":[116,113,26,6]}
- {"node_id":926,"text":"2021-04-17","node_type":"text","parent":902,"children":[],"para_type":"text","pageno":66,"layout_index":2,"box":[185,113,30,6]}
- {"node_id":927,"text":"票据号码","node_type":"text","parent":902,"children":[],"para_type":"text","pageno":66,"layout_index":3,"box":[255,113,23,6]}
- {"node_id":928,"text":"110230501706320200417619426455","node_type":"text","parent":902,"children":[],"para_type":"text","pageno":66,"layout_index":4,"box":[347,113,92,6]}
- {"node_id":929,"text":[["出票人","全称","全称","苏州金螳螂建筑装饰股份有限公司","苏州金螳螂建筑装饰股份有限公司","苏州金螳螂建筑装饰股份有限公司","收票人","全称","苏州集加材料有限公司","苏州集加材料有限公司"],["出票人","账号","账号","1102020619000294215","1102020619000294215","1102020619000294215","收票人","账号","8112001013700462090","8112001013700462090"],["出票人","开户银行","开户银行","","","","收票人","开户银行","中信银行股份有限公司苏州分行营业部","中信银行股份有限公司苏州分行营业部"],["票据金额","票据金额","票据金额","人民币(大写)","人民币(大写)","人民币(大写)","贰拾万元整","贰拾万元整","200000.00","200000.00"],["承兑人信息","全称","全称","中国工商银行股份有限公司苏州路支行","中国工商银行股份有限公司苏州路支行","中国工商银行股份有限公司苏州路支行","账号","账号","0","0"],["承兑人信息","开户行名称","开户行名称","中国工商银行股份有限公司苏州路支行","中国工商银行股份有限公司苏州路支行","中国工商银行股份有限公司苏州路支行","开户行行号","开户行行号","102305017063","102305017063"],["交易合同号","交易合同号","交易合同号","","","","承兑信息","出人承诺","本汇票请予以承兑,到期无条件付款","本汇票请予以承兑,到期无条件付款"],["能否转让","能否转让","能否转让","可以转让","可以转让","可以转让","承兑信息","承兑人承诺","本汇票已经承兑,到期无条件付款","本汇票已经承兑,到期无条件付款"],["能否转让","能否转让","能否转让","可以转让","可以转让","可以转让","承兑信息","承兑日期"],["承兑保证信息","承兑保证信息","承兑保证信息","保证人名称","保证人名称","","保证人地址","","保证人日期"],["评价信息(由出人、承兑人自己记载,仅供参考)","评价信息(由出人、承兑人自己记载,仅供参考)","评价信息(由出人、承兑人自己记载,仅供参考)","出票人","出票人","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:"],["评价信息(由出人、承兑人自己记载,仅供参考)","评价信息(由出人、承兑人自己记载,仅供参考)","评价信息(由出人、承兑人自己记载,仅供参考)","承兑人","承兑人","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:"],[""]],"node_type":"table","parent":902,"children":[],"para_type":"table","pageno":66,"layout_index":5,"box":[95,129,396,204]}
- {"node_id":930,"text":"电子银行承兑汇票","node_type":"title","parent":0,"children":[931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982],"para_type":"title_1","pageno":66,"layout_index":6,"box":[272,364,59,7]}
- {"node_id":931,"text":"出票日期","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":66,"layout_index":7,"box":[136,416,21,6]}
- {"node_id":932,"text":"2020-07-27","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":66,"layout_index":8,"box":[199,416,29,6]}
- {"node_id":933,"text":"票据状态","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":66,"layout_index":9,"box":[266,416,22,7]}
- {"node_id":934,"text":"背书已收","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":66,"layout_index":10,"box":[384,416,26,7]}
- {"node_id":935,"text":[["汇到期日","2021-07-27","2021-07-27","票据号码","131630500002920200727687985958","131630500002920200727687985958","131630500002920200727687985958","131630500002920200727687985958","131630500002920200727687985958"],["出票人","全称","苏州金螳螂建筑装股份有限公司","苏州金螳螂建筑装股份有限公司","苏州金螳螂建筑装股份有限公司","收票人","全称","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司"],["出票人","账号","3050020010120100005805","3050020010120100005805","3050020010120100005805","收票人","账号","03410100040019001","03410100040019001"],["出票人","开户银行","浙商银行股份有限公司苏州分行","浙商银行股份有限公司苏州分行","浙商银行股份有限公司苏州分行","收票人","开户银行","中国农业银行股份有限公司上海鲁汇支行","中国农业银行股份有限公司上海鲁汇支行"],["票金额","票金额","人民币大写","人民币大写","人民币大写","伍万元整","伍万元整","350000.00","350000.00"],["承兑人信息","全称","浙商银行股份有限公司苏州分行","浙商银行股份有限公司苏州分行","浙商银行股份有限公司苏州分行","账号","账号","0","0"],["承兑人信息","开户行名称","浙商银行股份有限公司苏州分行","浙商银行股份有限公司苏州分行","浙商银行股份有限公司苏州分行","开户行行号","开户行行号","316305000029","316305000029"],["交易合号","交易合号","","","","承兑信息","出票人承诺","本汇票请予以承兑,到期无条件付款","本汇票请予以承兑,到期无条件付款"],["能转让","能转让","可以转让","可以转让","可以转让","承兑信息","承兑人承诺","本汇票已经承兑,到期无条件付款","本汇票已经承兑,到期无条件付款"],["能转让","能转让","可以转让","可以转让","可以转让","承兑信息","承兑日期"],["承兑保证信息","承兑保证信息","保证人名称","保证人名称","","保证人地址","","保证人日期"],["评价信息出票人、承兑人自己记载,仅供参考","评价信息出票人、承兑人自己记载,仅供参考","出票人","出票人","评级主体:信用等级:评级到:","评级主体:信用等级:评级到:","评级主体:信用等级:评级到:","评级主体:信用等级:评级到:","评级主体:信用等级:评级到:"],["评价信息出票人、承兑人自己记载,仅供参考","评价信息出票人、承兑人自己记载,仅供参考","承兑人","承兑人","评级主体:信用等:评级到期:","评级主体:信用等:评级到期:","评级主体:信用等:评级到期:","评级主体:信用等:评级到期:","评级主体:信用等:评级到期:"],[""]],"node_type":"table","parent":930,"children":[],"para_type":"table","pageno":66,"layout_index":11,"box":[114,428,376,223]}
- {"node_id":936,"text":"67","node_type":"head_tail","parent":930,"children":[],"para_type":"head_tail","pageno":66,"layout_index":12,"box":[290,776,13,11]}
- {"node_id":937,"text":"中国农业银行","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":0,"box":[118,58,70,11]}
- {"node_id":938,"text":"网上银行电子回单","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":1,"box":[239,60,74,9]}
- {"node_id":939,"text":"客户收付款入账通知","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":2,"box":[245,72,61,7]}
- {"node_id":940,"text":"回单编号:06050515760725164729","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":3,"box":[96,84,106,6]}
- {"node_id":941,"text":"账号","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":4,"box":[124,95,13,7]}
- {"node_id":942,"text":"325603000018170041318","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":5,"box":[152,95,78,7]}
- {"node_id":943,"text":"第1次打印","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":6,"box":[454,84,30,7]}
- {"node_id":944,"text":"账号","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":7,"box":[305,95,14,7]}
- {"node_id":945,"text":"03410100040019001","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":8,"box":[333,95,62,7]}
- {"node_id":946,"text":"付款方","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":9,"box":[100,106,20,6]}
- {"node_id":947,"text":"户","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":10,"box":[124,105,14,9]}
- {"node_id":948,"text":"苏州金螳螂建筑装饰股份有限公司","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":11,"box":[152,106,94,6]}
- {"node_id":949,"text":"收款方户名","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":12,"box":[281,105,38,9]}
- {"node_id":950,"text":"上海绰琪新型建材科技有限公司","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":13,"box":[334,106,88,6]}
- {"node_id":951,"text":"开户行","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":14,"box":[124,117,19,8]}
- {"node_id":952,"text":"交通银行苏州分行","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":15,"box":[151,117,51,7]}
- {"node_id":953,"text":"开户行","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":16,"box":[304,117,22,8]}
- {"node_id":954,"text":"中国农业银行股份有限公司上海鲁汇支行","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":17,"box":[333,118,113,6]}
- {"node_id":955,"text":"金额(小写)","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":18,"box":[104,129,35,7]}
- {"node_id":956,"text":"350000.00","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":19,"box":[152,129,31,7]}
- {"node_id":957,"text":"金额(大写)","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":20,"box":[286,129,34,7]}
- {"node_id":958,"text":"叁拾伍万元整","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":21,"box":[333,129,38,7]}
- {"node_id":959,"text":"币种","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":22,"box":[117,140,13,7]}
- {"node_id":960,"text":"人民币","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":23,"box":[152,140,18,7]}
- {"node_id":961,"text":"交易渠道BEPS ","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":24,"box":[291,140,57,7]}
- {"node_id":962,"text":"腰","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":25,"box":[116,151,13,7]}
- {"node_id":963,"text":"转账存款","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":26,"box":[151,151,26,7]}
- {"node_id":964,"text":"凭证号","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":27,"box":[295,151,20,7]}
- {"node_id":965,"text":"09032550100000550","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":28,"box":[333,151,63,6]}
- {"node_id":966,"text":"交易时间","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":29,"box":[110,162,26,7]}
- {"node_id":967,"text":"2020-08-2616:36:31","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":30,"box":[152,162,61,6]}
- {"node_id":968,"text":"会计日期","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":31,"box":[292,162,26,7]}
- {"node_id":969,"text":"20200826","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":32,"box":[332,162,31,6]}
- {"node_id":970,"text":"0081108827>>菏泽市市民文化中心中内部成员单位账号:户名:","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":33,"box":[194,174,180,7]}
- {"node_id":971,"text":"附言","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":34,"box":[116,186,14,7]}
- {"node_id":972,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":35,"box":[101,214,180,6]}
- {"node_id":973,"text":"打印日期:2022-08-28","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":36,"box":[401,214,61,6]}
- {"node_id":974,"text":"中国农业银行","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":37,"box":[120,256,70,10]}
- {"node_id":975,"text":"网上银行电子回单","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":38,"box":[243,257,75,9]}
- {"node_id":976,"text":"客户收付款入账通知","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":39,"box":[248,268,64,7]}
- {"node_id":977,"text":[["回单编号:06660509877957473572第1次打印","回单编号:06660509877957473572第1次打印","回单编号:06660509877957473572第1次打印","回单编号:06660509877957473572第1次打印","回单编号:06660509877957473572第1次打印","回单编号:06660509877957473572第1次打印"],["付款方","账号325603000018170041318","账号325603000018170041318","账号","账号","03410100040019001"],["付款方","账号325603000018170041318","账号325603000018170041318","账号","账号","03410100040019001"],["付款方","户名苏州金螳螂建筑装饰股份有限公司","户名苏州金螳螂建筑装饰股份有限公司","收款方户名","收款方户名","上海绰琪新型建材科技有限公司"],["付款方","开户行交通银行苏州分行","开户行交通银行苏州分行","","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)600000.00","金额(小写)600000.00","金额(小写)600000.00","金额(大写)","金额(大写)","陆拾万元整"],["币种人民币","币种人民币","币种人民币","交易渠道","交易渠道","BEPS "],["摘要转账存款","摘要转账存款","摘要转账存款","凭证号","凭证号","09032550100000550"],["交易时间2020-10-2617:17:14","交易时间2020-10-2617:17:14","交易时间2020-10-2617:17:14","会计日期","会计日期","20201026"],["0101107925>>菏泽市市民文化中心中内部成员单位账号户名:附言","0101107925>>菏泽市市民文化中心中内部成员单位账号户名:附言","0101107925>>菏泽市市民文化中心中内部成员单位账号户名:附言","0101107925>>菏泽市市民文化中心中内部成员单位账号户名:附言","0101107925>>菏泽市市民文化中心中内部成员单位账号户名:附言","0101107925>>菏泽市市民文化中心中内部成员单位账号户名:附言"],[""]],"node_type":"table","parent":930,"children":[],"para_type":"table","pageno":67,"layout_index":40,"box":[98,279,394,127]}
- {"node_id":978,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":41,"box":[104,413,181,6]}
- {"node_id":979,"text":"中国农业银行","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":42,"box":[120,466,68,11]}
- {"node_id":980,"text":"网上银行电子回单","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":43,"box":[238,468,72,9]}
- {"node_id":981,"text":"打印日期:2022-08-28","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":44,"box":[408,413,61,6]}
- {"node_id":982,"text":"第2次打印","node_type":"text","parent":930,"children":[],"para_type":"text","pageno":67,"layout_index":45,"box":[448,491,30,6]}
- {"node_id":983,"text":"客户收付款入账通知","node_type":"title","parent":0,"children":[984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017],"para_type":"title_1","pageno":67,"layout_index":46,"box":[243,479,61,7]}
- {"node_id":984,"text":"回单编号:09004601848471670501","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":47,"box":[98,491,103,6]}
- {"node_id":985,"text":"账号","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":48,"box":[125,502,13,7]}
- {"node_id":986,"text":"325603000018170041318","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":49,"box":[152,502,77,6]}
- {"node_id":987,"text":"付款方","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":50,"box":[101,513,20,6]}
- {"node_id":988,"text":"苏州金螳螂建筑装饰股份有限公司","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":51,"box":[152,513,93,6]}
- {"node_id":989,"text":"收款方","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":52,"box":[279,512,19,7]}
- {"node_id":990,"text":"开户行","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":53,"box":[125,524,20,7]}
- {"node_id":991,"text":"交通银行苏州分行","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":54,"box":[152,524,49,6]}
- {"node_id":992,"text":"账号","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":55,"box":[303,502,13,7]}
- {"node_id":993,"text":"03410100040019001","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":56,"box":[330,502,60,7]}
- {"node_id":994,"text":"户名","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":57,"box":[303,512,13,7]}
- {"node_id":995,"text":"上海绰琪新型建材科技有限公司","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":58,"box":[330,513,86,6]}
- {"node_id":996,"text":"开户行","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":59,"box":[302,524,20,7]}
- {"node_id":997,"text":"中国农业银行股份有限公司上海鲁汇支行","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":60,"box":[330,524,111,7]}
- {"node_id":998,"text":"金额(小写)","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":61,"box":[106,535,34,7]}
- {"node_id":999,"text":"150000.00","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":62,"box":[152,535,31,7]}
- {"node_id":1000,"text":"金额(大写)壹拾伍万元整","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":63,"box":[284,535,83,7]}
- {"node_id":1001,"text":"币种","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":64,"box":[118,545,14,7]}
- {"node_id":1002,"text":"人民币","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":65,"box":[152,546,19,6]}
- {"node_id":1003,"text":"交易渠道","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":66,"box":[289,546,26,6]}
- {"node_id":1004,"text":"BEPS ","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":67,"box":[331,547,14,4]}
- {"node_id":1005,"text":"摘腰","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":68,"box":[118,557,14,7]}
- {"node_id":1006,"text":"转账存款","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":69,"box":[152,557,26,6]}
- {"node_id":1007,"text":"凭证号","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":70,"box":[293,557,18,7]}
- {"node_id":1008,"text":"09032550100000550","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":71,"box":[330,557,62,6]}
- {"node_id":1009,"text":"交易时间","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":72,"box":[112,567,24,7]}
- {"node_id":1010,"text":"2020-11-1916:29:31","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":73,"box":[152,567,60,7]}
- {"node_id":1011,"text":"会计日期","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":74,"box":[290,567,26,7]}
- {"node_id":1012,"text":"20201119","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":75,"box":[330,567,30,7]}
- {"node_id":1013,"text":"0111105696>>菏泽市市民文化中心中内部成员单位账号:户名:","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":76,"box":[194,579,176,6]}
- {"node_id":1014,"text":"附言","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":77,"box":[118,590,13,7]}
- {"node_id":1015,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":78,"box":[103,618,176,6]}
- {"node_id":1016,"text":"打印日期:2022-08-28","node_type":"text","parent":983,"children":[],"para_type":"text","pageno":67,"layout_index":79,"box":[396,618,60,6]}
- {"node_id":1017,"text":"68","node_type":"head_tail","parent":983,"children":[],"para_type":"head_tail","pageno":67,"layout_index":80,"box":[291,777,11,9]}
- {"node_id":1018,"text":"电子银行承兑汇票","node_type":"title","parent":0,"children":[1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041],"para_type":"title_1","pageno":68,"layout_index":0,"box":[269,52,55,7]}
- {"node_id":1019,"text":[["出日期","出日期","2020.09.02","2020.09.02","状态","背节已签收","背节已签收","背节已签收","背节已签收","背节已签收","背节已签收"],["汇期日","汇期日","2021.09.02","2021.09.02","据号码","131030500002120200902715798837","131030500002120200902715798837","131030500002120200902715798837","131030500002120200902715798837","131030500002120200902715798837","131030500002120200902715798837"],[""],["出票人","全","全","苏州金建筑装饰份有限公司","苏州金建筑装饰份有限公司","苏州金建筑装饰份有限公司","苏州金建筑装饰份有限公司","收票人","全","苏州集材料有限公司","苏州集材料有限公司"],["出票人","账号","账号","89030155100000334","89030155100000334","89030155100000334","89030155100000334","收票人","账号","8112001013700462090","8112001013700462090"],["出票人","开户银行","开户银行","上东发展银行苏州高新技术产业开发区支行","上东发展银行苏州高新技术产业开发区支行","上东发展银行苏州高新技术产业开发区支行","上东发展银行苏州高新技术产业开发区支行","收票人","开户银行","中信行股份有限公司苏州分行营业部","中信行股份有限公司苏州分行营业部"],["金额","金额","金额","人民币大写","人民币大写","人民币大写","人民币大写","叁万元整","叁万元整","300,000.00","300,000.00"],["承人信息","全","全","发银行苏州技术产业开发区支行","发银行苏州技术产业开发区支行","发银行苏州技术产业开发区支行","发银行苏州技术产业开发区支行","账号","账号","0","0"],["承人信息","开户行名称","开户行名称","上东发展银行苏州高新技术产业开发区支行","上东发展银行苏州高新技术产业开发区支行","上东发展银行苏州高新技术产业开发区支行","上东发展银行苏州高新技术产业开发区支行","开户行行号","开户行行号","310305000021","310305000021"],["交易合同号","交易合同号","交易合同号","","","","","承兑信息","出人承","本汇票请以兑,无条件付款","本汇票请以兑,无条件付款"],["转让","转让","转让","可以转让","可以转让","可以转让","可以转让","承兑信息","承兑人承诺","本汇已经承期无条件付款","本汇已经承期无条件付款"],["转让","转让","转让","可以转让","可以转让","可以转让","可以转让","承兑信息","承日期"],["承兑信息","承兑信息","承兑信息","人名称","人名称","人名称","","保证人地址","","保人日期"],["评价信息出人、承兑人自己记载,仅供参考","评价信息出人、承兑人自己记载,仅供参考","评价信息出人、承兑人自己记载,仅供参考","出人","出人","出人","评级体:信用等级:评级日:","评级体:信用等级:评级日:","评级体:信用等级:评级日:","评级体:信用等级:评级日:","评级体:信用等级:评级日:"],["评价信息出人、承兑人自己记载,仅供参考","评价信息出人、承兑人自己记载,仅供参考","评价信息出人、承兑人自己记载,仅供参考","承兑人","承兑人","承兑人","评级体:信用等级:评日:","评级体:信用等级:评日:","评级体:信用等级:评日:","评级体:信用等级:评日:","评级体:信用等级:评日:"],[""]],"node_type":"table","parent":1018,"children":[],"para_type":"table","pageno":68,"layout_index":1,"box":[107,97,379,226]}
- {"node_id":1020,"text":"电子银行承兑汇票","node_type":"text","parent":1018,"children":[],"para_type":"text","pageno":68,"layout_index":2,"box":[269,354,57,7]}
- {"node_id":1021,"text":[["出日期","出日期","2020-11.04","2020-11.04","态","背书已签","背书已签","背书已签","背书已签","背书已签"],["汇期日","汇期日","2021.11.04","2021.11.04","号码","130230503243220201104763114407","130230503243220201104763114407","130230503243220201104763114407","130230503243220201104763114407","130230503243220201104763114407"],[""],["出票人","全称","全称","苏州金螳螂建筑装股份有限公司","苏州金螳螂建筑装股份有限公司","苏州金螳螂建筑装股份有限公司","收票人","","上海掉琪建材科技有限公司","上海掉琪建材科技有限公司"],["出票人","账号","账号","7324310182400004448","7324310182400004448","7324310182400004448","收票人","账号","03410100040019001","03410100040019001"],["出票人","开户银行","开户银行","中信银行苏州城中支行","中信银行苏州城中支行","中信银行苏州城中支行","收票人","开户银行","中国农业银行股份有限公司上海鲁汇支行","中国农业银行股份有限公司上海鲁汇支行"],["金额","金额","金额","人民币大写","人民币大写","人民币大写","伍拾万元整","伍拾万元整","500,000.00","500,000.00"],["承兑人信息","全称","全称","中信银行股份有限公司苏州分行账务中心","中信银行股份有限公司苏州分行账务中心","中信银行股份有限公司苏州分行账务中心","账号","账号","0","0"],["承兑人信息","开户行名称","开户行名称","中信银行股份有限公司苏州分行账务中心","中信银行股份有限公司苏州分行账务中心","中信银行股份有限公司苏州分行账务中心","开户行行号","开户行行号","302305035302","302305035302"],["交易合号","交易合号","交易合号","","","","承兑信息","出人承诺","本汇请予以承兑,到期无条件付款","本汇请予以承兑,到期无条件付款"],["能转让","能转让","能转让","可以转让","可以转让","可以转让","承兑信息","承兑人承诺","本汇票已经承兑,到期无条件付款","本汇票已经承兑,到期无条件付款"],["能转让","能转让","能转让","可以转让","可以转让","可以转让","承兑信息","承兑日期"],["承兑保证信息","承兑保证信息","承兑保证信息","保证人名称","保证人名称","","保证人地址","","保证人日期"],["评价信息出人、承兑人自己记载,仅供参考","评价信息出人、承兑人自己记载,仅供参考","评价信息出人、承兑人自己记载,仅供参考","出票人","出票人","评级主体:信用等级:评级期日","评级主体:信用等级:评级期日","评级主体:信用等级:评级期日","评级主体:信用等级:评级期日","评级主体:信用等级:评级期日"],["评价信息出人、承兑人自己记载,仅供参考","评价信息出人、承兑人自己记载,仅供参考","评价信息出人、承兑人自己记载,仅供参考","承兑人","承兑人","级主体:信用等级:级期日:","级主体:信用等级:级期日:","级主体:信用等级:级期日:","级主体:信用等级:级期日:","级主体:信用等级:级期日:"],[""]],"node_type":"table","parent":1018,"children":[],"para_type":"table","pageno":68,"layout_index":3,"box":[107,399,379,232]}
- {"node_id":1022,"text":"69","node_type":"head_tail","parent":1018,"children":[],"para_type":"head_tail","pageno":68,"layout_index":4,"box":[291,776,11,10]}
- {"node_id":1023,"text":"中国农业银行","node_type":"text","parent":1018,"children":[],"para_type":"text","pageno":69,"layout_index":0,"box":[120,65,68,10]}
- {"node_id":1024,"text":"网上银行电子回单","node_type":"text","parent":1018,"children":[],"para_type":"text","pageno":69,"layout_index":1,"box":[238,66,72,9]}
- {"node_id":1025,"text":"客户收付款入账通知","node_type":"text","parent":1018,"children":[],"para_type":"text","pageno":69,"layout_index":2,"box":[244,77,60,7]}
- {"node_id":1026,"text":[["回单编号:09004601848471670501第2次打印","回单编号:09004601848471670501第2次打印","回单编号:09004601848471670501第2次打印","回单编号:09004601848471670501第2次打印","回单编号:09004601848471670501第2次打印","回单编号:09004601848471670501第2次打印"],["付款方","账号","325603000018170041318","账号","账号","03410100040019001"],["付款方","账号","325603000018170041318","账号","账号","03410100040019001"],["付款方","户","苏州金螳螂建筑装饰股份有限公司","收款方","户名","上海绰琪新型建材科技有限公司"],["付款方","开户行","交通银行苏州分行","收款方","开户行","中国农业银行股份有限公司上海鲁汇支行"],["付款方","开户行","交通银行苏州分行","收款方","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","150000.00","金额(大写)","金额(大写)","壹拾伍万元整"],["币种","币种","人民币","交易渠道","交易渠道","BEPS "],["摘要","摘要","转账存款","凭证号","凭证号","09032550100000550"],["交易时间","交易时间","2020-11-1916:29:31","会计日期","会计日期","20201119"],["附言","附言","0111105696>>菏泽市市民文化中心中内部成员单位账号:户名:","0111105696>>菏泽市市民文化中心中内部成员单位账号:户名:","0111105696>>菏泽市市民文化中心中内部成员单位账号:户名:","0111105696>>菏泽市市民文化中心中内部成员单位账号:户名:"],[""]],"node_type":"table","parent":1018,"children":[],"para_type":"table","pageno":69,"layout_index":3,"box":[99,87,379,122]}
- {"node_id":1027,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":1018,"children":[],"para_type":"text","pageno":69,"layout_index":4,"box":[104,216,174,6]}
- {"node_id":1028,"text":"打印日期:2022-08-28","node_type":"text","parent":1018,"children":[],"para_type":"text","pageno":69,"layout_index":5,"box":[396,216,60,6]}
- {"node_id":1029,"text":"中国农业银行","node_type":"text","parent":1018,"children":[],"para_type":"text","pageno":69,"layout_index":6,"box":[114,276,69,10]}
- {"node_id":1030,"text":"网上银行电子回单","node_type":"text","parent":1018,"children":[],"para_type":"text","pageno":69,"layout_index":7,"box":[234,277,75,9]}
- {"node_id":1031,"text":"客户收付款入账通知","node_type":"text","parent":1018,"children":[],"para_type":"text","pageno":69,"layout_index":8,"box":[240,288,63,7]}
- {"node_id":1032,"text":[["回单编号:09006728355131841363第1次打印","回单编号:09006728355131841363第1次打印","回单编号:09006728355131841363第1次打印","回单编号:09006728355131841363第1次打印","回单编号:09006728355131841363第1次打印"],["付款方","账号","325603000018170041318","账号","03410100040019001"],["付款方","账号","325603000018170041318","账号","03410100040019001"],["付款方","户名","苏州金螳螂建筑装饰股份有限公司","收款方户名","上海绰琪新型建材科技有限公司"],["付款方","开户行","交通银行苏州分行","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","160000.00","金额(大写)","壹拾陆万元整"],["币种","币种","人民币","交易渠道","BEPS "],["摘要","摘要","转账存款","凭证号","09032550100000550"],["交易时间","交易时间","2021-02-1018:20:41","会计日期","20210210"],["附言","附言","210210004028>>菏泽市市民文化中心中内部成员单位账号:户名:","210210004028>>菏泽市市民文化中心中内部成员单位账号:户名:","210210004028>>菏泽市市民文化中心中内部成员单位账号:户名:"],[""]],"node_type":"table","parent":1018,"children":[],"para_type":"table","pageno":69,"layout_index":9,"box":[92,299,390,126]}
- {"node_id":1033,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":1018,"children":[],"para_type":"text","pageno":69,"layout_index":10,"box":[96,431,181,7]}
- {"node_id":1034,"text":"打印日期:2022-08-28","node_type":"text","parent":1018,"children":[],"para_type":"text","pageno":69,"layout_index":11,"box":[397,431,62,7]}
- {"node_id":1035,"text":"中国农业银行","node_type":"text","parent":1018,"children":[],"para_type":"text","pageno":69,"layout_index":12,"box":[122,500,71,11]}
- {"node_id":1036,"text":"网上银行电子回单","node_type":"text","parent":1018,"children":[],"para_type":"text","pageno":69,"layout_index":13,"box":[244,502,76,10]}
- {"node_id":1037,"text":"客户收付款入账通知","node_type":"text","parent":1018,"children":[],"para_type":"text","pageno":69,"layout_index":14,"box":[250,514,63,7]}
- {"node_id":1038,"text":[["回单编号:09002093020101051478第2次打印","回单编号:09002093020101051478第2次打印","回单编号:09002093020101051478第2次打印","回单编号:09002093020101051478第2次打印","回单编号:09002093020101051478第2次打印"],["付款方","账号325603000018170041318","账号325603000018170041318","账号","03410100040019001"],["付款方","账号325603000018170041318","账号325603000018170041318","账号","03410100040019001"],["付款方","户名苏州金螳螂建筑装饰股份有限公司","户名苏州金螳螂建筑装饰股份有限公司","收款方户名","上海绰琪新型建材科技有限公司"],["付款方","开户行交通银行苏州分行","开户行交通银行苏州分行","开户行","中国农业银行股份有限公司上海鲁汇支行"],["付款方","开户行交通银行苏州分行","开户行交通银行苏州分行","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","400000.00","金额(大写)","肆拾万元整"],["币种","币种","人民币","交易渠道","BEPS "],["摘要","摘要","转账存款","凭证号","09032550100000550"],["摘要","摘要","转账存款","凭证号","09032550100000550"],["交易时间","交易时间","2022-01-3009:03:01","会计日期","20220130"],["附言","附言","220130000538>>菏泽市市民文化中心中内部成员单位账号:户名:","220130000538>>菏泽市市民文化中心中内部成员单位账号:户名:","220130000538>>菏泽市市民文化中心中内部成员单位账号:户名:"],[""]],"node_type":"table","parent":1018,"children":[],"para_type":"table","pageno":69,"layout_index":15,"box":[101,524,391,126]}
- {"node_id":1039,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":1018,"children":[],"para_type":"text","pageno":69,"layout_index":16,"box":[106,657,182,6]}
- {"node_id":1040,"text":"打印日期:2022-08-28","node_type":"text","parent":1018,"children":[],"para_type":"text","pageno":69,"layout_index":17,"box":[408,657,61,6]}
- {"node_id":1041,"text":"70","node_type":"head_tail","parent":1018,"children":[],"para_type":"head_tail","pageno":69,"layout_index":18,"box":[291,777,11,9]}
- {"node_id":1042,"text":"电子银行承兑汇票","node_type":"title","parent":0,"children":[1043,1044,1045,1046],"para_type":"title_1","pageno":70,"layout_index":0,"box":[278,55,55,7]}
- {"node_id":1043,"text":[["出日期","出日期","2020-11-09","2020-11-09","状态","背书已签收","背书已签收","背书已签收","背书已签收","背书已签收","背书已签收"],["汇到期日","汇到期日","202109-02","202109-02","据号码","131030500002120201109765484636","131030500002120201109765484636","131030500002120201109765484636","131030500002120201109765484636","131030500002120201109765484636","131030500002120201109765484636"],["出票人","全","全","苏州金螳建筑装饰股份有限公司","苏州金螳建筑装饰股份有限公司","苏州金螳建筑装饰股份有限公司","苏州金螳建筑装饰股份有限公司","收人","","苏州集材料有限公司","苏州集材料有限公司"],["出票人","账号","账号","89030155100000334","89030155100000334","89030155100000334","89030155100000334","收人","账号","8112001013700462090","8112001013700462090"],["出票人","开户银行","开户银行","上东发展银行苏州高新技术产业开发区支行","上东发展银行苏州高新技术产业开发区支行","上东发展银行苏州高新技术产业开发区支行","上东发展银行苏州高新技术产业开发区支行","收人","开户银行","中信银行股份有限公司苏州分行营业部","中信银行股份有限公司苏州分行营业部"],["金额","金额","金额","人民币(大写","人民币(大写","人民币(大写","人民币(大写","壹万元整","壹万元整","100,000.00","100,000.00"],["承人信息","全","全","发银行苏州高新技术产业开发区支行","发银行苏州高新技术产业开发区支行","发银行苏州高新技术产业开发区支行","发银行苏州高新技术产业开发区支行","账号","账号","0","0"],["承人信息","开户行名称","开户行名称","上东发展银行苏州高新技术产业开发区支行","上东发展银行苏州高新技术产业开发区支行","上东发展银行苏州高新技术产业开发区支行","上东发展银行苏州高新技术产业开发区支行","开户行行号","开户行行号","310305000021","310305000021"],["交易合同号","交易合同号","交易合同号","","","","","承兑信息","出人承诺","本汇以兑,期无条件付款","本汇以兑,期无条件付款"],["能杏转让","能杏转让","能杏转让","可以转让","可以转让","可以转让","可以转让","承兑信息","承兑人承","本汇已经承兑,到期无条件付款","本汇已经承兑,到期无条件付款"],["能杏转让","能杏转让","能杏转让","可以转让","可以转让","可以转让","可以转让","承兑信息","承兑日期"],["承保证信息","承保证信息","承保证信息","保人名称","保人名称","保人名称","","保证人地址","","保人日期"],["评价信息由出人、承兑人自己载,仅供参考","评价信息由出人、承兑人自己载,仅供参考","评价信息由出人、承兑人自己载,仅供参考","出票人","出票人","出票人","评级体:信用等级:评级期:","评级体:信用等级:评级期:","评级体:信用等级:评级期:","评级体:信用等级:评级期:","评级体:信用等级:评级期:"],["评价信息由出人、承兑人自己载,仅供参考","评价信息由出人、承兑人自己载,仅供参考","评价信息由出人、承兑人自己载,仅供参考","承兑人","承兑人","承兑人","评级体:信用等级:级:","评级体:信用等级:级:","评级体:信用等级:级:","评级体:信用等级:级:","评级体:信用等级:级:"],[""]],"node_type":"table","parent":1042,"children":[],"para_type":"table","pageno":70,"layout_index":1,"box":[116,100,378,226]}
- {"node_id":1044,"text":"电子银行承兑汇票","node_type":"text","parent":1042,"children":[],"para_type":"text","pageno":70,"layout_index":2,"box":[262,352,58,7]}
- {"node_id":1045,"text":[["出票日期","出票日期","2021-02-22","2021-02-22","票据状态","背书已收","背书已收","背书已收","背书已收","背书已收"],["汇到期日","汇到期日","2022-02-22","2022-02-22","票据号码","130830500802520210222861151255","130830500802520210222861151255","130830500802520210222861151255","130830500802520210222861151255","130830500802520210222861151255"],["出票人","全称","全称","苏州金螳螂建筑装饰股份有限公司","苏州金螳螂建筑装饰股份有限公司","苏州金螳螂建筑装饰股份有限公司","收票人","全称","苏州集加材料有限公司","苏州集加材料有限公司"],["出票人","账号","账号","512900041510701","512900041510701","512900041510701","收票人","账号","8112001013700462090","8112001013700462090"],["出票人","开户银行","开户银行","招商银行股份有限公司苏州中新支行","招商银行股份有限公司苏州中新支行","招商银行股份有限公司苏州中新支行","收票人","开户银行","中信银行股份有限公司苏州分行营业部","中信银行股份有限公司苏州分行营业部"],["票金额","票金额","票金额","人民币(大写","人民币(大写","人民币(大写","贰拾万元整","贰拾万元整","200,000.00","200,000.00"],["承兑人信息","全称","全称","招商银行股份有限公司苏州中新支行","招商银行股份有限公司苏州中新支行","招商银行股份有限公司苏州中新支行","账号","账号","0","0"],["承兑人信息","开户行名称","开户行名称","招商银行股份有限公司苏州中新支行","招商银行股份有限公司苏州中新支行","招商银行股份有限公司苏州中新支行","开户行行号","开户行行号","308305008025","308305008025"],["交易合同号","交易合同号","交易合同号","","","","承兑信息","出票人承诺","本汇票请予以承兑,到期无条件付款","本汇票请予以承兑,到期无条件付款"],["能西转让","能西转让","能西转让","可以转让","可以转让","可以转让","承兑信息","承兑人承诺","本汇票已经承,到期条件付款","本汇票已经承,到期条件付款"],["能西转让","能西转让","能西转让","可以转让","可以转让","可以转让","承兑信息","承兑日期"],["承兑保证信息","承兑保证信息","承兑保证信息","保证人名称","保证人名称","","保证人地址","","保证人日期"],["评价信息出人,承兑人自己记载,仅供参考","评价信息出人,承兑人自己记载,仅供参考","评价信息出人,承兑人自己记载,仅供参考","出票人","出票人","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:"],["评价信息出人,承兑人自己记载,仅供参考","评价信息出人,承兑人自己记载,仅供参考","评价信息出人,承兑人自己记载,仅供参考","承兑人","承兑人","评级主体:信用等级:详级到期日:","评级主体:信用等级:详级到期日:","评级主体:信用等级:详级到期日:","评级主体:信用等级:详级到期日:","评级主体:信用等级:详级到期日:"],[""]],"node_type":"table","parent":1042,"children":[],"para_type":"table","pageno":70,"layout_index":3,"box":[104,399,376,240]}
- {"node_id":1046,"text":"71","node_type":"head_tail","parent":1042,"children":[],"para_type":"head_tail","pageno":70,"layout_index":4,"box":[291,777,10,9]}
- {"node_id":1047,"text":"电子银行承兑汇票","node_type":"title","parent":0,"children":[1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064],"para_type":"title_1","pageno":71,"layout_index":0,"box":[266,58,58,7]}
- {"node_id":1048,"text":[["出票日期","2021-02-22","票据状态","背书已收"],[""]],"node_type":"table","parent":1047,"children":[],"para_type":"table","pageno":71,"layout_index":1,"box":[106,105,376,16]}
- {"node_id":1049,"text":"汇到期日","node_type":"text","parent":1047,"children":[],"para_type":"text","pageno":71,"layout_index":2,"box":[126,126,27,7]}
- {"node_id":1050,"text":"2022-02-22","node_type":"text","parent":1047,"children":[],"para_type":"text","pageno":71,"layout_index":3,"box":[193,126,29,6]}
- {"node_id":1051,"text":"票据号码","node_type":"text","parent":1047,"children":[],"para_type":"text","pageno":71,"layout_index":4,"box":[259,126,23,7]}
- {"node_id":1052,"text":"130830500802520210222861151183","node_type":"text","parent":1047,"children":[],"para_type":"text","pageno":71,"layout_index":5,"box":[345,126,91,6]}
- {"node_id":1053,"text":[["出票人","全称","苏州金螳螂建筑装饰股份有限公司","苏州金螳螂建筑装饰股份有限公司","收票人","全称","苏州集加材料有限公司","苏州集加材料有限公司"],["出票人","账号","512900041510701","512900041510701","收票人","账号","8112001013700462090","8112001013700462090"],["出票人","开户银行","招商银行股份有限公司苏州中新支行","招商银行股份有限公司苏州中新支行","收票人","开户银行","中信银行股份有限公司苏州分行营业部","中信银行股份有限公司苏州分行营业部"],["票金额","票金额","人民币大写","人民币大写","贰拾万元整","贰拾万元整","200,000.00","200,000.00"],["承兑人信息","全称","招商银行股份有限公司苏州中新支行","招商银行股份有限公司苏州中新支行","账号","账号","0","0"],["承兑人信息","开户行名称","招商银行股份有限公司苏州中新支行","招商银行股份有限公司苏州中新支行","开户行行号","开户行行号","308305008025","308305008025"],["交易合号","交易合号","","","承兑信息","出人承诺","本汇请予以承兑,到期无条件付款","本汇请予以承兑,到期无条件付款"],["能转让","能转让","可以以转让","可以以转让","承兑信息","承兑人承诺","本汇票已经承兑,到期无条件付款","本汇票已经承兑,到期无条件付款"],["能转让","能转让","可以以转让","可以以转让","承兑信息","承兑日期"],["承兑保证信息","承兑保证信息","保证人名称","","保证人地址","","保证人日期"],["评价信息由出票人、承兑人自己记载,仅供参考)","评价信息由出票人、承兑人自己记载,仅供参考)","出票人","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:"],["评价信息由出票人、承兑人自己记载,仅供参考)","评价信息由出票人、承兑人自己记载,仅供参考)","承兑人","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:"],[""]],"node_type":"table","parent":1047,"children":[],"para_type":"table","pageno":71,"layout_index":6,"box":[106,145,376,200]}
- {"node_id":1054,"text":"电子银行承兑汇票","node_type":"text","parent":1047,"children":[],"para_type":"text","pageno":71,"layout_index":7,"box":[267,401,55,6]}
- {"node_id":1055,"text":"出日期","node_type":"text","parent":1047,"children":[],"para_type":"text","pageno":71,"layout_index":8,"box":[128,449,21,7]}
- {"node_id":1056,"text":"2022.01-07","node_type":"text","parent":1047,"children":[],"para_type":"text","pageno":71,"layout_index":9,"box":[192,449,28,6]}
- {"node_id":1057,"text":"据状态","node_type":"text","parent":1047,"children":[],"para_type":"text","pageno":71,"layout_index":10,"box":[259,450,19,6]}
- {"node_id":1058,"text":"育已签收","node_type":"text","parent":1047,"children":[],"para_type":"text","pageno":71,"layout_index":11,"box":[378,449,24,7]}
- {"node_id":1059,"text":"汇期日","node_type":"text","parent":1047,"children":[],"para_type":"text","pageno":71,"layout_index":12,"box":[125,464,26,6]}
- {"node_id":1060,"text":"2022.0904","node_type":"text","parent":1047,"children":[],"para_type":"text","pageno":71,"layout_index":13,"box":[192,464,28,6]}
- {"node_id":1061,"text":"据号码","node_type":"text","parent":1047,"children":[],"para_type":"text","pageno":71,"layout_index":14,"box":[258,464,20,6]}
- {"node_id":1062,"text":"131030500002120220107127939118","node_type":"text","parent":1047,"children":[],"para_type":"text","pageno":71,"layout_index":15,"box":[348,465,84,4]}
- {"node_id":1063,"text":[["出人","","","苏州金螳幕墙有限公司","苏州金螳幕墙有限公司","苏州金螳幕墙有限公司","苏州金螳幕墙有限公司","收票人","全","安百务外包有限公司","安百务外包有限公司"],["出人","账号","账号","89030078801700000514","89030078801700000514","89030078801700000514","89030078801700000514","收票人","账号","10540801040017509","10540801040017509"],["出人","开户银行","开户银行","上海东发展行苏州高新技术产业开发区支行","上海东发展行苏州高新技术产业开发区支行","上海东发展行苏州高新技术产业开发区支行","上海东发展行苏州高新技术产业开发区支行","收票人","开户银行","中国农业银行股份有限公司苏州湖支行","中国农业银行股份有限公司苏州湖支行"],["金额","金额","金额","人民币(大写","人民币(大写","人民币(大写","人民币(大写","贰万元整","贰万元整","200,000.00","200,000.00"],["承兑人信息","全","全","发银行苏州高新技术产业开发区支行","发银行苏州高新技术产业开发区支行","发银行苏州高新技术产业开发区支行","发银行苏州高新技术产业开发区支行","账号","账号","0","0"],["承兑人信息","开户行名称","开户行名称","上海浦东发展银行苏州高新技术产业开发区支行","上海浦东发展银行苏州高新技术产业开发区支行","上海浦东发展银行苏州高新技术产业开发区支行","上海浦东发展银行苏州高新技术产业开发区支行","开户行行号","开户行行号","310305000021","310305000021"],["交易合同号","交易合同号","交易合同号","","","","","承兑信息","出人承","本汇请以承兑,到期无条件付款","本汇请以承兑,到期无条件付款"],["能转让","能转让","能转让","让","让","让","让","承兑信息","承兑人","本汇已经承兑,到无条件付款","本汇已经承兑,到无条件付款"],["能转让","能转让","能转让","让","让","让","让","承兑信息","承日期"],["承兑保信息","承兑保信息","承兑保信息","人名称","人名称","人名称","","保人地址","","保人日期"],["评价信由出人承兑人自己记载,仅供参考)","评价信由出人承兑人自己记载,仅供参考)","评价信由出人承兑人自己记载,仅供参考)","出人","出人","出人","评级体:信用等级:评级到期日:","评级体:信用等级:评级到期日:","评级体:信用等级:评级到期日:","评级体:信用等级:评级到期日:","评级体:信用等级:评级到期日:"],["评价信由出人承兑人自己记载,仅供参考)","评价信由出人承兑人自己记载,仅供参考)","评价信由出人承兑人自己记载,仅供参考)","承兑人","承兑人","承兑人","评级体:信用等:评级到日:","评级体:信用等:评级到日:","评级体:信用等:评级到日:","评级体:信用等:评级到日:","评级体:信用等:评级到日:"],[""]],"node_type":"table","parent":1047,"children":[],"para_type":"table","pageno":71,"layout_index":16,"box":[106,482,376,185]}
- {"node_id":1064,"text":"72","node_type":"head_tail","parent":1047,"children":[],"para_type":"head_tail","pageno":71,"layout_index":17,"box":[291,777,12,9]}
- {"node_id":1065,"text":"电子银行承兑汇票","node_type":"title","parent":0,"children":[1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091],"para_type":"title_1","pageno":72,"layout_index":0,"box":[266,49,54,6]}
- {"node_id":1066,"text":[["出日期","出日期","2022.01-07","2022.01-07","据状态","育已签收","育已签收","育已签收","育已签收","育已签收","育已签收"],["汇期日","汇期日","2022.0904","2022.0904","据号码","131030500002120220107127939062","131030500002120220107127939062","131030500002120220107127939062","131030500002120220107127939062","131030500002120220107127939062","131030500002120220107127939062"],["出人","","","苏州金螳螂幕墙有限公司","苏州金螳螂幕墙有限公司","苏州金螳螂幕墙有限公司","苏州金螳螂幕墙有限公司","收人","全","安百佳服务外包有限公司","安百佳服务外包有限公司"],["出人","账号","账号","8900078801700000514","8900078801700000514","8900078801700000514","8900078801700000514","收人","账号","10540801040017509","10540801040017509"],["出人","开户银行","开户银行","上海东发展银行苏州高新技术产业开发区支行","上海东发展银行苏州高新技术产业开发区支行","上海东发展银行苏州高新技术产业开发区支行","上海东发展银行苏州高新技术产业开发区支行","收人","开户银行","中国农业银行股份有限公司苏州支行","中国农业银行股份有限公司苏州支行"],["据金额","据金额","据金额","人民币(大写","人民币(大写","人民币(大写","人民币(大写","贰万元整","贰万元整","200,000.00","200,000.00"],["承兑人信息","","","发银行苏州高技术产业开发区支行","发银行苏州高技术产业开发区支行","发银行苏州高技术产业开发区支行","发银行苏州高技术产业开发区支行","账号","账号","0","0"],["承兑人信息","开户行名称","开户行名称","上海东发展银行苏州高新技术产业开发区支行","上海东发展银行苏州高新技术产业开发区支行","上海东发展银行苏州高新技术产业开发区支行","上海东发展银行苏州高新技术产业开发区支行","开户行行号","开户行行号","310305000021","310305000021"],["交易合同号","交易合同号","交易合同号","","","","","承兑信息","出人承","本汇请以承兑,到期无条件付款","本汇请以承兑,到期无条件付款"],["能转让","能转让","能转让","可让","可让","可让","可让","承兑信息","人","本汇已经承兑,到无条件付款","本汇已经承兑,到无条件付款"],["能转让","能转让","能转让","可让","可让","可让","可让","承兑信息","承日期"],["承兑证信息","承兑证信息","承兑证信息","人名称","人名称","人名称","","保人地址","","保证人日期"],["评价信由出人承人自己记,仅供参考","评价信由出人承人自己记,仅供参考","评价信由出人承人自己记,仅供参考","出票人","出票人","出票人","评级体:信用等级:评级到日:","评级体:信用等级:评级到日:","评级体:信用等级:评级到日:","评级体:信用等级:评级到日:","评级体:信用等级:评级到日:"],["评价信由出人承人自己记,仅供参考","评价信由出人承人自己记,仅供参考","评价信由出人承人自己记,仅供参考","承兑人","承兑人","承兑人","评级体:信用等级:评级到期日:","评级体:信用等级:评级到期日:","评级体:信用等级:评级到期日:","评级体:信用等级:评级到期日:","评级体:信用等级:评级到期日:"],[""]],"node_type":"table","parent":1065,"children":[],"para_type":"table","pageno":72,"layout_index":1,"box":[105,92,378,222]}
- {"node_id":1067,"text":"电子银行承兑汇票","node_type":"text","parent":1065,"children":[],"para_type":"text","pageno":72,"layout_index":2,"box":[267,367,63,9]}
- {"node_id":1068,"text":[["出票日期","出票日期","2020-04-10","2020-04-10","票据状态","背书已签收","背书已签收","背书已签收","背书已签收","背书已签收"],["汇票到期日","汇票到期日","2021-02-28","2021-02-28","票据号码","130530502601720200410614548270","130530502601720200410614548270","130530502601720200410614548270","130530502601720200410614548270","130530502601720200410614548270"],["出票人","全称","全称","苏州金螂建筑装饰股份有限公司","苏州金螂建筑装饰股份有限公司","苏州金螂建筑装饰股份有限公司","收票人","全称","上海绰新建材科技有限公司","上海绰新建材科技有限公司"],["出票人","账号","账号","2601014180004698","2601014180004698","2601014180004698","收票人","账号","03410100040019001","03410100040019001"],["出票人","开户银行","开户银行","中国民生银行苏州分行营业部","中国民生银行苏州分行营业部","中国民生银行苏州分行营业部","收票人","开户银行","中国农业银行股份有限公司上海鲁汇支行","中国农业银行股份有限公司上海鲁汇支行"],["票据金额","票据金额","票据金额","人民币(大写)","人民币(大写)","人民币(大写)","叁拾万元整","叁拾万元整","300000.00","300000.00"],["承兑人信息","全称","全称","中国民生银行股份有限公司苏州分行","中国民生银行股份有限公司苏州分行","中国民生银行股份有限公司苏州分行","账号","账号","0","0"],["承兑人信息","开户行名称","开户行名称","中国民生银行股份有限公司苏州分行","中国民生银行股份有限公司苏州分行","中国民生银行股份有限公司苏州分行","开户行行号","开户行行号","305305026009","305305026009"],["交易合同号","交易合同号","交易合同号","","","","承兑信息","出票人承诺","本汇票请予以承兑,到期无条件付款","本汇票请予以承兑,到期无条件付款"],["能否转让","能否转让","能否转让","可以转让","可以转让","可以转让","承兑信息","承兑人承诺","本汇票已经承兑,到期无条件付款","本汇票已经承兑,到期无条件付款"],["能否转让","能否转让","能否转让","可以转让","可以转让","可以转让","承兑信息","承兑日期"],["承兑保证信息","承兑保证信息","承兑保证信息","保证人名称","保证人名称","","保证人地址","","保证人日期"],["评价信息由出票人,承兑人自己记载,仅供参考","评价信息由出票人,承兑人自己记载,仅供参考","评价信息由出票人,承兑人自己记载,仅供参考","出票人","出票人","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:"],["评价信息由出票人,承兑人自己记载,仅供参考","评价信息由出票人,承兑人自己记载,仅供参考","评价信息由出票人,承兑人自己记载,仅供参考","承兑人","承兑人","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:"],[""]],"node_type":"table","parent":1065,"children":[],"para_type":"table","pageno":72,"layout_index":3,"box":[98,417,401,252]}
- {"node_id":1069,"text":"73","node_type":"head_tail","parent":1065,"children":[],"para_type":"head_tail","pageno":72,"layout_index":4,"box":[291,777,11,9]}
- {"node_id":1070,"text":"中国农业银行","node_type":"text","parent":1065,"children":[],"para_type":"text","pageno":73,"layout_index":0,"box":[124,65,70,11]}
- {"node_id":1071,"text":"网上银行电子回单","node_type":"text","parent":1065,"children":[],"para_type":"text","pageno":73,"layout_index":1,"box":[247,67,74,9]}
- {"node_id":1072,"text":"WRKILTLRAL BAYKOUHNA ","node_type":"text","parent":1065,"children":[],"para_type":"text","pageno":73,"layout_index":2,"box":[127,80,64,3]}
- {"node_id":1073,"text":"客户收付款入账通知","node_type":"text","parent":1065,"children":[],"para_type":"text","pageno":73,"layout_index":3,"box":[252,78,63,7]}
- {"node_id":1074,"text":[["回单编号:04640430339184726008第2次打印","回单编号:04640430339184726008第2次打印","回单编号:04640430339184726008第2次打印","回单编号:04640430339184726008第2次打印","回单编号:04640430339184726008第2次打印"],["付款方","账号","325603000018170041318","账号03410100040019001","账号03410100040019001"],["付款方","户名","苏州金螳螂建筑装饰股份有限公司","收款方户名上海绰琪新型建材科技有限公司","收款方户名上海绰琪新型建材科技有限公司"],["付款方","开户行","交通银行苏州分行","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","200000.00","金额(大写)贰拾万元整","金额(大写)贰拾万元整"],["币种","币种","人民币","交易渠道BEPS ","交易渠道BEPS "],["摘要","摘要","转账存款","凭证号09032550100000550","凭证号09032550100000550"],["交易时间","交易时间","2020-04-07144437","会计日期20200407","会计日期20200407"],["附言","附言","0041101311>>【菏泽市民文化中心】内部成员单位账号:户名:","0041101311>>【菏泽市民文化中心】内部成员单位账号:户名:","0041101311>>【菏泽市民文化中心】内部成员单位账号:户名:"],[""]],"node_type":"table","parent":1065,"children":[],"para_type":"table","pageno":73,"layout_index":4,"box":[103,89,392,126]}
- {"node_id":1075,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":1065,"children":[],"para_type":"text","pageno":73,"layout_index":5,"box":[108,222,182,6]}
- {"node_id":1076,"text":"打印日期:2022-08-28","node_type":"text","parent":1065,"children":[],"para_type":"text","pageno":73,"layout_index":6,"box":[410,222,62,6]}
- {"node_id":1077,"text":"中国农业银行","node_type":"text","parent":1065,"children":[],"para_type":"text","pageno":73,"layout_index":7,"box":[116,264,72,12]}
- {"node_id":1078,"text":"网上银行电子回单","node_type":"text","parent":1065,"children":[],"para_type":"text","pageno":73,"layout_index":8,"box":[241,266,76,10]}
- {"node_id":1079,"text":"MGIKLLTAL BANK OF CNA ","node_type":"text","parent":1065,"children":[],"para_type":"text","pageno":73,"layout_index":9,"box":[118,280,70,3]}
- {"node_id":1080,"text":"客户收付款入账通知","node_type":"text","parent":1065,"children":[],"para_type":"text","pageno":73,"layout_index":10,"box":[247,278,64,7]}
- {"node_id":1081,"text":[["回单编号:04990451491610677055第1次打印","回单编号:04990451491610677055第1次打印","回单编号:04990451491610677055第1次打印","回单编号:04990451491610677055第1次打印"],["付款方","账号","325603000018170041318","账号03410100040019001"],["付款方","账号","325603000018170041318","账号03410100040019001"],["付款方","户名","苏州金螳螂建筑装饰股份有限公司","收款方户名上海绰琪新型建材科技有限公司"],["付款方","开户行","交通银行苏州分行","开户行中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","491060.00","金额(大写)肆拾玖万壹仟零陆拾元整"],["币种","币种","人民币","交易渠道BEPS "],["摘要","摘要","转账存款","凭证号09032550100000550"],["交易时间","交易时间","2020-05-1215:5236","会计日期20200512"],["附言","附言","0051101728>>【菏泽市民文化中心】内部成员单位账号:户名:","0051101728>>【菏泽市民文化中心】内部成员单位账号:户名:"],[""]],"node_type":"table","parent":1065,"children":[],"para_type":"table","pageno":73,"layout_index":11,"box":[94,289,400,129]}
- {"node_id":1082,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":1065,"children":[],"para_type":"text","pageno":73,"layout_index":12,"box":[98,426,187,6]}
- {"node_id":1083,"text":"打印日期:2022-08-28","node_type":"text","parent":1065,"children":[],"para_type":"text","pageno":73,"layout_index":13,"box":[409,426,63,6]}
- {"node_id":1084,"text":"中国农业银行","node_type":"text","parent":1065,"children":[],"para_type":"text","pageno":73,"layout_index":14,"box":[117,466,70,10]}
- {"node_id":1085,"text":"网上银行电子回单","node_type":"text","parent":1065,"children":[],"para_type":"text","pageno":73,"layout_index":15,"box":[240,468,75,9]}
- {"node_id":1086,"text":"UGRUITIRAL BASK OOINA ","node_type":"text","parent":1065,"children":[],"para_type":"text","pageno":73,"layout_index":16,"box":[120,481,69,2]}
- {"node_id":1087,"text":"客户收付款入账通知","node_type":"text","parent":1065,"children":[],"para_type":"text","pageno":73,"layout_index":17,"box":[246,479,64,7]}
- {"node_id":1088,"text":[["回单编号:06490488714900710367第1次打印","回单编号:06490488714900710367第1次打印","回单编号:06490488714900710367第1次打印","回单编号:06490488714900710367第1次打印","回单编号:06490488714900710367第1次打印"],["付款方","账号","325603000018170041318","账号03410100040019001","账号03410100040019001"],["付款方","户名","苏州金螳螂建筑装饰股份有限公司","收款方","户名上海绰琪新型建材科技有限公司"],["付款方","开户行","交通银行苏州分行","收款方","开户行中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","100000.00","金额(大写)壹拾万元整","金额(大写)壹拾万元整"],["币种","币种","人民币","交易渠道BEPS ","交易渠道BEPS "],["摘要","摘要","转账存款","凭证号09032550100000550","凭证号09032550100000550"],["交易时间","交易时间","2020-10-0915:00:37","会计日期20201009","会计日期20201009"],["附言","附言","0101100319>>【菏泽市民文化中心】内部成员单位账号户名:","0101100319>>【菏泽市民文化中心】内部成员单位账号户名:","0101100319>>【菏泽市民文化中心】内部成员单位账号户名:"],[""]],"node_type":"table","parent":1065,"children":[],"para_type":"table","pageno":73,"layout_index":18,"box":[94,490,397,128]}
- {"node_id":1089,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":1065,"children":[],"para_type":"text","pageno":73,"layout_index":19,"box":[100,624,183,6]}
- {"node_id":1090,"text":"打印日期:2022-08-28","node_type":"text","parent":1065,"children":[],"para_type":"text","pageno":73,"layout_index":20,"box":[406,624,62,6]}
- {"node_id":1091,"text":"74","node_type":"head_tail","parent":1065,"children":[],"para_type":"head_tail","pageno":73,"layout_index":21,"box":[291,777,11,9]}
- {"node_id":1092,"text":"电子银行承兑汇票","node_type":"title","parent":0,"children":[1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131],"para_type":"title_1","pageno":74,"layout_index":0,"box":[269,52,59,7]}
- {"node_id":1093,"text":"出票日期","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":74,"layout_index":1,"box":[123,105,23,6]}
- {"node_id":1094,"text":"2020-04-17","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":74,"layout_index":2,"box":[190,104,31,7]}
- {"node_id":1095,"text":"票据状态","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":74,"layout_index":3,"box":[260,105,23,6]}
- {"node_id":1096,"text":"背书已签收","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":74,"layout_index":4,"box":[385,105,27,6]}
- {"node_id":1097,"text":"汇票到期日","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":74,"layout_index":5,"box":[120,122,28,7]}
- {"node_id":1098,"text":"2021-04-17","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":74,"layout_index":6,"box":[190,122,31,6]}
- {"node_id":1099,"text":"票据号码","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":74,"layout_index":7,"box":[260,122,22,7]}
- {"node_id":1100,"text":"110230501706320200417619425719","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":74,"layout_index":8,"box":[353,122,92,6]}
- {"node_id":1101,"text":[["全称","苏州金螳螂建筑装饰股份有限公司","","","","全称","苏州集加材料有限公司"],["出票人","","","账号","1102020619000294215","收票人","","","账号","8112001013700462090"],["开户银行","","","","","开户银行","中信银行股份有限公司苏州分行营业部"],["票据金额","","人民币(大写)","","","","","30000000"],["全称","中国工商银行股份有限公司苏州青路支行","","","","","0"],["承兑人信息"],["开户行名称","中国工商银行股份有限公司苏州路支行","","","","","102305017063"],["交易合同号","","","","","","出票人承诺","本汇票请子以承兑,到期无条件付款"],["承兑信息","","","承兑人承诺","本汇票已经承兑,到期无条件付款"],["能否转让","","可以转让"],["承兑日期"],["承兑保证信息","","保证人名称","保证人地址","","","","保证人日期"],["出票人","","","","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:"],["评价信息由出票人、承兑人自己记载,仅供参考)","","","评价信息由出票人、承兑人自己记载,仅供参考)"],["承兑人","","","","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:"],[""]],"node_type":"table","parent":1092,"children":[],"para_type":"table","pageno":74,"layout_index":9,"box":[105,146,388,192]}
- {"node_id":1102,"text":"叁拾万元整","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":74,"layout_index":10,"box":[350,197,27,6]}
- {"node_id":1103,"text":"账号","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":74,"layout_index":11,"box":[358,213,13,6]}
- {"node_id":1104,"text":"开户行行号","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":74,"layout_index":12,"box":[350,230,27,7]}
- {"node_id":1105,"text":"电子银行承兑汇票","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":74,"layout_index":13,"box":[264,372,62,9]}
- {"node_id":1106,"text":[["出票日期","2021-09-30","票据状态","买断式贴现已签收"],["汇票到期日","2022-09-25","票据号码","110330505477720210930044129229"],[""]],"node_type":"table","parent":1092,"children":[],"para_type":"table","pageno":74,"layout_index":14,"box":[117,426,327,24]}
- {"node_id":1107,"text":[["全称","金螂精装科技(苏州)有限公司","","","全称","苏州集加材料有限公司"],["出票人","","账号","10547701040013628","收票人","","账号","8112001013700462090"],["开户银行","中国农业银行股份有限公司苏州三元支行","","","开户银行","中信银行苏州分行营业部"],["票据金额","","人民币(大写)","","伍万元整","伍万元整","50.000.00"],["全称","中国农业银行股份有限公司苏州三元支行","","账号","账号","0"],["承兑人信息"],["开户行名称","中国农业银行股份有限公司苏州三元支行","","","","103305054777"],["交易合同号","","","","","出票人承诺","本汇票请子以承兑,到期无条件付款"],["承兑信息","","承兑人承诺","本汇票已经承兑,到期无条件付款"],["能否转让","","可以转让"],["承兑日期","2021-09-30"],["承兑保证信息","","保证人名称","保证人地址","","","保证人日期"],["出票人","","","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:"],["评价信息由出票人、承兑人自己记载,仅供参考","","评价信息由出票人、承兑人自己记载,仅供参考"],["承兑人","","","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:"],[""]],"node_type":"table","parent":1092,"children":[],"para_type":"table","pageno":74,"layout_index":15,"box":[103,468,387,198]}
- {"node_id":1108,"text":"开户行行号","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":74,"layout_index":16,"box":[349,555,28,6]}
- {"node_id":1109,"text":"75","node_type":"head_tail","parent":1092,"children":[],"para_type":"head_tail","pageno":74,"layout_index":17,"box":[291,776,11,10]}
- {"node_id":1110,"text":"中国农业银行","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":75,"layout_index":0,"box":[120,62,69,10]}
- {"node_id":1111,"text":"网上银行电子回单","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":75,"layout_index":1,"box":[240,64,74,9]}
- {"node_id":1112,"text":"URKILTKA BASK OONA ","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":75,"layout_index":2,"box":[122,77,65,2]}
- {"node_id":1113,"text":"客户收付款入账通知","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":75,"layout_index":3,"box":[246,75,62,7]}
- {"node_id":1114,"text":[["回单编号:06550470861947786182第1次打印","回单编号:06550470861947786182第1次打印","回单编号:06550470861947786182第1次打印","回单编号:06550470861947786182第1次打印","回单编号:06550470861947786182第1次打印"],["付款方","账号","325603000018170041318","账号03410100040019001","账号03410100040019001"],["付款方","户名","苏州金螳螂建筑装饰股份有限公司","收款方户名","上海绰琪新型建材科技有限公司"],["付款方","开户行","交通银行苏州分行","开户行中国农业银行股份有限公司上海鲁汇支行","开户行中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","50000.00","金额(大写)伍万元整","金额(大写)伍万元整"],["币种","币种","人民币","交易渠道BEPS ","交易渠道BEPS "],["摘要","摘要","转账存款","凭证号09032550100000550","凭证号09032550100000550"],["交易时间","交易时间","2020-10-1515:31:07","会计日期20201015","会计日期20201015"],["附言","附言","0101103153>>【菏泽市民文化中心】内部成员单位账号:户名","0101103153>>【菏泽市民文化中心】内部成员单位账号:户名","0101103153>>【菏泽市民文化中心】内部成员单位账号:户名"],[""]],"node_type":"table","parent":1092,"children":[],"para_type":"table","pageno":75,"layout_index":4,"box":[96,86,388,124]}
- {"node_id":1115,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":75,"layout_index":5,"box":[104,216,178,6]}
- {"node_id":1116,"text":"打印日期:2022-08-28","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":75,"layout_index":6,"box":[401,216,61,6]}
- {"node_id":1117,"text":"中国农业银行","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":75,"layout_index":7,"box":[116,271,73,11]}
- {"node_id":1118,"text":"网上银行电子回单","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":75,"layout_index":8,"box":[241,272,77,10]}
- {"node_id":1119,"text":"MICKULTRA BANK OFOUENA ","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":75,"layout_index":9,"box":[119,286,64,3]}
- {"node_id":1120,"text":"客户收付款入账通知","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":75,"layout_index":10,"box":[247,284,64,7]}
- {"node_id":1121,"text":[["回单编号:09006720329334718215第1次打印","回单编号:09006720329334718215第1次打印","回单编号:09006720329334718215第1次打印","回单编号:09006720329334718215第1次打印","回单编号:09006720329334718215第1次打印","回单编号:09006720329334718215第1次打印"],["付款方","账号","325603000018170041318","收款方","账号03410100040019001","账号03410100040019001"],["付款方","户名","苏州金螳螂建筑装饰股份有限公司","收款方","户名","上海绰琪新型建材科技有限公司"],["付款方","开户行","交通银行苏州分行","收款方","开户行中国农业银行股份有限公司上海鲁汇支行","开户行中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","150000.00","金额(大写)壹拾伍万元整","金额(大写)壹拾伍万元整","金额(大写)壹拾伍万元整"],["币种","币种","人民币","交易渠道BEPS ","交易渠道BEPS ","交易渠道BEPS "],["摘要","摘要","转账存款","凭证号09032550100000550","凭证号09032550100000550","凭证号09032550100000550"],["交易时间","交易时间","2021-02-1018:18:54","会计日期20210210","会计日期20210210","会计日期20210210"],["附言","附言","210210004020>>【菏泽市民文化中心】内部成员单位账号户名","210210004020>>【菏泽市民文化中心】内部成员单位账号户名","210210004020>>【菏泽市民文化中心】内部成员单位账号户名","210210004020>>【菏泽市民文化中心】内部成员单位账号户名"],[""]],"node_type":"table","parent":1092,"children":[],"para_type":"table","pageno":75,"layout_index":11,"box":[96,295,400,129]}
- {"node_id":1122,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":75,"layout_index":12,"box":[99,431,186,6]}
- {"node_id":1123,"text":"打印日期:2022-08-28","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":75,"layout_index":13,"box":[408,431,63,6]}
- {"node_id":1124,"text":"中国农业银行","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":75,"layout_index":14,"box":[116,504,73,11]}
- {"node_id":1125,"text":"网上银行电子回单","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":75,"layout_index":15,"box":[242,506,76,9]}
- {"node_id":1126,"text":"MIUXULTRAL BANK OF CNA ","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":75,"layout_index":16,"box":[119,519,71,3]}
- {"node_id":1127,"text":"客户收付款入账通知","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":75,"layout_index":17,"box":[248,518,64,7]}
- {"node_id":1128,"text":[["回单编号:09004662950642849085第2次打印","回单编号:09004662950642849085第2次打印","回单编号:09004662950642849085第2次打印","回单编号:09004662950642849085第2次打印","回单编号:09004662950642849085第2次打印"],["账号付款方户名开户行","325603000018170041318","账号03410100040019001","账号03410100040019001","账号03410100040019001"],["账号付款方户名开户行","苏州金螳螂建筑装饰股份有限公司","收款方","户名","上海绰琪新型建材科技有限公司"],["账号付款方户名开户行","交通银行苏州分行","收款方","开户行中国农业银行股份有限公司上海鲁汇支行","开户行中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","108000.00","金额(大写)壹拾万捌仟元整","金额(大写)壹拾万捌仟元整","金额(大写)壹拾万捌仟元整"],["币种","人民币","交易渠道BEPS ","交易渠道BEPS ","交易渠道BEPS "],["摘要","转账存款","凭证号09032550100000550","凭证号09032550100000550","凭证号09032550100000550"],["交易时间","2021-11-2315:32:12","会计日期20211123","会计日期20211123","会计日期20211123"],["附言","211123000342>>【菏泽市民文化中心】内部成员单位账号户名","211123000342>>【菏泽市民文化中心】内部成员单位账号户名","211123000342>>【菏泽市民文化中心】内部成员单位账号户名","211123000342>>【菏泽市民文化中心】内部成员单位账号户名"],[""]],"node_type":"table","parent":1092,"children":[],"para_type":"table","pageno":75,"layout_index":18,"box":[96,528,400,130]}
- {"node_id":1129,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":75,"layout_index":19,"box":[99,665,186,6]}
- {"node_id":1130,"text":"打印日期:2022-08-28","node_type":"text","parent":1092,"children":[],"para_type":"text","pageno":75,"layout_index":20,"box":[410,665,63,6]}
- {"node_id":1131,"text":"76","node_type":"head_tail","parent":1092,"children":[],"para_type":"head_tail","pageno":75,"layout_index":21,"box":[291,776,11,10]}
- {"node_id":1132,"text":"电子银行承兑汇票","node_type":"title","parent":0,"children":[1133,1134,1135,1136,1137,1138,1139,1140],"para_type":"title_1","pageno":76,"layout_index":0,"box":[266,54,63,7]}
- {"node_id":1133,"text":[["出票日期","2021-11-02","票据状态","票据已结清"],[""]],"node_type":"table","parent":1132,"children":[],"para_type":"table","pageno":76,"layout_index":1,"box":[98,103,399,17]}
- {"node_id":1134,"text":"汇票到期日","node_type":"text","parent":1132,"children":[],"para_type":"text","pageno":76,"layout_index":2,"box":[118,126,29,6]}
- {"node_id":1135,"text":"2022-08-19","node_type":"text","parent":1132,"children":[],"para_type":"text","pageno":76,"layout_index":3,"box":[189,126,32,6]}
- {"node_id":1136,"text":"票据号码","node_type":"text","parent":1132,"children":[],"para_type":"text","pageno":76,"layout_index":4,"box":[260,126,22,7]}
- {"node_id":1137,"text":"130130500011720211102069225412","node_type":"text","parent":1132,"children":[],"para_type":"text","pageno":76,"layout_index":5,"box":[351,126,96,6]}
- {"node_id":1138,"text":[["出票人","全称","金螳螂精装科技苏州)有限公司","金螳螂精装科技苏州)有限公司","收票人","全称","苏州集加材料有限公司","苏州集加材料有限公司"],["出票人","账号","325060030018800002175","325060030018800002175","收票人","账号","8112001013700462090","8112001013700462090"],["出票人","开户银行","交通银行股份有限公司苏州姑苏支行","交通银行股份有限公司苏州姑苏支行","收票人","开户银行","中信银行股份有限公司苏州分行营业部","中信银行股份有限公司苏州分行营业部"],["票据金额","票据金额","人民币(大写)","人民币(大写)","伍万元整","伍万元整","50,000.00","50,000.00"],["承兑人信息","全称","交通银行股份有限公司苏州姑苏支行","交通银行股份有限公司苏州姑苏支行","账号","账号","0","0"],["承兑人信息","开户行名称","交通银行股份有限公司苏州姑苏支行","交通银行股份有限公司苏州姑苏支行","开户行行号","开户行行号","301305000117","301305000117"],["交易合同号","交易合同号","","","承兑信息","出票人承诺","本汇票请予以承兑,到期无条件付款","本汇票请予以承兑,到期无条件付款"],["能否转让","能否转让","可以转让","可以转让","承兑信息","承兑人承诺","本汇票已经承兑,到期无条件付款","本汇票已经承兑,到期无条件付款"],["能否转让","能否转让","可以转让","可以转让","承兑信息","承兑日期"],["承兑保证信息","承兑保证信息","保证人名称","","保证人地址","","保证人日期"],["评价信息由出票人、承兑人自己记载,仅供参考)","评价信息由出票人、承兑人自己记载,仅供参考)","出票人","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:"],["评价信息由出票人、承兑人自己记载,仅供参考)","评价信息由出票人、承兑人自己记载,仅供参考)","承兑人","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:","评级主体:信用等级:评级到期日:"],[""]],"node_type":"table","parent":1132,"children":[],"para_type":"table","pageno":76,"layout_index":6,"box":[98,146,399,212]}
- {"node_id":1139,"text":"77","node_type":"head_tail","parent":1132,"children":[],"para_type":"head_tail","pageno":76,"layout_index":7,"box":[291,777,12,9]}
- {"node_id":1140,"text":"(三)近年类似项目业绩(案例三)","node_type":"title","parent":1132,"children":[1141,1142,1143,1144,1145,1146,1147,1148],"para_type":"title_4","pageno":77,"layout_index":0,"box":[185,53,225,15]}
- {"node_id":1141,"text":[["项目名称","四川永祥新能源有限公司(二期)"],["项目所在地","四川乐山市"],["发包人名称","四川永祥新能源有限公司"],["发包人地址","四川成都市"],["发包人联系人及电话","袁总18381532270 "],["合同价格","783万元"],["开工日期","2021年6月30日"],["竣工日期","2021年11月30日"],["承担的工作","项目管理和协调"],["工程质量","合格"],["项目经理","俞卫卫\/方海涛"],["技术负责人","白双龙"],["总监理工程师及电话"],["项目描述","面积16000平米,绰琪5cm厚度的重载一体化磨石,使用铠甲伸缩缝,合同总价783万元,历时5个月完工,通过甲方竣工验收。"],["备注"],[""]],"node_type":"table","parent":1140,"children":[],"para_type":"table","pageno":77,"layout_index":1,"box":[70,75,454,457]}
- {"node_id":1142,"text":"备注:1、类似项目业绩指具有2016年1月1日(以合同签订时间为准)以来已完(竣)工的无机磨石地坪施工业绩,其中有单项合同金额在200万元以上或者面积不少于2000平方无机磨石地坪工程施工业绩。","node_type":"text","parent":1140,"children":[],"para_type":"text","pageno":77,"layout_index":2,"box":[44,553,506,28]}
- {"node_id":1143,"text":"2、投标人应随此表附上类似业绩证明材料,如合同及相关内容的已标价工程量清单、竣工验收单以及汇款证明或发票等(3项缺一不可)的彩色扫描件。证明材料应能反映合同签订时间、工程类别及特征、合同金额或地坪面积等信息,否则,评标委员会将不予采信。","node_type":"text","parent":1140,"children":[],"para_type":"text","pageno":77,"layout_index":3,"box":[44,591,503,44]}
- {"node_id":1144,"text":"四川永祥乐山磨石项目附件:","node_type":"text","parent":1140,"children":[],"para_type":"text","pageno":77,"layout_index":4,"box":[65,642,136,11]}
- {"node_id":1145,"text":"1、工程合同","node_type":"text","parent":1140,"children":[],"para_type":"text","pageno":77,"layout_index":5,"box":[65,663,58,11]}
- {"node_id":1146,"text":"2、项目回款银行记录653万元","node_type":"text","parent":1140,"children":[],"para_type":"text","pageno":77,"layout_index":6,"box":[65,678,144,14]}
- {"node_id":1147,"text":"3、项目竣工验收记录58页,因为页数较多,另行添加附件。","node_type":"head_tail","parent":1140,"children":[],"para_type":"head_tail","pageno":77,"layout_index":7,"box":[65,696,286,14]}
- {"node_id":1148,"text":"78 ","node_type":"head_tail","parent":1140,"children":[],"para_type":"head_tail","pageno":77,"layout_index":8,"box":[293,779,12,9]}
- {"node_id":1149,"text":"四川永祥新能源有限公司光伏硅材料制造技改项目(二期高纯晶硅项目)地坪施工项目标段一硅晶石地坪","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":78,"layout_index":0,"box":[108,105,374,113]}
- {"node_id":1150,"text":"施工合同","node_type":"title","parent":0,"children":[1151,1152,1153,1154,1155,1156,1157],"para_type":"title_1","pageno":78,"layout_index":1,"box":[297,243,28,26]}
- {"node_id":1151,"text":"合同编号:永供(新)字2-2021-033","node_type":"text","parent":1150,"children":[],"para_type":"text","pageno":78,"layout_index":2,"box":[121,508,221,17]}
- {"node_id":1152,"text":"发包人(全称):四川永祥新能源有限公司","node_type":"text","parent":1150,"children":[],"para_type":"text","pageno":78,"layout_index":3,"box":[119,545,252,17]}
- {"node_id":1153,"text":"承包人(全称):上海绰琪新型建材科技有限公司","node_type":"text","parent":1150,"children":[],"para_type":"text","pageno":78,"layout_index":4,"box":[118,581,291,18]}
- {"node_id":1154,"text":"签订地点:四川省乐山市五通桥区龙翔路999号","node_type":"text","parent":1150,"children":[],"para_type":"text","pageno":78,"layout_index":5,"box":[118,617,282,18]}
- {"node_id":1155,"text":"签订时间:二零二一年七月","node_type":"text","parent":1150,"children":[],"para_type":"text","pageno":78,"layout_index":6,"box":[118,652,159,17]}
- {"node_id":1156,"text":"79","node_type":"head_tail","parent":1150,"children":[],"para_type":"head_tail","pageno":78,"layout_index":7,"box":[291,776,11,10]}
- {"node_id":1157,"text":"第一部分合同协议书","node_type":"title","parent":1150,"children":[1158,1159,1160,1161,1162,1182,1187,1189,1192,1194,1207,1213,1215,1217,1221,1223,1225],"para_type":"title_2","pageno":79,"layout_index":0,"box":[232,67,136,17]}
- {"node_id":1158,"text":"发包人(全称):四川永祥新能源有限公司","node_type":"text","parent":1157,"children":[],"para_type":"text","pageno":79,"layout_index":1,"box":[114,104,277,18]}
- {"node_id":1159,"text":"承包人(全称):","node_type":"text","parent":1157,"children":[],"para_type":"text","pageno":79,"layout_index":2,"box":[114,131,93,15]}
- {"node_id":1160,"text":"上海绰琪新型建材科技有限公司","node_type":"text","parent":1157,"children":[],"para_type":"text","pageno":79,"layout_index":3,"box":[245,133,177,17]}
- {"node_id":1161,"text":"根据《中华人民共和国民法典》、《中华人民共和国建筑法》及有关法律规定,遵循平等、自愿、公平和诚实信用的原则,双方就光伏硅材料制造技改项目(二期高纯晶硅项目)洁净区地坪工程施工及有关事项协商一致,共同达成如下协议:","node_type":"text","parent":1157,"children":[],"para_type":"text","pageno":79,"layout_index":4,"box":[113,156,372,41]}
- {"node_id":1162,"text":"一、工程概况","node_type":"title","parent":1157,"children":[1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181],"para_type":"title_3","pageno":79,"layout_index":5,"box":[116,209,50,9]}
- {"node_id":1163,"text":"1工程名称:光伏硅材料制造技改项目(二期高纯晶硅项目)洁净区地坪工程“一标段(硅晶石地坪)。","node_type":"text","parent":1162,"children":[],"para_type":"text","pageno":79,"layout_index":6,"box":[128,229,353,15]}
- {"node_id":1164,"text":"2工程地点:四川省乐山市五通桥区龙翔路999号","node_type":"text","parent":1162,"children":[],"para_type":"text","pageno":79,"layout_index":7,"box":[128,245,181,12]}
- {"node_id":1165,"text":"3工程立项批准文号:\/","node_type":"text","parent":1162,"children":[],"para_type":"text","pageno":79,"layout_index":8,"box":[128,260,102,11]}
- {"node_id":1166,"text":"4资金来源:00自筹口。","node_type":"text","parent":1162,"children":[],"para_type":"text","pageno":79,"layout_index":9,"box":[128,276,87,11]}
- {"node_id":1167,"text":"5工程内容:除明确约定不包含外的图纸范围内所有内容。","node_type":"text","parent":1162,"children":[],"para_type":"text","pageno":79,"layout_index":10,"box":[127,292,203,12]}
- {"node_id":1168,"text":"6工程承包范围:","node_type":"text","parent":1162,"children":[],"para_type":"text","pageno":79,"layout_index":11,"box":[128,310,58,10]}
- {"node_id":1169,"text":"(1)洁净区地坪","node_type":"text","parent":1162,"children":[],"para_type":"text","pageno":79,"layout_index":12,"box":[132,329,58,9]}
- {"node_id":1170,"text":"标段一:无机材料类(二期硅晶石地坪):包含招标文件及图纸、技术补充要求的所有内容;","node_type":"text","parent":1162,"children":[],"para_type":"text","pageno":79,"layout_index":13,"box":[128,346,324,14]}
- {"node_id":1171,"text":"增加技术澄清部分要求:","node_type":"text","parent":1162,"children":[],"para_type":"text","pageno":79,"layout_index":14,"box":[129,367,85,10]}
- {"node_id":1172,"text":"1、铠甲缝材质为304不锈钢;","node_type":"text","parent":1162,"children":[],"para_type":"text","pageno":79,"layout_index":15,"box":[127,383,106,10]}
- {"node_id":1173,"text":"2、不锈钢钢板厚度5mm;","node_type":"text","parent":1162,"children":[],"para_type":"text","pageno":79,"layout_index":16,"box":[126,400,95,9]}
- {"node_id":1174,"text":"3、铠甲高度与硅晶石厚度相同60mm;","node_type":"text","parent":1162,"children":[],"para_type":"text","pageno":79,"layout_index":17,"box":[126,416,139,11]}
- {"node_id":1175,"text":"4、传力杆直径14mm螺纹钢,长度200mm,间距500mm,居中焊接,焊缝厚度3mm;","node_type":"text","parent":1162,"children":[],"para_type":"text","pageno":79,"layout_index":18,"box":[126,432,322,14]}
- {"node_id":1176,"text":"5、铠甲缝间距6-8米;","node_type":"text","parent":1162,"children":[],"para_type":"text","pageno":79,"layout_index":19,"box":[125,448,82,11]}
- {"node_id":1177,"text":"6、铠甲缝的2张不锈钢板中间垫5mm厚,40mm挤塑板(燃烧性能B1级),上口留20mm用密封胶嵌缝;","node_type":"text","parent":1162,"children":[],"para_type":"text","pageno":79,"layout_index":20,"box":[109,465,372,25]}
- {"node_id":1178,"text":"7、两张不锈钢板用直径6mm的蝴蝶螺栓间距600mm固定,浇筑硅晶石前需拆除一边的蝴蝶螺母。","node_type":"text","parent":1162,"children":[],"para_type":"text","pageno":79,"layout_index":21,"box":[125,498,350,15]}
- {"node_id":1179,"text":"(2)招标人委托的其他工作:具体施工内容以建设单位书面通知为准","node_type":"text","parent":1162,"children":[],"para_type":"text","pageno":79,"layout_index":22,"box":[129,516,242,13]}
- {"node_id":1180,"text":"以上专业工程如因质量或价格等因素不能达到发包人要求的,不排除发包人进行专业分包,具体分包原则按专用合同条款第“3.5.2”执行。","node_type":"text","parent":1162,"children":[],"para_type":"text","pageno":79,"layout_index":23,"box":[108,534,371,27]}
- {"node_id":1181,"text":"除以上范围外,凡本项目红线范围内所有项目,发包人均有权以书面形式要求承包人进行增减并按本合同约定的价款结计算方式进行结算,承包人不得持任何异议。","node_type":"text","parent":1162,"children":[],"para_type":"text","pageno":79,"layout_index":24,"box":[107,565,372,28]}
- {"node_id":1182,"text":"二、合同工期","node_type":"title","parent":1157,"children":[1183,1184,1185,1186],"para_type":"title_3","pageno":79,"layout_index":25,"box":[106,601,50,10]}
- {"node_id":1183,"text":"1.计划总工期:预中标通知之日起,50天内完成全部施工及交付,竣工时间需在2021年8月8日前完成全部施工(另注明:每栋厂房工期40天(从收到图纸起),现场施工30天)。","node_type":"text","parent":1182,"children":[],"para_type":"text","pageno":79,"layout_index":26,"box":[107,622,371,29]}
- {"node_id":1184,"text":"2其他工程施工:以发包人书面要求为准","node_type":"text","parent":1182,"children":[],"para_type":"text","pageno":79,"layout_index":27,"box":[122,653,147,11]}
- {"node_id":1185,"text":"2","node_type":"head_tail","parent":1182,"children":[],"para_type":"head_tail","pageno":79,"layout_index":28,"box":[288,677,6,9]}
- {"node_id":1186,"text":"80","node_type":"head_tail","parent":1182,"children":[],"para_type":"head_tail","pageno":79,"layout_index":29,"box":[291,777,11,9]}
- {"node_id":1187,"text":"三、质量标准","node_type":"title","parent":1157,"children":[1188],"para_type":"title_3","pageno":80,"layout_index":0,"box":[110,64,53,9]}
- {"node_id":1188,"text":"工程质量符合00合格0标准。","node_type":"text","parent":1187,"children":[],"para_type":"text","pageno":80,"layout_index":1,"box":[132,85,112,11]}
- {"node_id":1189,"text":"四、签约合同价与合同价格形式","node_type":"title","parent":1157,"children":[1190,1191],"para_type":"title_3","pageno":80,"layout_index":2,"box":[115,106,118,10]}
- {"node_id":1190,"text":"1暂定签约合同价为:783万元(大写:柒佰捌拾叁万元整)","node_type":"text","parent":1189,"children":[],"para_type":"text","pageno":80,"layout_index":3,"box":[128,126,221,13]}
- {"node_id":1191,"text":"2合同价格形式:全费用含税固定综合单价。","node_type":"text","parent":1189,"children":[],"para_type":"text","pageno":80,"layout_index":4,"box":[127,142,165,12]}
- {"node_id":1192,"text":"五、项目经理","node_type":"title","parent":1157,"children":[1193],"para_type":"title_3","pageno":80,"layout_index":5,"box":[114,163,51,10]}
- {"node_id":1193,"text":"承包人项目经理:俞卫卫","node_type":"text","parent":1192,"children":[],"para_type":"text","pageno":80,"layout_index":6,"box":[126,184,108,12]}
- {"node_id":1194,"text":"六、合同文件构成","node_type":"title","parent":1157,"children":[1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206],"para_type":"title_3","pageno":80,"layout_index":7,"box":[113,206,68,9]}
- {"node_id":1195,"text":"本协议书与下列文件一起构成合同文件:","node_type":"text","parent":1194,"children":[],"para_type":"text","pageno":80,"layout_index":8,"box":[126,227,146,11]}
- {"node_id":1196,"text":"(1)中标通知书(如果有);","node_type":"text","parent":1194,"children":[],"para_type":"text","pageno":80,"layout_index":9,"box":[130,243,105,10]}
- {"node_id":1197,"text":"(2)竞争性谈判文件及其补遗;","node_type":"text","parent":1194,"children":[],"para_type":"text","pageno":80,"layout_index":10,"box":[130,258,113,11]}
- {"node_id":1198,"text":"(3)竞标函及其附录(如果有);","node_type":"text","parent":1194,"children":[],"para_type":"text","pageno":80,"layout_index":11,"box":[130,274,121,11]}
- {"node_id":1199,"text":"(4)专用合同条款;","node_type":"text","parent":1194,"children":[],"para_type":"text","pageno":80,"layout_index":12,"box":[130,290,70,8]}
- {"node_id":1200,"text":"(5)通用合同条款;","node_type":"text","parent":1194,"children":[],"para_type":"text","pageno":80,"layout_index":13,"box":[130,305,70,10]}
- {"node_id":1201,"text":"(6)技术标准和要求;","node_type":"text","parent":1194,"children":[],"para_type":"text","pageno":80,"layout_index":14,"box":[129,321,79,9]}
- {"node_id":1202,"text":"(7)图纸;","node_type":"text","parent":1194,"children":[],"para_type":"text","pageno":80,"layout_index":15,"box":[128,336,38,8]}
- {"node_id":1203,"text":"(8)商务报价书;","node_type":"text","parent":1194,"children":[],"para_type":"text","pageno":80,"layout_index":16,"box":[128,351,62,10]}
- {"node_id":1204,"text":"(9)其他合同文件。","node_type":"text","parent":1194,"children":[],"para_type":"text","pageno":80,"layout_index":17,"box":[128,367,70,9]}
- {"node_id":1205,"text":"在合同订立及履行过程中形成的与合同有关的文件均构成合同文件组成部分。","node_type":"text","parent":1194,"children":[],"para_type":"text","pageno":80,"layout_index":18,"box":[123,382,280,12]}
- {"node_id":1206,"text":"上述各项合同文件包括合同当事人就该项合同文件所作出的补充和修改,属于同一类内容的文件,应以最新签署的为准。专用合同条款及其附件须经合同当事人签字或盖章。专用条款与通用条款不一致的地方,不管通用条款是否约定可以改变,均以专用条款约定为准。","node_type":"text","parent":1194,"children":[],"para_type":"text","pageno":80,"layout_index":19,"box":[106,398,386,43]}
- {"node_id":1207,"text":"七、承诺","node_type":"title","parent":1157,"children":[1208,1209,1210,1211,1212],"para_type":"title_3","pageno":80,"layout_index":20,"box":[126,444,34,9]}
- {"node_id":1208,"text":"1发包人承诺按照法律规定履行项目审批手续、筹集工程建设资金并按照合同约定的期限和方式支付","node_type":"text","parent":1207,"children":[],"para_type":"text","pageno":80,"layout_index":21,"box":[122,459,371,15]}
- {"node_id":1209,"text":"合同价款。","node_type":"text","parent":1207,"children":[],"para_type":"text","pageno":80,"layout_index":22,"box":[105,475,36,9]}
- {"node_id":1210,"text":"2承包人承诺按照法律规定及合同约定组织完成工程施工,确保工程质量和安全,不进行转包及违法分包,并在缺陷责任期及保修期内承担相应的工程维修责任。","node_type":"text","parent":1207,"children":[],"para_type":"text","pageno":80,"layout_index":23,"box":[104,490,389,28]}
- {"node_id":1211,"text":"3发包人和承包人通过招投标形式签订合同的,双方理解并承诺不再就同一工程另行签订与合同实质","node_type":"text","parent":1207,"children":[],"para_type":"text","pageno":80,"layout_index":24,"box":[120,522,371,14]}
- {"node_id":1212,"text":"性内容相背离的协议。","node_type":"text","parent":1207,"children":[],"para_type":"text","pageno":80,"layout_index":25,"box":[103,536,79,11]}
- {"node_id":1213,"text":"八、词语含义","node_type":"title","parent":1157,"children":[1214],"para_type":"title_3","pageno":80,"layout_index":26,"box":[119,552,51,9]}
- {"node_id":1214,"text":"本协议书中词语含义与第二部分通用合同条款中赋予的含义相同。","node_type":"text","parent":1213,"children":[],"para_type":"text","pageno":80,"layout_index":27,"box":[120,568,238,13]}
- {"node_id":1215,"text":"九、签订时间","node_type":"title","parent":1157,"children":[1216],"para_type":"title_3","pageno":80,"layout_index":28,"box":[110,589,52,9]}
- {"node_id":1216,"text":"本合同于2021年07月01日签订。","node_type":"text","parent":1215,"children":[],"para_type":"text","pageno":80,"layout_index":29,"box":[119,609,130,10]}
- {"node_id":1217,"text":"十、签订地点","node_type":"title","parent":1157,"children":[1218,1219,1220],"para_type":"title_3","pageno":80,"layout_index":30,"box":[102,629,51,10]}
- {"node_id":1218,"text":"本合同在四川省乐山市五通桥区龙翔路999号签订。","node_type":"text","parent":1217,"children":[],"para_type":"text","pageno":80,"layout_index":31,"box":[118,650,195,12]}
- {"node_id":1219,"text":"3","node_type":"head_tail","parent":1217,"children":[],"para_type":"head_tail","pageno":80,"layout_index":32,"box":[292,678,6,9]}
- {"node_id":1220,"text":"81","node_type":"head_tail","parent":1217,"children":[],"para_type":"head_tail","pageno":80,"layout_index":33,"box":[291,777,10,9]}
- {"node_id":1221,"text":"十一、补充协议","node_type":"title","parent":1157,"children":[1222],"para_type":"title_3","pageno":81,"layout_index":0,"box":[125,62,52,8]}
- {"node_id":1222,"text":"合同未尽事宜,合同当事人另行签订补充协议,补充协议是合同的组成部分","node_type":"text","parent":1221,"children":[],"para_type":"text","pageno":81,"layout_index":1,"box":[140,82,242,11]}
- {"node_id":1223,"text":"十二、合同生效","node_type":"title","parent":1157,"children":[1224],"para_type":"title_3","pageno":81,"layout_index":2,"box":[125,101,51,9]}
- {"node_id":1224,"text":"本合同自发承包双方合同签订后生效。","node_type":"text","parent":1223,"children":[],"para_type":"text","pageno":81,"layout_index":3,"box":[139,120,119,11]}
- {"node_id":1225,"text":"十三、合同份数","node_type":"title","parent":1157,"children":[1226,1227,1228,1229],"para_type":"title_3","pageno":81,"layout_index":4,"box":[124,140,52,9]}
- {"node_id":1226,"text":"本合同一式肆份,均具有同等法律效力,发包人执贰份,承包人执贰份。","node_type":"text","parent":1225,"children":[],"para_type":"text","pageno":81,"layout_index":5,"box":[138,159,253,12]}
- {"node_id":1227,"text":[["发包人:四川永祥新能源有限公司地址:四川省乐山市五通桥区龙翔路999号法定代表人:李斌委托代理人:电话:传真:电子邮箱:开户银行:中国农业银行股份有限公司乐山五通桥支行账号:22382101040009668税号:91511112MA633M5847邮编:6148002021年07月01日"],["发包人:四川永祥新能源有限公司地址:四川省乐山市五通桥区龙翔路999号法定代表人:李斌委托代理人:电话:传真:电子邮箱:开户银行:中国农业银行股份有限公司乐山五通桥支行账号:22382101040009668税号:91511112MA633M5847邮编:6148002021年07月01日","承包人:上海绰琪新型建材科技有限公司地址:上海市浦江镇东方经济城东晨三路三号法定代表人顾东升委托代理人:电话:021--34730118传真:021--34730119电子邮箱:开户银行:中国农业银行股份有限公司上海鲁汇支行账号:03410100040019001税号:91310112MA1GC4MP45邮编:2011122021年07月01日"],[""]],"node_type":"table","parent":1225,"children":[],"para_type":"table","pageno":81,"layout_index":6,"box":[111,172,382,229]}
- {"node_id":1228,"text":"4","node_type":"head_tail","parent":1225,"children":[],"para_type":"head_tail","pageno":81,"layout_index":7,"box":[283,629,4,5]}
- {"node_id":1229,"text":"82","node_type":"head_tail","parent":1225,"children":[],"para_type":"head_tail","pageno":81,"layout_index":8,"box":[291,777,11,9]}
- {"node_id":1230,"text":"四川永祥乐山磨石项目收款记录3张653万元","node_type":"title","parent":0,"children":[1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252],"para_type":"title_1","pageno":82,"layout_index":0,"box":[156,52,283,14]}
- {"node_id":1231,"text":"中国农业银行","node_type":"text","parent":1230,"children":[],"para_type":"text","pageno":82,"layout_index":1,"box":[124,96,69,10]}
- {"node_id":1232,"text":"网上银行电子回单","node_type":"text","parent":1230,"children":[],"para_type":"text","pageno":82,"layout_index":2,"box":[245,98,73,9]}
- {"node_id":1233,"text":"客户收付款入账通知","node_type":"text","parent":1230,"children":[],"para_type":"text","pageno":82,"layout_index":3,"box":[251,110,61,7]}
- {"node_id":1234,"text":[["回单编号:09005159255925340957第2次打印","回单编号:09005159255925340957第2次打印","回单编号:09005159255925340957第2次打印","回单编号:09005159255925340957第2次打印","回单编号:09005159255925340957第2次打印","回单编号:09005159255925340957第2次打印"],["付款方","账号","22382101040009668","账号","账号","03410100040019001"],["付款方","户名","四川永祥新能源有限公司","收款方户名","收款方户名","上海绰琪新型建材科技有限公司"],["付款方","开户行","中国农业银行股份有限公司乐山五通桥支行","","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","2458167.14","金额(大写)","金额(大写)","贰佰肆拾伍万捌仟壹佰陆拾柒元壹角肆分"],["币种","币种","人民币","交易渠道","交易渠道","CMIP "],["摘要","摘要","转账存款","凭证号","凭证号","09032550100000550"],["交易时间","交易时间","2021-10-2516:07:15","会计日期","会计日期","20211025"],["附言","附言","无-CCx-FK211022052客户参考号:0000L4PS","无-CCx-FK211022052客户参考号:0000L4PS","无-CCx-FK211022052客户参考号:0000L4PS","无-CCx-FK211022052客户参考号:0000L4PS"],[""]],"node_type":"table","parent":1230,"children":[],"para_type":"table","pageno":82,"layout_index":4,"box":[103,120,385,124]}
- {"node_id":1235,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":1230,"children":[],"para_type":"text","pageno":82,"layout_index":5,"box":[108,250,179,6]}
- {"node_id":1236,"text":"打印日期:2022-08-28","node_type":"text","parent":1230,"children":[],"para_type":"text","pageno":82,"layout_index":6,"box":[406,250,60,6]}
- {"node_id":1237,"text":"中国农业银行","node_type":"text","parent":1230,"children":[],"para_type":"text","pageno":82,"layout_index":7,"box":[128,298,67,10]}
- {"node_id":1238,"text":"网上银行电子回单","node_type":"text","parent":1230,"children":[],"para_type":"text","pageno":82,"layout_index":8,"box":[246,299,71,9]}
- {"node_id":1239,"text":"AGKICUITRAL DANK OFCIYA ","node_type":"text","parent":1230,"children":[],"para_type":"text","pageno":82,"layout_index":9,"box":[129,312,67,2]}
- {"node_id":1240,"text":"客户收付款入账通知","node_type":"text","parent":1230,"children":[],"para_type":"text","pageno":82,"layout_index":10,"box":[252,311,60,7]}
- {"node_id":1241,"text":[["回单编号:09004763935974398164第3次打印","回单编号:09004763935974398164第3次打印","回单编号:09004763935974398164第3次打印","回单编号:09004763935974398164第3次打印","回单编号:09004763935974398164第3次打印","回单编号:09004763935974398164第3次打印"],["付款方","账号","22382101040009668","收款方","账号","03410100040019001"],["付款方","户名","四川永祥新能源有限公司","收款方","户名","上海绰琪新型建材科技有限公司"],["付款方","开户行","中国农业银行股份有限公司乐山五通桥支行","收款方","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","2319082.24","金额(大写)","金额(大写)","贰佰叁拾壹万玖仟零捌拾贰元贰角肆分"],["币种","币种","人民币","交易渠道","交易渠道","CMIP "],["摘要","摘要","转账存款","凭证号","凭证号","09032550100000550"],["交易时间","交易时间","2021-12-1514:25:34","会计日期","会计日期","20211215"],["附言","附言","无-CCX-FK211121005客户参考号:0000NCGR","无-CCX-FK211121005客户参考号:0000NCGR","无-CCX-FK211121005客户参考号:0000NCGR","无-CCX-FK211121005客户参考号:0000NCGR"],[""]],"node_type":"table","parent":1230,"children":[],"para_type":"table","pageno":82,"layout_index":11,"box":[106,321,380,122]}
- {"node_id":1242,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":1230,"children":[],"para_type":"text","pageno":82,"layout_index":12,"box":[112,450,176,6]}
- {"node_id":1243,"text":"打印日期:2022-08-28","node_type":"text","parent":1230,"children":[],"para_type":"text","pageno":82,"layout_index":13,"box":[404,450,60,6]}
- {"node_id":1244,"text":"中国农业银行","node_type":"text","parent":1230,"children":[],"para_type":"text","pageno":82,"layout_index":14,"box":[120,499,70,10]}
- {"node_id":1245,"text":"网上银行电子回单","node_type":"text","parent":1230,"children":[],"para_type":"text","pageno":82,"layout_index":15,"box":[241,500,75,9]}
- {"node_id":1246,"text":"AERICT TRAL. BANK OCIYA ","node_type":"text","parent":1230,"children":[],"para_type":"text","pageno":82,"layout_index":16,"box":[122,514,70,2]}
- {"node_id":1247,"text":"客户收付款入账通知","node_type":"text","parent":1230,"children":[],"para_type":"text","pageno":82,"layout_index":17,"box":[248,512,63,7]}
- {"node_id":1248,"text":[["回单编号:09005552722172393414第2次打印","回单编号:09005552722172393414第2次打印","回单编号:09005552722172393414第2次打印","回单编号:09005552722172393414第2次打印","回单编号:09005552722172393414第2次打印","回单编号:09005552722172393414第2次打印"],["付款方","账号","22382101040009668","收款方","账号","03410100040019001"],["付款方","户名","四川永祥新能源有限公司","收款方","户名","上海绰琪新型建材科技有限公司"],["付款方","开户行","中国农业银行股份有限公司乐山五通桥支行","收款方","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","1757228.40","金额(大写)","金额(大写)","壹佰柒拾伍万柒仟贰佰贰拾捌元肆角零分"],["币种","币种","人民币","交易渠道","交易渠道","CMIP "],["摘要","摘要","转账存款","凭证号","凭证号","09032550100000550"],["交易时间","交易时间","2022-01-1016:38:52","会计日期","会计日期","20220110"],["附言","附言","无-CCx-FK220107050客户参考号:000000CM","无-CCx-FK220107050客户参考号:000000CM","无-CCx-FK220107050客户参考号:000000CM","无-CCx-FK220107050客户参考号:000000CM"],[""]],"node_type":"table","parent":1230,"children":[],"para_type":"table","pageno":82,"layout_index":18,"box":[98,522,390,126]}
- {"node_id":1249,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":1230,"children":[],"para_type":"text","pageno":82,"layout_index":19,"box":[104,655,180,6]}
- {"node_id":1250,"text":"打印日期:2022-08-28","node_type":"text","parent":1230,"children":[],"para_type":"text","pageno":82,"layout_index":20,"box":[404,655,62,6]}
- {"node_id":1251,"text":"83","node_type":"head_tail","parent":1230,"children":[],"para_type":"head_tail","pageno":82,"layout_index":21,"box":[291,777,11,9]}
- {"node_id":1252,"text":"(三)近年类似项目业绩(案例四)","node_type":"title","parent":1230,"children":[1253,1254,1255,1256,1257],"para_type":"title_4","pageno":83,"layout_index":0,"box":[185,53,225,15]}
- {"node_id":1253,"text":[["项目名称","内蒙通威高纯晶硅项目"],["项目所在地","内蒙古包头市昆都仑区"],["发包人名称","内蒙古通威高纯晶硅有限公司"],["发包人地址","内蒙古包头市昆都仑区"],["发包人联系人及电话","武建伟18647245360 "],["合同价格","876.33万元"],["开工日期","2022年2月10日"],["竣工日期","2022年7月31日(因为疫情暂停3个月)"],["承担的工作","磨石地面施工管理及协调沟通"],["工程质量","合格"],["项目经理","方海涛"],["技术负责人","白双龙\/胡居雷"],["总监理工程师及电话"],["项目描述","面积15000平米,绰琪5cm厚度的重载一体化磨石,使用铠甲伸缩缝,合同总价876万元,历时5个月完工,通过甲方竣工验收。"],["备注"],[""]],"node_type":"table","parent":1252,"children":[],"para_type":"table","pageno":83,"layout_index":1,"box":[70,75,454,457]}
- {"node_id":1254,"text":"备注:1、类似项目业绩指具有2016年1月1日(以合同签订时间为准)以来已完(竣)工的无机磨石地坪施工业绩,其中有单项合同金额在200万元以上或者面积不少于2000平方无机磨石地坪工程施工业绩。","node_type":"text","parent":1252,"children":[],"para_type":"text","pageno":83,"layout_index":2,"box":[44,553,506,28]}
- {"node_id":1255,"text":"2、投标人应随此表附上类似业绩证明材料,如合同及相关内容的已标价工程量清单、竣工验收单以及汇款证明或发票等(3项缺一不可)的彩色扫描件。证明材料应能反映合同签订时间、工程类别及特征、合同金额或地坪面积等信息,否则,评标委员会将不予采信。","node_type":"text","parent":1252,"children":[],"para_type":"text","pageno":83,"layout_index":3,"box":[44,591,503,44]}
- {"node_id":1256,"text":"3、如有多个类似项目,可按此表格扩展。每张表格只填写一个项目,并标明序号。","node_type":"text","parent":1252,"children":[],"para_type":"text","pageno":83,"layout_index":4,"box":[65,644,383,11]}
- {"node_id":1257,"text":"84 ","node_type":"head_tail","parent":1252,"children":[],"para_type":"head_tail","pageno":83,"layout_index":5,"box":[293,779,12,9]}
- {"node_id":1258,"text":"内蒙古通威高纯晶硅有限公司(二期5万吨\/年高纯晶硅项目)","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":84,"layout_index":0,"box":[159,70,266,50]}
- {"node_id":1259,"text":"还原及后处理等装置洁净区地坪工程","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":84,"layout_index":1,"box":[195,153,194,11]}
- {"node_id":1260,"text":"(硅晶石地面供货及施工)","node_type":"title","parent":0,"children":[1261],"para_type":"title_1","pageno":84,"layout_index":2,"box":[226,187,132,12]}
- {"node_id":1261,"text":"第一部分合同协议书","node_type":"title","parent":1260,"children":[1262,1263,1264,1265,1266,1267,1268,1269,1270,1272,1291,1293],"para_type":"title_2","pageno":84,"layout_index":3,"box":[235,221,113,12]}
- {"node_id":1262,"text":"合同号:通供(品)字2-22-006","node_type":"text","parent":1261,"children":[],"para_type":"text","pageno":84,"layout_index":4,"box":[135,254,148,12]}
- {"node_id":1263,"text":"发包人(全称):内蒙古通威高纯晶硅有限公司","node_type":"text","parent":1261,"children":[],"para_type":"text","pageno":84,"layout_index":5,"box":[136,278,220,11]}
- {"node_id":1264,"text":"承包人(全称):上海绰琪新型建材科技有限公司","node_type":"text","parent":1261,"children":[],"para_type":"text","pageno":84,"layout_index":6,"box":[135,302,234,12]}
- {"node_id":1265,"text":"据《中华人民共和国民》《中华人民共和国建筑法》及有关法律规定,遵循平等愿公和实用原,双方光材料制项目(二5万高晶项目)及处装置区地工程施工有关事协一,共达成如下协:","node_type":"text","parent":1261,"children":[],"para_type":"text","pageno":84,"layout_index":7,"box":[134,324,314,44]}
- {"node_id":1266,"text":"一工程戴况","node_type":"text","parent":1261,"children":[],"para_type":"text","pageno":84,"layout_index":8,"box":[139,381,46,9]}
- {"node_id":1267,"text":"1工程称:光伏材料制项目(二期5万纯项目)及后处理等装洁净区地坪工程","node_type":"text","parent":1261,"children":[],"para_type":"text","pageno":84,"layout_index":9,"box":[135,404,313,25]}
- {"node_id":1268,"text":"2工地内古市都区金深加工区华大街号","node_type":"text","parent":1261,"children":[],"para_type":"text","pageno":84,"layout_index":10,"box":[149,438,233,10]}
- {"node_id":1269,"text":"3工立项批准文号:","node_type":"text","parent":1261,"children":[],"para_type":"text","pageno":84,"layout_index":11,"box":[149,456,99,7]}
- {"node_id":1270,"text":"4.资金来源:血","node_type":"title","parent":1261,"children":[1271],"para_type":"title_5","pageno":84,"layout_index":12,"box":[149,474,69,8]}
- {"node_id":1271,"text":"5工程容:除外的图纸内所有内容","node_type":"text","parent":1270,"children":[],"para_type":"text","pageno":84,"layout_index":13,"box":[149,491,204,10]}
- {"node_id":1272,"text":"6.工程承包范围:","node_type":"title","parent":1261,"children":[1273],"para_type":"title_5","pageno":84,"layout_index":14,"box":[149,512,56,7]}
- {"node_id":1273,"text":"6.1、结净区地坪:","node_type":"title","parent":1272,"children":[1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290],"para_type":"title_6","pageno":84,"layout_index":15,"box":[148,531,64,7]}
- {"node_id":1274,"text":"硅晶石地面约14980平米(详见图纸)","node_type":"text","parent":1273,"children":[],"para_type":"text","pageno":84,"layout_index":16,"box":[157,546,131,7]}
- {"node_id":1275,"text":"本合同工程用全费用含税固定综合单价(税率9%)计价","node_type":"text","parent":1273,"children":[],"para_type":"text","pageno":84,"layout_index":17,"box":[156,557,199,9]}
- {"node_id":1276,"text":"本项日执行“样板先行”制度,在正式施工前需在现场制作样板,经发包人验收合","node_type":"text","parent":1273,"children":[],"para_type":"text","pageno":84,"layout_index":18,"box":[157,572,287,9]}
- {"node_id":1277,"text":"85","node_type":"head_tail","parent":1273,"children":[],"para_type":"head_tail","pageno":84,"layout_index":19,"box":[291,777,11,9]}
- {"node_id":1278,"text":"格后方可正式施工。制作样板工程为承包人免费制作,发包人无论要求承包人制作几次,直到发包人满意为止,制作样板工程的所有费用均出承包人在投标报价时综考虑,中标后承包人不能以任何理由要求发包人支付样板工程费用。","node_type":"text","parent":1273,"children":[],"para_type":"text","pageno":85,"layout_index":0,"box":[151,60,269,38]}
- {"node_id":1279,"text":"6.2、次标工程属于发包人专业分包工程:(1)承包人进场后从总承包单位的全面管理,上道工序与下道工序之间应进行书面交接:(2)发包人专业分包单位需对总承包单位完成的成品和半成品进行保护,如因发包人专业分包单位的原因造成的损失一经核实均由责任单位\/责任人全额赔","node_type":"text","parent":1273,"children":[],"para_type":"text","pageno":85,"layout_index":1,"box":[151,98,272,41]}
- {"node_id":1280,"text":"6.3、发包人委托的其他工作。","node_type":"text","parent":1273,"children":[],"para_type":"text","pageno":85,"layout_index":2,"box":[152,145,89,8]}
- {"node_id":1281,"text":"6.4、工作内容:","node_type":"text","parent":1273,"children":[],"para_type":"text","pageno":85,"layout_index":3,"box":[151,158,49,9]}
- {"node_id":1282,"text":"1)包含但不限于以下内容;凝土结构基层打磨、填补找平,上述地面做法的全部施工工序。","node_type":"text","parent":1273,"children":[],"para_type":"text","pageno":85,"layout_index":4,"box":[151,168,274,27]}
- {"node_id":1283,"text":"2)具体工内容以发包人书面通为准,附件作为本次投标参考","node_type":"text","parent":1273,"children":[],"para_type":"text","pageno":85,"layout_index":5,"box":[153,202,199,9]}
- {"node_id":1284,"text":"以上专业工程如量价格等素不到发人要求的,不徘发人进行专业分,具体分包则按专用合同款第3.4.2”执行","node_type":"text","parent":1273,"children":[],"para_type":"text","pageno":85,"layout_index":6,"box":[154,219,271,26]}
- {"node_id":1285,"text":"除以上范围外,凡本项目红线范围内所有项目,发包人均有权以书面形式要求承包人进行增减并按本合同约定的价款计算方式进行结算,承包人不得持任何异议","node_type":"text","parent":1273,"children":[],"para_type":"text","pageno":85,"layout_index":7,"box":[153,248,273,28]}
- {"node_id":1286,"text":"二同工期","node_type":"text","parent":1273,"children":[],"para_type":"text","pageno":85,"layout_index":8,"box":[157,287,40,7]}
- {"node_id":1287,"text":"品石地不超60天","node_type":"text","parent":1273,"children":[],"para_type":"text","pageno":85,"layout_index":9,"box":[168,306,81,7]}
- {"node_id":1288,"text":"发包人有权根项目建设进度调整上工序的施工工期,承人须无条件服从,且不得以此调整相应价款。","node_type":"text","parent":1273,"children":[],"para_type":"text","pageno":85,"layout_index":10,"box":[168,317,257,19]}
- {"node_id":1289,"text":"开工时间:以包人下发开工令为准","node_type":"text","parent":1273,"children":[],"para_type":"text","pageno":85,"layout_index":11,"box":[168,339,112,7]}
- {"node_id":1290,"text":"其他工施工:以发人要为准","node_type":"text","parent":1273,"children":[],"para_type":"text","pageno":85,"layout_index":12,"box":[168,360,122,7]}
- {"node_id":1291,"text":"三、质量标准","node_type":"title","parent":1261,"children":[1292],"para_type":"title_3","pageno":85,"layout_index":13,"box":[154,376,40,7]}
- {"node_id":1292,"text":"工程量符合石油化工行业创优工程标准","node_type":"text","parent":1291,"children":[],"para_type":"text","pageno":85,"layout_index":14,"box":[169,395,127,7]}
- {"node_id":1293,"text":"四、签约合与合价格形式","node_type":"title","parent":1261,"children":[1294,1295],"para_type":"title_3","pageno":85,"layout_index":15,"box":[158,414,95,6]}
- {"node_id":1294,"text":"1餐定签约为含87633万元","node_type":"text","parent":1293,"children":[],"para_type":"text","pageno":85,"layout_index":16,"box":[167,434,124,7]}
- {"node_id":1295,"text":"2.价格形式:","node_type":"title","parent":1293,"children":[],"para_type":"title_5","pageno":85,"layout_index":17,"box":[167,449,49,7]}
- {"node_id":1296,"text":"全费含税固定综合单工程量2017《内蒙古区建设工程计价依(2017","node_type":"title","parent":0,"children":[1297,1298,1299,1300],"para_type":"title_1","pageno":85,"layout_index":18,"box":[167,460,258,9]}
- {"node_id":1297,"text":")(即2017年序列定额)定的计算规则计算。)","node_type":"text","parent":1296,"children":[],"para_type":"text","pageno":85,"layout_index":19,"box":[155,471,151,8]}
- {"node_id":1298,"text":"经理","node_type":"text","parent":1296,"children":[],"para_type":"text","pageno":85,"layout_index":20,"box":[158,488,40,7]}
- {"node_id":1299,"text":"86","node_type":"head_tail","parent":1296,"children":[],"para_type":"head_tail","pageno":85,"layout_index":21,"box":[291,777,12,9]}
- {"node_id":1300,"text":"六。合同文件构成","node_type":"title","parent":1296,"children":[1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316],"para_type":"title_3","pageno":86,"layout_index":0,"box":[126,127,58,7]}
- {"node_id":1301,"text":"品","node_type":"text","parent":1300,"children":[],"para_type":"text","pageno":86,"layout_index":1,"box":[485,117,21,20]}
- {"node_id":1302,"text":"本协议书与下列文件一构成合同文件:","node_type":"text","parent":1300,"children":[],"para_type":"text","pageno":86,"layout_index":2,"box":[137,148,127,9]}
- {"node_id":1303,"text":"(1)中标知书(如果有)","node_type":"text","parent":1300,"children":[],"para_type":"text","pageno":86,"layout_index":3,"box":[141,166,91,7]}
- {"node_id":1304,"text":"(2)争谈判文件及其补道","node_type":"text","parent":1300,"children":[],"para_type":"text","pageno":86,"layout_index":4,"box":[141,182,98,7]}
- {"node_id":1305,"text":"(3及其(如果有)","node_type":"text","parent":1300,"children":[],"para_type":"text","pageno":86,"layout_index":5,"box":[140,197,107,10]}
- {"node_id":1306,"text":"(4)用合同条","node_type":"text","parent":1300,"children":[],"para_type":"text","pageno":86,"layout_index":6,"box":[140,215,61,7]}
- {"node_id":1307,"text":"(5)通用合同条款:","node_type":"text","parent":1300,"children":[],"para_type":"text","pageno":86,"layout_index":7,"box":[140,231,61,7]}
- {"node_id":1308,"text":"(6)技术标准要","node_type":"text","parent":1300,"children":[],"para_type":"text","pageno":86,"layout_index":8,"box":[140,247,69,10]}
- {"node_id":1309,"text":"(7)图纸;","node_type":"text","parent":1300,"children":[],"para_type":"text","pageno":86,"layout_index":9,"box":[140,264,32,9]}
- {"node_id":1310,"text":"()务报","node_type":"text","parent":1300,"children":[],"para_type":"text","pageno":86,"layout_index":10,"box":[140,281,54,7]}
- {"node_id":1311,"text":"(9)其他合同文件","node_type":"text","parent":1300,"children":[],"para_type":"text","pageno":86,"layout_index":11,"box":[140,298,62,7]}
- {"node_id":1312,"text":"在订立及履行过程中形成的与合同有关的文件均构成合同文组成部分","node_type":"text","parent":1300,"children":[],"para_type":"text","pageno":86,"layout_index":12,"box":[137,315,245,7]}
- {"node_id":1313,"text":"上述文包同事人就该项合文件作出的补充和修改,属于同一类内容的文,应以最新答署的为准,用合条及其附须经当事人签字或盖章。专用教用条款不一的地方,不管通用条是否约定可以改变,均以专用条款定为","node_type":"text","parent":1300,"children":[],"para_type":"text","pageno":86,"layout_index":13,"box":[122,330,289,41]}
- {"node_id":1314,"text":"七承诺","node_type":"text","parent":1300,"children":[],"para_type":"text","pageno":86,"layout_index":14,"box":[140,378,29,9]}
- {"node_id":1315,"text":"发人承诺按照法规定行目审批手,集工程建设资金并按约定的限和方式支付合价款","node_type":"text","parent":1300,"children":[],"para_type":"text","pageno":86,"layout_index":15,"box":[122,395,289,24]}
- {"node_id":1316,"text":"2承包人承诺按照法定及约定完成工程施工,确保工程和安全,不行及法分,并在陷责任期保修内承担应的工程修","node_type":"text","parent":1300,"children":[],"para_type":"text","pageno":86,"layout_index":16,"box":[122,429,288,24]}
- {"node_id":1317,"text":"3包人和承人投形式订合的双方理解并承不再就同一工程签","node_type":"title","parent":0,"children":[1318,1319,1327],"para_type":"title_1","pageno":86,"layout_index":17,"box":[135,461,275,8]}
- {"node_id":1318,"text":"订实内容相的协议。","node_type":"text","parent":1317,"children":[],"para_type":"text","pageno":86,"layout_index":18,"box":[122,477,112,7]}
- {"node_id":1319,"text":"八、词语含义","node_type":"title","parent":1317,"children":[1320,1321,1322,1323,1324,1325,1326],"para_type":"title_3","pageno":86,"layout_index":19,"box":[134,492,46,8]}
- {"node_id":1320,"text":"本协议书中词语会义与第二部分通用合同条款中赋予的义相同。","node_type":"text","parent":1319,"children":[],"para_type":"text","pageno":86,"layout_index":20,"box":[135,509,209,9]}
- {"node_id":1321,"text":"九,签订时间","node_type":"text","parent":1319,"children":[],"para_type":"text","pageno":86,"layout_index":21,"box":[128,530,42,7]}
- {"node_id":1322,"text":"本合同于2022年2月7日签订","node_type":"text","parent":1319,"children":[],"para_type":"text","pageno":86,"layout_index":22,"box":[136,549,103,10]}
- {"node_id":1323,"text":"十,签订地点","node_type":"text","parent":1319,"children":[],"para_type":"text","pageno":86,"layout_index":23,"box":[120,571,43,7]}
- {"node_id":1324,"text":"合在包头市内蒙古通威高纯晶有限公司签订","node_type":"text","parent":1319,"children":[],"para_type":"text","pageno":86,"layout_index":24,"box":[135,591,163,8]}
- {"node_id":1325,"text":"87","node_type":"head_tail","parent":1319,"children":[],"para_type":"head_tail","pageno":86,"layout_index":25,"box":[291,777,11,9]}
- {"node_id":1326,"text":"ǖ","node_type":"text","parent":1319,"children":[],"para_type":"text","pageno":87,"layout_index":0,"box":[490,58,12,17]}
- {"node_id":1327,"text":"十一。补充协议","node_type":"title","parent":1317,"children":[1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418],"para_type":"title_3","pageno":87,"layout_index":1,"box":[151,89,47,9]}
- {"node_id":1328,"text":"合未尽事宜,合当事人另行签订充议,补充协议是合同的组成分","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":2,"box":[164,110,230,11]}
- {"node_id":1329,"text":"十二间生效","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":3,"box":[151,136,47,8]}
- {"node_id":1330,"text":"自发承双方合签订后生效","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":4,"box":[165,159,112,9]}
- {"node_id":1331,"text":"十三,份数","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":5,"box":[151,182,48,9]}
- {"node_id":1332,"text":"水合同一式,有同等法律效力,发人五份承人五份","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":6,"box":[165,203,253,12]}
- {"node_id":1333,"text":"发人:内蒙威有限公司","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":7,"box":[152,243,116,9]}
- {"node_id":1334,"text":"(公章)","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":8,"box":[154,262,20,10]}
- {"node_id":1335,"text":"法定代表人或其委托代理人:","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":9,"box":[152,281,84,8]}
- {"node_id":1336,"text":"(答字)杨广","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":10,"box":[154,300,45,8]}
- {"node_id":1337,"text":"机构码:91150203MA0NFK26T","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":11,"box":[152,337,120,10]}
- {"node_id":1338,"text":"地址:内蒙点区包关市昆","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":12,"box":[152,355,96,10]}
- {"node_id":1339,"text":"仑国金属深加田园区荣华大街1号","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":13,"box":[153,374,108,9]}
- {"node_id":1340,"text":"政:","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":14,"box":[152,392,30,10]}
- {"node_id":1341,"text":"法定代发代北草","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":15,"box":[152,411,62,11]}
- {"node_id":1342,"text":"委托代理人:师广","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":16,"box":[153,430,62,9]}
- {"node_id":1343,"text":"电话8004727932","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":17,"box":[153,449,69,7]}
- {"node_id":1344,"text":"传真:","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":18,"box":[153,466,24,9]}
- {"node_id":1345,"text":"电子:Maneezymnex .ne","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":19,"box":[153,486,87,9]}
- {"node_id":1346,"text":"开户银行:招银行股份有限公司包分行","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":20,"box":[153,503,130,8]}
- {"node_id":1347,"text":"账号:472900321110104","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":21,"box":[153,522,79,9]}
- {"node_id":1348,"text":"承包人:上海建材科技有限公司","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":22,"box":[295,241,123,10]}
- {"node_id":1349,"text":"(公章)","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":23,"box":[296,261,20,10]}
- {"node_id":1350,"text":"法定代人其托理人:","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":24,"box":[293,281,84,7]}
- {"node_id":1351,"text":"(签字)余","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":25,"box":[296,298,37,9]}
- {"node_id":1352,"text":"织机构代码:1310112MA1GC4MP45","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":26,"box":[294,335,121,10]}
- {"node_id":1353,"text":"地址上海市行区镇三路3号编码","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":27,"box":[293,372,129,28]}
- {"node_id":1354,"text":"法定代表人:升","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":28,"box":[293,409,65,11]}
- {"node_id":1355,"text":"委托代理人:余浩","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":29,"box":[293,429,61,8]}
- {"node_id":1356,"text":"电话:18616632076","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":30,"box":[294,448,68,7]}
- {"node_id":1357,"text":"传真:","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":31,"box":[296,465,24,9]}
- {"node_id":1358,"text":"电子信箱:834751909。com","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":32,"box":[299,484,91,9]}
- {"node_id":1359,"text":"开户银行:农业银行上海汇分处","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":33,"box":[304,501,108,10]}
- {"node_id":1360,"text":"账号:03410100040019001","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":87,"layout_index":34,"box":[303,522,89,7]}
- {"node_id":1361,"text":"88","node_type":"head_tail","parent":1327,"children":[],"para_type":"head_tail","pageno":87,"layout_index":35,"box":[291,777,11,9]}
- {"node_id":1362,"text":"内蒙通威项目银行收款记录3笔计524.4万元","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":0,"box":[157,52,281,14]}
- {"node_id":1363,"text":"中国农业银行","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":1,"box":[133,96,67,10]}
- {"node_id":1364,"text":"网上银行电子回单","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":2,"box":[250,98,72,9]}
- {"node_id":1365,"text":"SGEICLUTRAL DANK OFOINA ","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":3,"box":[135,110,66,2]}
- {"node_id":1366,"text":"客户收付款入账通知","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":4,"box":[256,108,60,7]}
- {"node_id":1367,"text":"回单编号:09004890794784011033","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":5,"box":[112,120,103,6]}
- {"node_id":1368,"text":"账号","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":6,"box":[138,131,13,7]}
- {"node_id":1369,"text":"431090100100420072","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":7,"box":[166,131,65,6]}
- {"node_id":1370,"text":"第2次打印","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":8,"box":[459,120,29,7]}
- {"node_id":1371,"text":"账号","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":9,"box":[310,130,15,8]}
- {"node_id":1372,"text":"03410100040019001","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":10,"box":[338,131,61,7]}
- {"node_id":1373,"text":"付款方","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":11,"box":[115,142,19,7]}
- {"node_id":1374,"text":"户名","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":12,"box":[139,142,13,7]}
- {"node_id":1375,"text":"内蒙古通威高纯晶硅有限公司","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":13,"box":[166,142,80,6]}
- {"node_id":1376,"text":"收款方","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":14,"box":[287,142,19,6]}
- {"node_id":1377,"text":"户名","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":15,"box":[310,142,14,7]}
- {"node_id":1378,"text":"上海绰琪新型建材科技有限公司","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":16,"box":[339,142,85,6]}
- {"node_id":1379,"text":"开户行","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":17,"box":[138,152,20,9]}
- {"node_id":1380,"text":"兴业银行成都分行专业处理中心","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":18,"box":[166,153,86,6]}
- {"node_id":1381,"text":"开户行","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":19,"box":[310,152,20,8]}
- {"node_id":1382,"text":"中国农业银行股份有限公司上海鲁汇支行","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":20,"box":[339,153,109,6]}
- {"node_id":1383,"text":"金额(小写)","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":21,"box":[119,164,34,6]}
- {"node_id":1384,"text":"2201906.69","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":22,"box":[165,164,35,6]}
- {"node_id":1385,"text":"金额(大写)","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":23,"box":[292,164,33,6]}
- {"node_id":1386,"text":"贰佰贰拾万壹仟玖佰零陆元陆角玖分","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":24,"box":[338,164,98,6]}
- {"node_id":1387,"text":"币种","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":25,"box":[132,174,13,7]}
- {"node_id":1388,"text":"人民币","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":26,"box":[166,174,19,7]}
- {"node_id":1389,"text":"摘要","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":27,"box":[131,185,15,7]}
- {"node_id":1390,"text":"转账存款","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":28,"box":[166,185,25,7]}
- {"node_id":1391,"text":"交易时间","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":29,"box":[125,196,26,7]}
- {"node_id":1392,"text":"2022-06-0215:33:14","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":30,"box":[166,196,61,7]}
- {"node_id":1393,"text":"交易渠道","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":31,"box":[298,174,25,7]}
- {"node_id":1394,"text":"CNPS ","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":32,"box":[340,176,14,4]}
- {"node_id":1395,"text":"凭证号","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":33,"box":[301,185,20,7]}
- {"node_id":1396,"text":"09032550100000550","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":34,"box":[338,185,61,6]}
- {"node_id":1397,"text":"会计日期","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":35,"box":[298,196,24,7]}
- {"node_id":1398,"text":"20220602","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":36,"box":[338,196,30,7]}
- {"node_id":1399,"text":"无+CCTe-fk220602003","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":37,"box":[260,207,68,6]}
- {"node_id":1400,"text":"附言","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":38,"box":[131,219,14,7]}
- {"node_id":1401,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":39,"box":[116,247,175,6]}
- {"node_id":1402,"text":"打印日期:2022-09-02","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":40,"box":[407,247,60,6]}
- {"node_id":1403,"text":"中国农业银行","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":41,"box":[126,337,68,10]}
- {"node_id":1404,"text":"网上银行电子回单","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":42,"box":[245,339,72,9]}
- {"node_id":1405,"text":"LGIUCLLTILAL BANK OFOIINA ","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":43,"box":[128,352,63,2]}
- {"node_id":1406,"text":"客户收付款入账通知","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":44,"box":[251,350,61,7]}
- {"node_id":1407,"text":[["回单编号:09003189875062966994第2次打印","回单编号:09003189875062966994第2次打印","回单编号:09003189875062966994第2次打印","回单编号:09003189875062966994第2次打印","回单编号:09003189875062966994第2次打印","回单编号:09003189875062966994第2次打印"],["付款方","账号","431090100100420072","收款方","账号","03410100040019001"],["付款方","户名","内蒙古通威高纯晶硅有限公司","收款方","户名","上海绰琪新型建材科技有限公司"],["付款方","开户行","兴业银行成都分行专业处理中心","收款方","开户行","中国农业银行股份有限公司上海鲁汇支行"],["付款方","开户行","兴业银行成都分行专业处理中心","收款方","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","1024701.67","金额(大写)","金额(大写)","壹佰零贰万肆仟柒佰零壹元陆角柒分"],["币种","币种","人民币","交易渠道","交易渠道","CNPS "],["摘要","摘要","转账存款","凭证号","凭证号","09032550100000550"],["交易时间","交易时间","2022-07-0410:24:02","会计日期","会计日期","20220704"],["附言","附言","无+CCTe-Fk220624001","无+CCTe-Fk220624001","无+CCTe-Fk220624001","无+CCTe-Fk220624001"],[""]],"node_type":"table","parent":1327,"children":[],"para_type":"table","pageno":88,"layout_index":45,"box":[105,360,381,123]}
- {"node_id":1408,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":46,"box":[110,490,176,6]}
- {"node_id":1409,"text":"打印日期:2022-09-02","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":47,"box":[404,490,60,6]}
- {"node_id":1410,"text":"中国农业银行","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":48,"box":[123,539,68,10]}
- {"node_id":1411,"text":"网上银行电子回单","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":49,"box":[244,540,73,9]}
- {"node_id":1412,"text":"ACRKCLUTILAL BASK OFOINA ","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":50,"box":[124,553,68,2]}
- {"node_id":1413,"text":"客户收付款入账通知","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":51,"box":[250,552,62,7]}
- {"node_id":1414,"text":[["回单编号:09004386008549896067第2次打印","回单编号:09004386008549896067第2次打印","回单编号:09004386008549896067第2次打印","回单编号:09004386008549896067第2次打印","回单编号:09004386008549896067第2次打印","回单编号:09004386008549896067第2次打印"],["付款方","账号","431090100100420072","收款方","账号","03410100040019001"],["付款方","账号","431090100100420072","收款方","账号","03410100040019001"],["付款方","户","内蒙古通威高纯晶硅有限公司","收款方","户名","上海绰琪新型建材科技有限公司"],["付款方","开户行","兴业银行成都分行专业处理中心","收款方","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","2017824.47","金额(大写)","金额(大写)","贰佰零壹万柒仟捌佰贰拾肆元肆角柒分"],["金额(小写)","金额(小写)","2017824.47","金额(大写)","金额(大写)","贰佰零壹万柒仟捌佰贰拾肆元肆角柒分"],["币种","币种","人民币","交易渠道","交易渠道","CNPS "],["摘要","摘要","转账存款","凭证号","凭证号","09032550100000550"],["交易时间","交易时间","2022-07-2114:19:49","会计日期","会计日期","20220721"],["附言","附言","无+CCTE-FK220715021","无+CCTE-FK220715021","无+CCTE-FK220715021","无+CCTE-FK220715021"],[""]],"node_type":"table","parent":1327,"children":[],"para_type":"table","pageno":88,"layout_index":52,"box":[101,562,388,125]}
- {"node_id":1415,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":53,"box":[106,694,179,7]}
- {"node_id":1416,"text":"打印日期:2022-09-02","node_type":"text","parent":1327,"children":[],"para_type":"text","pageno":88,"layout_index":54,"box":[406,694,61,6]}
- {"node_id":1417,"text":"89","node_type":"head_tail","parent":1327,"children":[],"para_type":"head_tail","pageno":88,"layout_index":55,"box":[291,777,11,9]}
- {"node_id":1418,"text":"(三)近年类似项目业绩(案例五)","node_type":"title","parent":1327,"children":[1419,1420,1421,1422,1423,1424],"para_type":"title_4","pageno":89,"layout_index":0,"box":[185,84,225,15]}
- {"node_id":1419,"text":[["项目名称","广州泰和肿瘤医院"],["项目所在地","广州市知识城"],["发包人名称","上海康多建筑工程有限公司"],["发包人地址","上海"],["发包人联系人及电话","沙兴建15821015158 "],["合同价格","202万元"],["开工日期","2020-6-1 "],["竣工日期","2020-8-1 "],["承担的工作","新建医院内除病房外大部分区域,无机磨石施工"],["工程质量","合格"],["项目经理","胡居雷"],["技术负责人","白双龙"],["总监理工程师及电话"],["项目描述","项目面积4000多平米,推荐绰琪鑫磨石5+1体系,即5cm抗裂砂浆找平层和1cm无机磨石面层。"],["备注"],[""]],"node_type":"table","parent":1418,"children":[],"para_type":"table","pageno":89,"layout_index":1,"box":[70,106,454,457]}
- {"node_id":1420,"text":"备注:1、类似项目业绩指具有2016年1月1日(以合同签订时间为准)以来已完(竣)工的无机磨石地坪施工业绩,其中有单项合同金额在200万元以上或者面积不少于2000平方无机磨石地坪工程施工业绩。","node_type":"text","parent":1418,"children":[],"para_type":"text","pageno":89,"layout_index":2,"box":[44,584,506,29]}
- {"node_id":1421,"text":"2、投标人应随此表附上类似业绩证明材料,如合同及相关内容的已标价工程量清单、竣工验收单以及汇款证明或发票等(3项缺一不可)的彩色扫描件。证明材料应能反映合同签订时间、工程类别及特征、合同金额或地坪面积等信息,否则,评标委员会将不予采信。","node_type":"text","parent":1418,"children":[],"para_type":"text","pageno":89,"layout_index":3,"box":[44,622,503,45]}
- {"node_id":1422,"text":"3、如有多个类似项目,可按此表格扩展。每张表格只填写一个项目,并标明序号。","node_type":"text","parent":1418,"children":[],"para_type":"text","pageno":89,"layout_index":4,"box":[65,675,383,11]}
- {"node_id":1423,"text":"90 ","node_type":"head_tail","parent":1418,"children":[],"para_type":"head_tail","pageno":89,"layout_index":5,"box":[293,779,12,9]}
- {"node_id":1424,"text":"合同编号","node_type":"text","parent":1418,"children":[],"para_type":"text","pageno":90,"layout_index":0,"box":[339,72,35,8]}
- {"node_id":1425,"text":"建筑工程专业分包施工合同","node_type":"title","parent":0,"children":[1426,1427,1428,1432,1435,1440,1450,1478,1481],"para_type":"title_1","pageno":90,"layout_index":1,"box":[203,110,161,15]}
- {"node_id":1426,"text":"发包单位(全称):上海康多建筑工程有限公司(以下简称甲方)承包单位(全称):上海新型建材科技有限公司(以下简称乙方)","node_type":"text","parent":1425,"children":[],"para_type":"text","pageno":90,"layout_index":2,"box":[121,136,273,30]}
- {"node_id":1427,"text":"按《中华人民共和合同法》《中华人民共和国建筑法》及国家和其他有关法律行政法规的规定,双方本着平等自,实信用的,结合本工程具体情况,为明确双方工程中的利、义务及责任,经甲、乙双方协商一致,特签订本合同,以资双方共同道执行。","node_type":"text","parent":1425,"children":[],"para_type":"text","pageno":90,"layout_index":3,"box":[121,190,325,66]}
- {"node_id":1428,"text":"第一条工程况","node_type":"title","parent":1425,"children":[1429,1430,1431],"para_type":"title_2","pageno":90,"layout_index":4,"box":[122,279,67,10]}
- {"node_id":1429,"text":"工程名称广州泰和瘤医院项目(一)","node_type":"text","parent":1428,"children":[],"para_type":"text","pageno":90,"layout_index":5,"box":[122,297,182,11]}
- {"node_id":1430,"text":"12工程地点:中新广州知识城起区知识大道以九龙大道,A1-2地1.3承包范围及内容:本工工范围内的品地,材采购、加工、制作、运输、保管、安装及工协调配合等一切内容,承包范围以甲方终认的施工图为","node_type":"text","parent":1428,"children":[],"para_type":"text","pageno":90,"layout_index":6,"box":[122,315,325,69]}
- {"node_id":1431,"text":"分包工程量:以甲方终验收合格确认的乙方实际施工面积为准。","node_type":"text","parent":1428,"children":[],"para_type":"text","pageno":90,"layout_index":7,"box":[122,390,259,11]}
- {"node_id":1432,"text":"第二条工程承包方式","node_type":"title","parent":1425,"children":[1433],"para_type":"title_2","pageno":90,"layout_index":8,"box":[122,424,90,9]}
- {"node_id":1433,"text":"2.1承包方式","node_type":"title","parent":1432,"children":[1434],"para_type":"title_6","pageno":90,"layout_index":9,"box":[122,442,55,9]}
- {"node_id":1434,"text":"采用包工、包材料、包装、包工、包量、包安全、包文、包工理过收,完成本下工的人工,材料,机措施等一切工作。","node_type":"text","parent":1433,"children":[],"para_type":"text","pageno":90,"layout_index":10,"box":[122,458,325,48]}
- {"node_id":1435,"text":"第三条施工工期","node_type":"title","parent":1425,"children":[1436,1437,1438,1439],"para_type":"title_2","pageno":90,"layout_index":11,"box":[123,529,76,10]}
- {"node_id":1436,"text":"3.1本分包工总工期为:60个日历天,计划开工间为220年6月1日计划完工时间为:2020年8月1日,具体的开工时间,以甲方下达的书面为准:据甲方及主要分标分区完成,本合工有调整,以甲方代表书面知为,如因乙方原因导致的工,每一天承担同金千分之","node_type":"text","parent":1435,"children":[],"para_type":"text","pageno":90,"layout_index":12,"box":[122,542,328,57]}
- {"node_id":1437,"text":"〡共体","node_type":"head_tail","parent":1435,"children":[],"para_type":"head_tail","pageno":90,"layout_index":13,"box":[259,618,54,7]}
- {"node_id":1438,"text":"91","node_type":"head_tail","parent":1435,"children":[],"para_type":"head_tail","pageno":90,"layout_index":14,"box":[291,777,10,9]}
- {"node_id":1439,"text":"胆由此发生的全部费用,并相应延长工期,若验收不合格,乙方承担由此发生的全部费用,工期不予顺延。","node_type":"text","parent":1435,"children":[],"para_type":"text","pageno":91,"layout_index":0,"box":[164,63,338,23]}
- {"node_id":1440,"text":"第五条工程价款","node_type":"title","parent":1425,"children":[1441,1442,1443],"para_type":"title_2","pageno":91,"layout_index":1,"box":[164,107,75,9]}
- {"node_id":1441,"text":"5.1本合同为综合单价包干合同,工程量按实结算,含税包干综合单价为500元\/平方米(含税金),合同总价(含)定人民币2027500元(大写:贰佰零贰万柒伍佰元整),详见合同附件-报价清单。","node_type":"text","parent":1440,"children":[],"para_type":"text","pageno":91,"layout_index":2,"box":[162,120,340,39]}
- {"node_id":1442,"text":"在合同履行期间,如国家税率政策发生调整,则合同金额按最新税率相应调整","node_type":"text","parent":1440,"children":[],"para_type":"text","pageno":91,"layout_index":3,"box":[164,163,320,11]}
- {"node_id":1443,"text":"5.2本工程采用以下工程支付方式:","node_type":"title","parent":1440,"children":[1444,1445,1446,1447,1448,1449],"para_type":"title_6","pageno":91,"layout_index":4,"box":[163,181,142,9]}
- {"node_id":1444,"text":"1)本合同工程款支付方式为:合同签订后甲方支付20%的预付款每月按照乙方实际完成工程量的70%支付:工程完工后支付至已完工程量的80工程工收合格并按要求交齐竣工结算资料(且经发包人认可的),完成结算后,支付至结算金额的95剩余5%保金2年陷责任期后一次性支付","node_type":"text","parent":1443,"children":[],"para_type":"text","pageno":91,"layout_index":5,"box":[163,198,340,60]}
- {"node_id":1445,"text":"2)本工程综合单价中包括但不限于除工程承包人供应材料、作、运输、安装外完成合同承包内容所需工序的人工费、材料费、机械机具费、安全生产施费、时设施费,保险费,临时停水停电造成的窝工、风雨季及季施工费、各种管理费利润、规,税金以及政策性文件规定,合所有责任,义务和风险等一切费用,53本工程乙方水电费及垃圾清运费各按结算价款的0在乙方工程款中扣除","node_type":"text","parent":1443,"children":[],"para_type":"text","pageno":91,"layout_index":6,"box":[163,265,341,76]}
- {"node_id":1446,"text":"5.4工程量计量规:按甲主审确认的实际完成的现场工程量进行结算,对乙方超出设计图纸及其他有效文件(包括设计变更、建设单位已确认的有效签证单和有效工程联系单,甲方确认的有效场签证单),范围或因乙方自身原因造成工的工程量不予计量,乙方承担由此造成的一切损失。","node_type":"text","parent":1443,"children":[],"para_type":"text","pageno":91,"layout_index":7,"box":[164,348,339,62]}
- {"node_id":1447,"text":"5.5乙方编制完整的工程量清单或施工图预算上甲方项目部及公司预结算部门审核,作为甲方支付乙方工程进度款及工结算的依据乙方未按制报,甲方暂停支付工程进度款","node_type":"text","parent":1443,"children":[],"para_type":"text","pageno":91,"layout_index":8,"box":[164,416,339,44]}
- {"node_id":1448,"text":"56乙方不按施工图工造成工等导致工程量加的,乙方无权要求变更或加合同价款。","node_type":"text","parent":1443,"children":[],"para_type":"text","pageno":91,"layout_index":9,"box":[164,468,339,27]}
- {"node_id":1449,"text":"5.7当发生业主方、甲方求或经主方,甲方同的设计变更时,价款调整的原则为:由乙方按增项目单及其单价分析表,并经甲方审定后执行","node_type":"text","parent":1443,"children":[],"para_type":"text","pageno":91,"layout_index":10,"box":[165,501,338,27]}
- {"node_id":1450,"text":"第六条甲乙双方代表","node_type":"title","parent":1425,"children":[1451,1452,1453,1454,1455,1460],"para_type":"title_2","pageno":91,"layout_index":11,"box":[165,548,112,9]}
- {"node_id":1451,"text":"第","node_type":"head_tail","parent":1450,"children":[],"para_type":"head_tail","pageno":91,"layout_index":12,"box":[307,577,56,7]}
- {"node_id":1452,"text":"92","node_type":"head_tail","parent":1450,"children":[],"para_type":"head_tail","pageno":91,"layout_index":13,"box":[291,777,11,9]}
- {"node_id":1453,"text":"61甲方驻工地代表:","node_type":"text","parent":1450,"children":[],"para_type":"text","pageno":92,"layout_index":0,"box":[126,74,82,9]}
- {"node_id":1454,"text":"姓名:朱金生职务:项目经理","node_type":"text","parent":1450,"children":[],"para_type":"text","pageno":92,"layout_index":1,"box":[151,89,131,9]}
- {"node_id":1455,"text":"6.2乙方驻工地代表:","node_type":"title","parent":1450,"children":[1456,1457,1458,1459],"para_type":"title_6","pageno":92,"layout_index":2,"box":[126,105,83,8]}
- {"node_id":1456,"text":"姓名:胡居雷","node_type":"text","parent":1455,"children":[],"para_type":"text","pageno":92,"layout_index":3,"box":[152,120,93,9]}
- {"node_id":1457,"text":"职务:项目经理","node_type":"text","parent":1455,"children":[],"para_type":"text","pageno":92,"layout_index":4,"box":[245,119,67,9]}
- {"node_id":1458,"text":"6.3乙方负责到甲方领取工程进度款、办理工结算及领取工程结算款的人员必须持有授权委托书,授权委托书中明确明授权的内容、授权权限、权期限等且乙方对其授权委托人的一切行为负责,没有授权委托书,甲方有权不予支付工程款,由此发生的一切责任和费用,均由乙方承担。","node_type":"text","parent":1455,"children":[],"para_type":"text","pageno":92,"layout_index":5,"box":[126,133,326,56]}
- {"node_id":1459,"text":"第七条甲、乙双方责任;","node_type":"text","parent":1455,"children":[],"para_type":"text","pageno":92,"layout_index":6,"box":[128,210,105,9]}
- {"node_id":1460,"text":"7.1甲方责任:","node_type":"title","parent":1450,"children":[1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477],"para_type":"title_6","pageno":92,"layout_index":7,"box":[127,225,55,9]}
- {"node_id":1461,"text":"工程款支付:非不可抗力甲方不得延期支付本合同规定的付款节点","node_type":"text","parent":1460,"children":[],"para_type":"text","pageno":92,"layout_index":8,"box":[128,239,262,11]}
- {"node_id":1462,"text":"(1)施工管理:","node_type":"text","parent":1460,"children":[],"para_type":"text","pageno":92,"layout_index":9,"box":[131,255,58,9]}
- {"node_id":1463,"text":"编和下发与工程相关的各类管理办法,规章制度等,并向乙方交,要求乙方遵执行及时向乙方下达各类工指令,负责与业主、设计、监理等单联协调:进行工程实体交工,资料及工图的交工验收。","node_type":"text","parent":1460,"children":[],"para_type":"text","pageno":92,"layout_index":10,"box":[128,268,324,42]}
- {"node_id":1464,"text":"(2)质量管理","node_type":"text","parent":1460,"children":[],"para_type":"text","pageno":92,"layout_index":11,"box":[131,316,58,9]}
- {"node_id":1465,"text":"有权对乙方量管理体系的评价,运行督和纠正:管理和检查方施工质量,对乙方的质量进行验收。","node_type":"text","parent":1460,"children":[],"para_type":"text","pageno":92,"layout_index":12,"box":[128,329,323,25]}
- {"node_id":1466,"text":"(3)安全管理:","node_type":"text","parent":1460,"children":[],"para_type":"text","pageno":92,"layout_index":13,"box":[132,360,56,9]}
- {"node_id":1467,"text":"负责对乙方安全管理体系的评价,运行监督和纠正;对乙方施工过程进行安全管理和检查。","node_type":"text","parent":1460,"children":[],"para_type":"text","pageno":92,"layout_index":14,"box":[128,374,324,26]}
- {"node_id":1468,"text":"(4)预结算管理:","node_type":"text","parent":1460,"children":[],"para_type":"text","pageno":92,"layout_index":15,"box":[132,406,67,9]}
- {"node_id":1469,"text":"按照合同约定及时审核乙方上报的工程量、支付工程度款等:在施工过程中发生合同变更事由,及时与乙方协商签订《补充协议)","node_type":"text","parent":1460,"children":[],"para_type":"text","pageno":92,"layout_index":16,"box":[128,418,324,27]}
- {"node_id":1470,"text":"()现场提供临时设施:","node_type":"text","parent":1460,"children":[],"para_type":"text","pageno":92,"layout_index":17,"box":[132,450,94,9]}
- {"node_id":1471,"text":"提供临时用水用电接点提供临时仓库场(设由乙方完成)垃圾场","node_type":"text","parent":1460,"children":[],"para_type":"text","pageno":92,"layout_index":18,"box":[128,464,325,27]}
- {"node_id":1472,"text":"(6)在条件允许的情况下提供乙方住宿用房,住宿费用由乙方承担,宿舍收费标准为1000元\/间月,空调费600元\/间,月,从工程款中扣除。7.2乙方责任:","node_type":"text","parent":1460,"children":[],"para_type":"text","pageno":92,"layout_index":19,"box":[128,494,324,41]}
- {"node_id":1473,"text":"(1)施工管理:","node_type":"text","parent":1460,"children":[],"para_type":"text","pageno":92,"layout_index":20,"box":[133,540,57,9]}
- {"node_id":1474,"text":"对甲方下发的各类管理办法,规章制度和施工指令等无条件执行;从甲方的指挥,协调和管理,及时参加甲方组织的各类施工管理活动,满足甲方及业主、理的要求:业主,理下达指令,第一时间通知甲方未经甲方认可,乙方不得单","node_type":"text","parent":1460,"children":[],"para_type":"text","pageno":92,"layout_index":21,"box":[129,554,325,42]}
- {"node_id":1475,"text":"第418","node_type":"head_tail","parent":1460,"children":[],"para_type":"head_tail","pageno":92,"layout_index":22,"box":[266,617,53,6]}
- {"node_id":1476,"text":"93","node_type":"head_tail","parent":1460,"children":[],"para_type":"head_tail","pageno":92,"layout_index":23,"box":[291,777,10,9]}
- {"node_id":1477,"text":"15.3本合同解除后,甲方按乙方已完工程量计算应付工程款(应付工程款=甲方最审定工程款-已结算工程款-保修金-违约金-因终止合同给甲方造成的损失及相关费用)若甲方已超付给乙方,乙方须在接到甲方书面通知的3日内返还甲方的超付款","node_type":"text","parent":1460,"children":[],"para_type":"text","pageno":93,"layout_index":0,"box":[152,64,316,50]}
- {"node_id":1478,"text":"第十六条争议与解决方式","node_type":"title","parent":1425,"children":[1479,1480],"para_type":"title_2","pageno":93,"layout_index":1,"box":[152,140,108,10]}
- {"node_id":1479,"text":"16.1双方在履行合同时发生争议,应由双方友好协商解决协商不成向上海法院或仲裁委员会申请仲裁。","node_type":"text","parent":1478,"children":[],"para_type":"text","pageno":93,"layout_index":2,"box":[150,160,318,31]}
- {"node_id":1480,"text":"6.2双方发生争后,除非仲机构(法院)要求停止施工或因单方违约导致工程确已无法进行,双方同意停止施工外,乙方在其他任何情况下都应继续行合同保持施工连续,保护好已完工程,不得以解决争议为由碍合同的履行","node_type":"text","parent":1478,"children":[],"para_type":"text","pageno":93,"layout_index":3,"box":[150,198,317,44]}
- {"node_id":1481,"text":"第十七条附则","node_type":"title","parent":1425,"children":[1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505],"para_type":"title_2","pageno":93,"layout_index":4,"box":[150,265,66,11]}
- {"node_id":1482,"text":"17.1本合同自甲乙双方签字,盖章之日起生效,本合同项下的全部工程工验收通过,并且双方履行完毕本合同规定的权利和义务后,本合同自行失效","node_type":"text","parent":1481,"children":[],"para_type":"text","pageno":93,"layout_index":5,"box":[150,282,317,28]}
- {"node_id":1483,"text":"17.2组成本合同的文件条款内容出现矛盾或冲突时,按下列顺序作为合同条款优先解释顺序","node_type":"text","parent":1481,"children":[],"para_type":"text","pageno":93,"layout_index":6,"box":[149,317,317,27]}
- {"node_id":1484,"text":"(1)建筑安装工程施工分包合同","node_type":"text","parent":1481,"children":[],"para_type":"text","pageno":93,"layout_index":7,"box":[154,350,127,10]}
- {"node_id":1485,"text":"(2)甲乙双方有关本工程的治,变更,补充等书面协议及合同附件","node_type":"text","parent":1481,"children":[],"para_type":"text","pageno":93,"layout_index":8,"box":[155,367,266,10]}
- {"node_id":1486,"text":"(3)甲方有关管理制度","node_type":"text","parent":1481,"children":[],"para_type":"text","pageno":93,"layout_index":9,"box":[154,384,92,10]}
- {"node_id":1487,"text":"(4)标准。规范及有关技术文件","node_type":"text","parent":1481,"children":[],"para_type":"text","pageno":93,"layout_index":10,"box":[154,400,127,11]}
- {"node_id":1488,"text":"(5)图纸","node_type":"text","parent":1481,"children":[],"para_type":"text","pageno":93,"layout_index":11,"box":[153,416,42,12]}
- {"node_id":1489,"text":"(6)工程量清单","node_type":"text","parent":1481,"children":[],"para_type":"text","pageno":93,"layout_index":12,"box":[153,433,67,11]}
- {"node_id":1490,"text":"(7)工程报价单或预算书","node_type":"text","parent":1481,"children":[],"para_type":"text","pageno":93,"layout_index":13,"box":[154,452,101,10]}
- {"node_id":1491,"text":"17.3本合同一式二份。双方各执一份","node_type":"text","parent":1481,"children":[],"para_type":"text","pageno":93,"layout_index":14,"box":[150,469,144,10]}
- {"node_id":1492,"text":"7.4本合同未尽事,由甲乙双方协商签订补充协议。","node_type":"text","parent":1481,"children":[],"para_type":"text","pageno":93,"layout_index":15,"box":[150,489,208,10]}
- {"node_id":1493,"text":"17.5本合同附件:","node_type":"text","parent":1481,"children":[],"para_type":"text","pageno":93,"layout_index":16,"box":[150,510,65,10]}
- {"node_id":1494,"text":"附件1:报价清单","node_type":"text","parent":1481,"children":[],"para_type":"text","pageno":93,"layout_index":17,"box":[149,525,69,11]}
- {"node_id":1495,"text":"附件2:《工程质量保修书》","node_type":"text","parent":1481,"children":[],"para_type":"text","pageno":93,"layout_index":18,"box":[149,542,103,11]}
- {"node_id":1496,"text":"附件3:(施工安全生产协书》","node_type":"text","parent":1481,"children":[],"para_type":"text","pageno":93,"layout_index":19,"box":[149,558,120,12]}
- {"node_id":1497,"text":"附件4(法定代责人授权委托书》","node_type":"text","parent":1481,"children":[],"para_type":"text","pageno":93,"layout_index":20,"box":[149,576,129,11]}
- {"node_id":1498,"text":"发包单位:","node_type":"text","parent":1481,"children":[],"para_type":"text","pageno":93,"layout_index":21,"box":[149,596,39,12]}
- {"node_id":1499,"text":"承包单位:","node_type":"text","parent":1481,"children":[],"para_type":"text","pageno":93,"layout_index":22,"box":[321,598,37,10]}
- {"node_id":1500,"text":"住所","node_type":"text","parent":1481,"children":[],"para_type":"text","pageno":93,"layout_index":23,"box":[148,616,40,11]}
- {"node_id":1501,"text":"住所:","node_type":"text","parent":1481,"children":[],"para_type":"text","pageno":93,"layout_index":24,"box":[324,618,26,10]}
- {"node_id":1502,"text":"法定代表人:","node_type":"text","parent":1481,"children":[],"para_type":"text","pageno":93,"layout_index":25,"box":[148,637,49,12]}
- {"node_id":1503,"text":"法定代表人:","node_type":"text","parent":1481,"children":[],"para_type":"text","pageno":93,"layout_index":26,"box":[324,638,49,11]}
- {"node_id":1504,"text":"页共页","node_type":"head_tail","parent":1481,"children":[],"para_type":"head_tail","pageno":93,"layout_index":27,"box":[282,669,52,9]}
- {"node_id":1505,"text":"94","node_type":"head_tail","parent":1481,"children":[],"para_type":"head_tail","pageno":93,"layout_index":28,"box":[291,777,11,9]}
- {"node_id":1506,"text":"广州泰和肿瘤医院项目银行收款记录6笔合计156万元","node_type":"title","parent":0,"children":[1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551],"para_type":"title_1","pageno":94,"layout_index":0,"box":[141,52,340,14]}
- {"node_id":1507,"text":"中国农业银行","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":94,"layout_index":1,"box":[106,100,78,12]}
- {"node_id":1508,"text":"网上银行电子回单","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":94,"layout_index":2,"box":[243,102,83,10]}
- {"node_id":1509,"text":"AGRICULTURAL BANK OF CHINA ","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":94,"layout_index":3,"box":[108,116,74,3]}
- {"node_id":1510,"text":"客户收付款入账通知","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":94,"layout_index":4,"box":[250,115,69,7]}
- {"node_id":1511,"text":[["回单编号:09006196426509766152第1次打印","回单编号:09006196426509766152第1次打印","回单编号:09006196426509766152第1次打印","回单编号:09006196426509766152第1次打印","回单编号:09006196426509766152第1次打印","回单编号:09006196426509766152第1次打印"],["付款方","账号","217080708410001","收款方","账号","03410100040019001"],["付款方","户名","上海都匠建设工程有限公司","收款方","户名","上海绰琪新型建材科技有限公司"],["付款方","开户行","招商银行上海分行民生支行","收款方","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","202750.00","金额(大写)","金额(大写)","贰拾万贰仟柒佰伍拾元整"],["币种","币种","人民币","交易渠道","交易渠道","BEPS "],["摘要","摘要","转账存款","凭证号","凭证号","09032550100000550"],["交易时间","交易时间","2021-02-0916:18:29","会计日期","会计日期","20210209"],["附言","附言","研发费内部成员单位账号:户名:","研发费内部成员单位账号:户名:","研发费内部成员单位账号:户名:","研发费内部成员单位账号:户名:"],[""]],"node_type":"table","parent":1506,"children":[],"para_type":"table","pageno":94,"layout_index":5,"box":[81,126,440,142]}
- {"node_id":1512,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账。","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":94,"layout_index":6,"box":[87,276,202,6]}
- {"node_id":1513,"text":"打印日期:2022-09-02","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":94,"layout_index":7,"box":[426,276,69,6]}
- {"node_id":1514,"text":"中国农业银行","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":94,"layout_index":8,"box":[110,330,77,11]}
- {"node_id":1515,"text":"网上银行电子回单","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":94,"layout_index":9,"box":[242,330,82,11]}
- {"node_id":1516,"text":"AGRICULTURAL BANK OF CHINA ","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":94,"layout_index":10,"box":[112,345,72,2]}
- {"node_id":1517,"text":"客户收付款入账通知","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":94,"layout_index":11,"box":[249,344,67,7]}
- {"node_id":1518,"text":[["回单编号:09005400948294662780第2次打印","回单编号:09005400948294662780第2次打印","回单编号:09005400948294662780第2次打印","回单编号:09005400948294662780第2次打印","回单编号:09005400948294662780第2次打印","回单编号:09005400948294662780第2次打印"],["付款方","账号","121934044910201","收款方","账号","03410100040019001"],["付款方","户名","上海康多建筑工程有限公司","收款方","户名","上海绰琪新型建材科技有限公司"],["付款方","开户行","招商银行上海分行中山支行","收款方","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","193730.00","金额(大写)","金额(大写)","壹拾玖万叁仟柒佰叁拾元整"],["币种","币种","人民币","交易渠道","交易渠道","BEPS "],["摘要","摘要","转账存款","凭证号","凭证号","09032550100000550"],["交易时间","交易时间","2020-11-3017:20:04","会计日期","会计日期","20201130"],["附言","附言","材料及加工费内部成员单位账号:户名:","材料及加工费内部成员单位账号:户名:","材料及加工费内部成员单位账号:户名:","材料及加工费内部成员单位账号:户名:"],[""]],"node_type":"table","parent":1506,"children":[],"para_type":"table","pageno":94,"layout_index":12,"box":[87,355,422,136]}
- {"node_id":1519,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账。","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":94,"layout_index":13,"box":[93,499,195,6]}
- {"node_id":1520,"text":"打印日期:2022-09-02","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":94,"layout_index":14,"box":[419,499,66,6]}
- {"node_id":1521,"text":"中国农业银行","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":94,"layout_index":15,"box":[105,539,79,12]}
- {"node_id":1522,"text":"网上银行电子回单","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":94,"layout_index":16,"box":[242,541,82,10]}
- {"node_id":1523,"text":"ACILICULTURAL BANK OF OINA ","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":94,"layout_index":17,"box":[107,556,76,2]}
- {"node_id":1524,"text":"客户收付款入账通知","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":94,"layout_index":18,"box":[248,554,70,7]}
- {"node_id":1525,"text":[["回单编号:06680425927465375200第1次打印","回单编号:06680425927465375200第1次打印","回单编号:06680425927465375200第1次打印","回单编号:06680425927465375200第1次打印","回单编号:06680425927465375200第1次打印","回单编号:06680425927465375200第1次打印"],["付款方","账号","121934044910201","收款方","账号","03410100040019001"],["付款方","户名","上海康多建筑工程有限公司","收款方","户名","上海绰琪新型建材科技有限公司"],["付款方","开户行","招商银行上海分行中山支行","收款方","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","240347.00","金额(大写)","金额(大写)","贰拾肆万零叁佰肆拾柒元整"],["币种","币种","人民币","交易渠道","交易渠道","BEPS "],["摘要","摘要","转账存款","凭证号","凭证号","09032550100000550"],["交易时间","交易时间","2020-10-2815:25:13","会计日期","会计日期","20201028"],["附言","附言","货款内部成员单位账号:户名:","货款内部成员单位账号:户名:","货款内部成员单位账号:户名:","货款内部成员单位账号:户名:"],[""]],"node_type":"table","parent":1506,"children":[],"para_type":"table","pageno":94,"layout_index":19,"box":[81,565,437,141]}
- {"node_id":1526,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账。","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":94,"layout_index":20,"box":[87,714,201,6]}
- {"node_id":1527,"text":"打印日期:2022-09-02","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":94,"layout_index":21,"box":[424,714,69,6]}
- {"node_id":1528,"text":"95","node_type":"head_tail","parent":1506,"children":[],"para_type":"head_tail","pageno":94,"layout_index":22,"box":[291,777,11,9]}
- {"node_id":1529,"text":"中国农业银行","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":95,"layout_index":0,"box":[113,71,77,12]}
- {"node_id":1530,"text":"网上银行电子回单","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":95,"layout_index":1,"box":[249,72,81,10]}
- {"node_id":1531,"text":"AGRUCULTURAL BANK OF CHINA ","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":95,"layout_index":2,"box":[114,87,74,2]}
- {"node_id":1532,"text":"客户收付款入账通知","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":95,"layout_index":3,"box":[254,85,71,9]}
- {"node_id":1533,"text":[["回单编号:06680425927465375200第1次打印","回单编号:06680425927465375200第1次打印","回单编号:06680425927465375200第1次打印","回单编号:06680425927465375200第1次打印","回单编号:06680425927465375200第1次打印","回单编号:06680425927465375200第1次打印"],["付款方","账号","121934044910201","收款方","账号","03410100040019001"],["付款方","户名","上海康多建筑工程有限公司","收款方","户名","上海绰琪新型建材科技有限公司"],["付款方","开户行","招商银行上海分行中山支行","收款方","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","240347.00","金额(大写)","金额(大写)","贰拾肆万零叁佰肆拾柒元整"],["币种","币种","人民币","交易渠道","交易渠道","BEPS "],["摘要","摘要","转账存款","凭证号","凭证号","09032550100000550"],["交易时间","交易时间","2020-10-2815:25:13","会计日期","会计日期","20201028"],["附言","附言","货款内部成员单位账号:户名:","货款内部成员单位账号:户名:","货款内部成员单位账号:户名:","货款内部成员单位账号:户名:"],[""]],"node_type":"table","parent":1506,"children":[],"para_type":"table","pageno":95,"layout_index":4,"box":[88,97,434,140]}
- {"node_id":1534,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账。","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":95,"layout_index":5,"box":[95,245,200,7]}
- {"node_id":1535,"text":"打印日期:2022-09-02","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":95,"layout_index":6,"box":[430,245,69,7]}
- {"node_id":1536,"text":"中国农业银行","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":95,"layout_index":7,"box":[122,297,71,10]}
- {"node_id":1537,"text":"网上银行电子回单","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":95,"layout_index":8,"box":[244,298,75,10]}
- {"node_id":1538,"text":"AGRUCULTUILAL BANK OF CHINA ","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":95,"layout_index":9,"box":[124,312,68,2]}
- {"node_id":1539,"text":"客户收付款入账通知","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":95,"layout_index":10,"box":[250,310,62,7]}
- {"node_id":1540,"text":[["回单编号:06270256780046717832第1次打印","回单编号:06270256780046717832第1次打印","回单编号:06270256780046717832第1次打印","回单编号:06270256780046717832第1次打印","回单编号:06270256780046717832第1次打印","回单编号:06270256780046717832第1次打印"],["付款方","账号","121934044910201","收款方","账号","03410100040019001"],["付款方","户名","上海康多建筑工程有限公司","收款方","户名","上海绰琪新型建材科技有限公司"],["付款方","开户行","招商银行上海分行中山支行","收款方","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","259913.33","金额(大写)","金额(大写)","贰拾伍万玖仟玖佰壹拾叁元叁角叁分"],["币种","币种","人民币","交易渠道","交易渠道","BEPS "],["摘要","摘要","转账存款","凭证号","凭证号","09032550100000550"],["交易时间","交易时间","2020-09-1709:40:27","会计日期","会计日期","20200917"],["附言","附言","货款内部成员单位账号:户名:","货款内部成员单位账号:户名:","货款内部成员单位账号:户名:","货款内部成员单位账号:户名:"],[""]],"node_type":"table","parent":1506,"children":[],"para_type":"table","pageno":95,"layout_index":11,"box":[100,320,391,126]}
- {"node_id":1541,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账。","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":95,"layout_index":12,"box":[106,453,180,6]}
- {"node_id":1542,"text":"打印日期:2022-09-02","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":95,"layout_index":13,"box":[408,454,61,6]}
- {"node_id":1543,"text":"中国农业银行","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":95,"layout_index":14,"box":[136,500,74,11]}
- {"node_id":1544,"text":"网上银行电子回单","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":95,"layout_index":15,"box":[266,502,79,9]}
- {"node_id":1545,"text":"AGRICUITURAL. BANK OF CHINA ","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":95,"layout_index":16,"box":[137,516,72,2]}
- {"node_id":1546,"text":"客户收付款入账通知","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":95,"layout_index":17,"box":[272,514,67,7]}
- {"node_id":1547,"text":[["回单编号:05560432685492586089第1次打印","回单编号:05560432685492586089第1次打印","回单编号:05560432685492586089第1次打印","回单编号:05560432685492586089第1次打印","回单编号:05560432685492586089第1次打印","回单编号:05560432685492586089第1次打印"],["付款方","账号","121934044910201","收款方","账号","03410100040019001"],["付款方","账号","121934044910201","收款方","账号","03410100040019001"],["付款方","户名","上海康多建筑工程有限公司","收款方","户名","上海绰琪新型建材科技有限公司"],["付款方","开户行","招商银行上海分行中山支行","收款方","开户行","中国农业银行股份有限公司上海鲁汇支行"],["金额(小写)","金额(小写)","405500.00","金额(大写)","金额(大写)","肆拾万伍仟伍佰元整"],["币种","币种","人民币","交易渠道","交易渠道","BEPS "],["摘要","摘要","转账存款","凭证号","凭证号","09032550100000550"],["交易时间","交易时间","2020-07-0814:25:55","会计日期","会计日期","20200708"],["附言","附言","材料款内部成员单位账号:户名:","材料款内部成员单位账号:户名:","材料款内部成员单位账号:户名:","材料款内部成员单位账号:户名:"],[""]],"node_type":"table","parent":1506,"children":[],"para_type":"table","pageno":95,"layout_index":18,"box":[112,525,417,134]}
- {"node_id":1548,"text":"电子回单可以重复打印,回单编号相同表示同一笔业务,请勿重复记账。","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":95,"layout_index":19,"box":[118,666,192,6]}
- {"node_id":1549,"text":"打印日期:2022-09-02","node_type":"text","parent":1506,"children":[],"para_type":"text","pageno":95,"layout_index":20,"box":[440,666,65,6]}
- {"node_id":1550,"text":"96","node_type":"head_tail","parent":1506,"children":[],"para_type":"head_tail","pageno":95,"layout_index":21,"box":[291,777,11,9]}
- {"node_id":1551,"text":"(四)正在施工的和新承接的项目情况表(案例六)","node_type":"title","parent":1506,"children":[1552,1553,1554],"para_type":"title_4","pageno":96,"layout_index":0,"box":[136,53,323,15]}
- {"node_id":1552,"text":[["项目名称","浙江佛学院二期"],["项目所在地","宁波市溪口镇"],["发包人名称","苏州金螳螂股份有限公司"],["发包人地址","苏州市"],["发包人电话","孔经理15995882810 "],["签约合同价","320万元"],["开工日期","2021-12-10 "],["计划竣工日期","2022-10-10 "],["承担的工作","佛堂一楼大厅无机磨石,预制磨石盖板"],["工程质量","合格"],["项目经理","胡居雷"],["技术负责人","白双龙"],["总监理工程师及电话","胡经理15201848666 "],["项目描述","项目面积6000多平米,推荐绰琪鑫磨石5+1体系,即5cm抗裂砂浆找平层和1cm无机磨石面层,地面有许多排气孔和指示灯,施工环境复杂,公司深化设计和精细施工,完成项目,等待验收。"],["备注"],[""]],"node_type":"table","parent":1551,"children":[],"para_type":"table","pageno":96,"layout_index":1,"box":[84,75,425,572]}
- {"node_id":1553,"text":"备注:本表后附中标通知书和(或)合同协议书扫描件。每张表格只填写一个项目,并标明序号。","node_type":"text","parent":1551,"children":[],"para_type":"text","pageno":96,"layout_index":2,"box":[82,670,451,11]}
- {"node_id":1554,"text":"97 ","node_type":"head_tail","parent":1551,"children":[],"para_type":"head_tail","pageno":96,"layout_index":3,"box":[293,779,12,9]}
- {"node_id":1555,"text":"浙江佛学院二期项目中标通知书","node_type":"title","parent":0,"children":[1556,1557,1558,1559,1560,1561,1562,1563,1564,1576,1582],"para_type":"title_1","pageno":97,"layout_index":0,"box":[211,51,224,16]}
- {"node_id":1556,"text":"工作联系单","node_type":"text","parent":1555,"children":[],"para_type":"text","pageno":97,"layout_index":1,"box":[137,109,56,13]}
- {"node_id":1557,"text":"0-3通用表格","node_type":"text","parent":1555,"children":[],"para_type":"text","pageno":97,"layout_index":2,"box":[418,112,71,11]}
- {"node_id":1558,"text":"a。根据项目的实施中需要沟通、协调或解决的事项,未指定表单的,可用本表单。反映问题简洁明了,措辞能够达到协调、解决问题的目的。","node_type":"text","parent":1555,"children":[],"para_type":"text","pageno":97,"layout_index":3,"box":[133,128,290,21]}
- {"node_id":1559,"text":[["工程名称","浙江佛学院二期(弥勒圣坛)工程一装饰装修工程","分类编号","JTL "],["致:上海绰琪关于浙江佛学院(二期)弥勒圣坛项目-龙华法堂地面超精细地坪施工进场通知根据我司12月初浙江佛学院(二期)弥勒圣坛项目-龙华法堂地面超精细地坪招标工作中标结果,经综合评审,确认贵司为本次招标的中标方;因我司中标及合同签约流程较长,为配合我司项目部工期进度要求,现要求贵司收到我司项目部本工作联系单即日起,安排人员进场,与我司项目部人员进行对接配合。苏州金螳螂建筑装饰股份有限公司二〇二一年十二月三日项目经理部(章)(附件共\/页)项目经理十日期:20b1.7-3","致:上海绰琪关于浙江佛学院(二期)弥勒圣坛项目-龙华法堂地面超精细地坪施工进场通知根据我司12月初浙江佛学院(二期)弥勒圣坛项目-龙华法堂地面超精细地坪招标工作中标结果,经综合评审,确认贵司为本次招标的中标方;因我司中标及合同签约流程较长,为配合我司项目部工期进度要求,现要求贵司收到我司项目部本工作联系单即日起,安排人员进场,与我司项目部人员进行对接配合。苏州金螳螂建筑装饰股份有限公司二〇二一年十二月三日项目经理部(章)(附件共\/页)项目经理十日期:20b1.7-3","致:上海绰琪关于浙江佛学院(二期)弥勒圣坛项目-龙华法堂地面超精细地坪施工进场通知根据我司12月初浙江佛学院(二期)弥勒圣坛项目-龙华法堂地面超精细地坪招标工作中标结果,经综合评审,确认贵司为本次招标的中标方;因我司中标及合同签约流程较长,为配合我司项目部工期进度要求,现要求贵司收到我司项目部本工作联系单即日起,安排人员进场,与我司项目部人员进行对接配合。苏州金螳螂建筑装饰股份有限公司二〇二一年十二月三日项目经理部(章)(附件共\/页)项目经理十日期:20b1.7-3","致:上海绰琪关于浙江佛学院(二期)弥勒圣坛项目-龙华法堂地面超精细地坪施工进场通知根据我司12月初浙江佛学院(二期)弥勒圣坛项目-龙华法堂地面超精细地坪招标工作中标结果,经综合评审,确认贵司为本次招标的中标方;因我司中标及合同签约流程较长,为配合我司项目部工期进度要求,现要求贵司收到我司项目部本工作联系单即日起,安排人员进场,与我司项目部人员进行对接配合。苏州金螳螂建筑装饰股份有限公司二〇二一年十二月三日项目经理部(章)(附件共\/页)项目经理十日期:20b1.7-3"],[""]],"node_type":"table","parent":1555,"children":[],"para_type":"table","pageno":97,"layout_index":4,"box":[125,158,372,481]}
- {"node_id":1560,"text":"(修订日期:2013年4月15日)","node_type":"text","parent":1555,"children":[],"para_type":"text","pageno":97,"layout_index":5,"box":[128,679,103,6]}
- {"node_id":1561,"text":"金螳螂Geypnus Gold Mantis ","node_type":"text","parent":1555,"children":[],"para_type":"text","pageno":97,"layout_index":6,"box":[282,666,62,16]}
- {"node_id":1562,"text":"第1页共1页","node_type":"text","parent":1555,"children":[],"para_type":"text","pageno":97,"layout_index":7,"box":[444,680,51,8]}
- {"node_id":1563,"text":"98","node_type":"head_tail","parent":1555,"children":[],"para_type":"head_tail","pageno":97,"layout_index":8,"box":[291,777,11,9]}
- {"node_id":1564,"text":"(五)近年发生的诉讼和仲裁情况","node_type":"title","parent":1555,"children":[1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575],"para_type":"title_4","pageno":98,"layout_index":0,"box":[192,53,211,15]}
- {"node_id":1565,"text":[["序号","案由","双方当事人名称","处理结果或进度情况"],["无","无","无"],[""],["…","…","…","…"],[""]],"node_type":"table","parent":1564,"children":[],"para_type":"table","pageno":98,"layout_index":1,"box":[84,75,426,110]}
- {"node_id":1566,"text":"注:(1)本表为调查表。不得因投标人发生过诉讼及仲裁事项作为否决其投标、作为量化因素或评分因素,除非其中的内容涉及其他规定的评标标准,或导致中标后合同不能履行。","node_type":"text","parent":1564,"children":[],"para_type":"text","pageno":98,"layout_index":2,"box":[44,216,504,34]}
- {"node_id":1567,"text":"(2)诉讼及仲裁情况是指投标人在招投标和中标合同履行过程中发生的诉讼及仲裁事项,以及投标人认为对其生产经营活动产生重大影响的其他诉讼及仲裁事项。","node_type":"text","parent":1564,"children":[],"para_type":"text","pageno":98,"layout_index":3,"box":[44,262,504,35]}
- {"node_id":1568,"text":"投标人仅需提供与本次招标项目类型相同的诉讼及仲裁情况。","node_type":"text","parent":1564,"children":[],"para_type":"text","pageno":98,"layout_index":4,"box":[65,309,283,11]}
- {"node_id":1569,"text":"(3)诉讼包括民事诉讼和行政诉讼;仲裁是指争议双方的当事人自愿将他们之间的纠纷提交仲裁机构,由仲裁机构以第三者的身份进行裁决。","node_type":"text","parent":1564,"children":[],"para_type":"text","pageno":98,"layout_index":5,"box":[44,333,504,34]}
- {"node_id":1570,"text":"(4)“案由”是事情的原由、名称、由来,当事人争议法律关系的类别,或诉讼仲裁情况的内容提要。如“工程款结算纠纷”。","node_type":"text","parent":1564,"children":[],"para_type":"text","pageno":98,"layout_index":6,"box":[44,379,504,35]}
- {"node_id":1571,"text":"(5)“双方当事人名称”是指投标人在诉讼、仲裁中原告(申请人)、被告(被申请人)或第三人的单位名称。","node_type":"text","parent":1564,"children":[],"para_type":"text","pageno":98,"layout_index":7,"box":[60,426,495,11]}
- {"node_id":1572,"text":"(6)诉讼、仲裁的起算时间为:提起诉讼、仲裁被受理的时间,或收到法院、仲裁机构诉讼、仲裁文书的时间。","node_type":"text","parent":1564,"children":[],"para_type":"text","pageno":98,"layout_index":8,"box":[44,450,504,34]}
- {"node_id":1573,"text":"(7)诉讼、仲裁已有处理结果的,应附材料见第二章“投标人须知”3.5.5;还没有处理结果,应说明进展情况,如某某人民法院于某年某月某日已经受理。","node_type":"text","parent":1564,"children":[],"para_type":"text","pageno":98,"layout_index":9,"box":[44,496,503,35]}
- {"node_id":1574,"text":"(8)如招标文件第二章“投标人须知”3.5.5条规定的期限内没有发生的诉讼及仲裁情况,投标人在编制投标文件时,需在上表“案由”空白处声明:“经本投标人认真核查,在招标文件第二章“投标人须知”3.5.5条规定的期限内本投标人没有发生诉讼及仲裁纠纷,如不实,构成虚假,自愿承担由此引起的法律责任。特此声明。","node_type":"text","parent":1564,"children":[],"para_type":"text","pageno":98,"layout_index":10,"box":[44,543,505,58]}
- {"node_id":1575,"text":"99 ","node_type":"head_tail","parent":1564,"children":[],"para_type":"head_tail","pageno":98,"layout_index":11,"box":[293,779,12,9]}
- {"node_id":1576,"text":"第九章","node_type":"title","parent":1555,"children":[1577,1578,1579,1580,1581],"para_type":"title_2","pageno":99,"layout_index":0,"box":[97,119,57,20]}
- {"node_id":1577,"text":"投标关键技术、部件、设备及材料来源表","node_type":"text","parent":1576,"children":[],"para_type":"text","pageno":99,"layout_index":1,"box":[170,120,325,17]}
- {"node_id":1578,"text":"施工包含的的关键技术、部件及材料来源","node_type":"text","parent":1576,"children":[],"para_type":"text","pageno":99,"layout_index":2,"box":[171,157,252,14]}
- {"node_id":1579,"text":[["序号","关键部件及材料名称","规格(型号)","技术持有人或制造商","产地(国别)","国内替代技术持有人或产品制造商"],["1","无机磨石","","上海绰琪","中国","绰琪"],["1.1","抗裂砂浆找平层","","上海绰琪","中国","绰琪"],["1.2","无机磨石面层","","上海绰琪","中国","绰琪"],[""],["2","内墙涂料","","多乐士","中国"],["2.1","踢脚线内墙涂料","","多乐士","中国"],["2.2"],[""],["3","环氧地坪漆","","马贝","中国"],["3.1","环氧地坪漆","","马贝","中国"],["3.2"],[""],[""]],"node_type":"table","parent":1576,"children":[],"para_type":"table","pageno":99,"layout_index":3,"box":[83,180,427,296]}
- {"node_id":1580,"text":"备注:本合同施工所需关键技术、部件、装备及材料、专利(含自有或第三方许可)等均应列。","node_type":"text","parent":1576,"children":[],"para_type":"text","pageno":99,"layout_index":4,"box":[77,486,434,10]}
- {"node_id":1581,"text":"100","node_type":"head_tail","parent":1576,"children":[],"para_type":"head_tail","pageno":99,"layout_index":5,"box":[290,777,15,8]}
- {"node_id":1582,"text":"第十章构成投标文件的其他材料","node_type":"title","parent":1555,"children":[1583],"para_type":"title_2","pageno":100,"layout_index":0,"box":[162,51,271,19]}
- {"node_id":1583,"text":"1、招标人要求的其他文件","node_type":"title","parent":1582,"children":[1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604],"para_type":"title_5","pageno":100,"layout_index":1,"box":[68,87,139,13]}
- {"node_id":1584,"text":"(1)初步评审需要的材料","node_type":"text","parent":1583,"children":[],"para_type":"text","pageno":100,"layout_index":2,"box":[68,108,145,13]}
- {"node_id":1585,"text":"投标人应根据招标文件具体要求,提供初步评审需要的材料,包括但不限于下列内容,请将","node_type":"text","parent":1583,"children":[],"para_type":"text","pageno":100,"layout_index":3,"box":[69,132,480,13]}
- {"node_id":1586,"text":"所需材料在投标文件中的对应页码填入表格中。","node_type":"text","parent":1583,"children":[],"para_type":"text","pageno":100,"layout_index":4,"box":[171,155,252,13]}
- {"node_id":1587,"text":[["序号","名称","电子投标文件页码","备注"],["1 ","营业执照","","电子版为扫描件"],["2 ","投标人资质证书、企业安全生产许可证","","电子版为扫描件"],["3 ","无机磨石地面系统生产厂商针对本项目的授权文件","","电子版为扫描件"],["4 ","项目经理建造师注册证、资格证、社保证明及安全生产考核合格证(B 本)","","电子版为扫描件"],["5 ","专职安全员安全生产考核合格证(C类)、社保证明","","电子版为扫描件"],["6 ","投标人业绩及证明材料","","电子版为扫描件"],["7 ","2020、2021年经审计的财务报表","","电子版为扫描件"],["8 ","投标文件封面、投标函及附录签字盖章","","电子版为扫描件"],["9 ","法定代表人身份证明签字盖章","","电子版为扫描件"],["10 ","授权委托书签字盖章","","电子版为扫描件"],["11 ","投标保证金汇款凭证及投标保证金退还信息及中标服务费交纳承诺书","","电子版为扫描件"],["12 ","投标样品彩色俯视图、剖面图及生产厂家的产品检验报告","","电子版为扫描件"],["…","……"],[""]],"node_type":"table","parent":1583,"children":[],"para_type":"table","pageno":100,"layout_index":5,"box":[70,172,453,393]}
- {"node_id":1588,"text":"备注:(1) 所提供的企业证件等资料应为有效期内的文件,其它材料应满足招标文件具体要求。","node_type":"text","parent":1583,"children":[],"para_type":"text","pageno":100,"layout_index":6,"box":[82,581,437,11]}
- {"node_id":1589,"text":"(2) ","node_type":"text","parent":1583,"children":[],"para_type":"text","pageno":100,"layout_index":7,"box":[181,606,17,11]}
- {"node_id":1590,"text":"本表供评标时参考,以投标文件实际提供的材料为准。","node_type":"text","parent":1583,"children":[],"para_type":"text","pageno":100,"layout_index":8,"box":[199,604,252,11]}
- {"node_id":1591,"text":"(2)投标人投标时需提供响应的无机磨石地坪、罩面、抗裂砂浆品牌及型号,对应有资质单位出具的第三方检测报告、产品说明书,以及样品俯视图、剖面图。投标人未使用招标文件推荐品牌,须提供与推荐品牌同档次产品的证明材料。","node_type":"text","parent":1583,"children":[],"para_type":"text","pageno":100,"layout_index":9,"box":[45,627,506,59]}
- {"node_id":1592,"text":"101 ","node_type":"head_tail","parent":1583,"children":[],"para_type":"head_tail","pageno":100,"layout_index":10,"box":[290,779,17,9]}
- {"node_id":1593,"text":"(3)农民工工资保证金的承诺函","node_type":"text","parent":1583,"children":[],"para_type":"text","pageno":101,"layout_index":0,"box":[222,46,174,13]}
- {"node_id":1594,"text":"农民工工资支付担保提交承诺函","node_type":"text","parent":1583,"children":[],"para_type":"text","pageno":101,"layout_index":1,"box":[213,89,169,13]}
- {"node_id":1595,"text":"中国长江电力股份有限公司(招标人名称):","node_type":"text","parent":1583,"children":[],"para_type":"text","pageno":101,"layout_index":2,"box":[44,136,252,13]}
- {"node_id":1596,"text":"我方已仔细研究并完全理解了三峡左岸及地下电站地坪整治(项目)施工招标文件的全部内容,我方在此承诺:如果我方中标,我方应在合同签订7日前,向贵方递交金额为人民币30 万元的农民工工资支付担保,担保形式为(填写银行保函或现金保证金二者其一),并同意在全部工程完工验收后6个月内无拖欠农民工工资的情况下,贵方退还此保函或保证金(不计利息,利息已计入投标报价中)。","node_type":"text","parent":1583,"children":[],"para_type":"text","pageno":101,"layout_index":3,"box":[44,182,512,107]}
- {"node_id":1597,"text":"投标人名称:上海绰琪新型建材科技有限公司(盖单位章)","node_type":"text","parent":1583,"children":[],"para_type":"text","pageno":101,"layout_index":4,"box":[177,370,336,13]}
- {"node_id":1598,"text":"法定代表人或其委托代理人:","node_type":"text","parent":1583,"children":[],"para_type":"text","pageno":101,"layout_index":5,"box":[207,393,156,13]}
- {"node_id":1599,"text":"(签字)","node_type":"text","parent":1583,"children":[],"para_type":"text","pageno":101,"layout_index":6,"box":[465,393,48,13]}
- {"node_id":1600,"text":"地址:上海市闵行区浦江镇东晨三路3号","node_type":"text","parent":1583,"children":[],"para_type":"text","pageno":101,"layout_index":7,"box":[234,416,252,13]}
- {"node_id":1601,"text":"邮政编码:","node_type":"text","parent":1583,"children":[],"para_type":"text","pageno":101,"layout_index":8,"box":[330,440,60,13]}
- {"node_id":1602,"text":"电话:02134730119 ","node_type":"text","parent":1583,"children":[],"para_type":"text","pageno":101,"layout_index":9,"box":[283,463,158,14]}
- {"node_id":1603,"text":"传真:02134730118 ","node_type":"text","parent":1583,"children":[],"para_type":"text","pageno":101,"layout_index":10,"box":[279,497,173,13]}
- {"node_id":1604,"text":"102 ","node_type":"head_tail","parent":1583,"children":[],"para_type":"head_tail","pageno":101,"layout_index":11,"box":[290,779,17,9]}
- {"node_id":1605,"text":"(4)无机磨石地坪施工承诺函(格式)","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":102,"layout_index":0,"box":[204,50,210,13]}
- {"node_id":1606,"text":"无机磨石地坪施工承诺函","node_type":"title","parent":0,"children":[1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620],"para_type":"title_1","pageno":102,"layout_index":1,"box":[231,73,133,13]}
- {"node_id":1607,"text":"中国长江电力股份有限公司(招标人名称):","node_type":"text","parent":1606,"children":[],"para_type":"text","pageno":102,"layout_index":2,"box":[44,97,240,13]}
- {"node_id":1608,"text":"我方已仔细研究并完全理解了三峡左岸及地下电站地坪整治(项目)施工招标文件的全部内容,我方在此承诺:如果我方中标,我方将严格按照招标文件中无机磨石地坪施工技术要求进行施工,若无机磨石地坪施工不能满足相关技术要求,我方承诺在30天内完成整改,若整改后仍不满足要求的,同意招标人终止合同并没收履约保证金或同意担保人无条件向招标人支付履约保函的金额。若造成损失,同意对招标人造成的损失进行赔偿。","node_type":"text","parent":1606,"children":[],"para_type":"text","pageno":102,"layout_index":3,"box":[44,120,506,107]}
- {"node_id":1609,"text":"投标人名称:上海绰琪新型建材科技有限公司(盖单位章)","node_type":"text","parent":1606,"children":[],"para_type":"text","pageno":102,"layout_index":4,"box":[192,284,354,13]}
- {"node_id":1610,"text":"法定代表人或其委托代理人:(签字)","node_type":"text","parent":1606,"children":[],"para_type":"text","pageno":102,"layout_index":5,"box":[194,307,306,13]}
- {"node_id":1611,"text":"地","node_type":"text","parent":1606,"children":[],"para_type":"text","pageno":102,"layout_index":6,"box":[234,331,12,13]}
- {"node_id":1612,"text":"址:","node_type":"text","parent":1606,"children":[],"para_type":"text","pageno":102,"layout_index":7,"box":[270,331,24,13]}
- {"node_id":1613,"text":"上海市闵行区浦江镇东晨三路3号","node_type":"text","parent":1606,"children":[],"para_type":"text","pageno":102,"layout_index":8,"box":[306,331,180,13]}
- {"node_id":1614,"text":"邮政编码:","node_type":"text","parent":1606,"children":[],"para_type":"text","pageno":102,"layout_index":9,"box":[330,354,60,13]}
- {"node_id":1615,"text":"电话:02134730119 ","node_type":"text","parent":1606,"children":[],"para_type":"text","pageno":102,"layout_index":10,"box":[283,377,158,14]}
- {"node_id":1616,"text":"传真:02134730118 ","node_type":"text","parent":1606,"children":[],"para_type":"text","pageno":102,"layout_index":11,"box":[280,401,164,14]}
- {"node_id":1617,"text":"2022年9 月3日","node_type":"text","parent":1606,"children":[],"para_type":"text","pageno":102,"layout_index":12,"box":[214,471,166,15]}
- {"node_id":1618,"text":"附件:","node_type":"text","parent":1606,"children":[],"para_type":"text","pageno":102,"layout_index":13,"box":[44,696,98,24]}
- {"node_id":1619,"text":"103 ","node_type":"head_tail","parent":1606,"children":[],"para_type":"head_tail","pageno":102,"layout_index":14,"box":[290,779,17,9]}
- {"node_id":1620,"text":"104 ","node_type":"head_tail","parent":1606,"children":[],"para_type":"head_tail","pageno":103,"layout_index":0,"box":[290,779,17,9]}
- {"node_id":1621,"text":"上海利永会计师事务所","node_type":"title","parent":0,"children":[1622,1623,1624,1625,1626,1627,1628,1629,1630,1634,1636,1638],"para_type":"title_1","pageno":104,"layout_index":0,"box":[137,206,316,22]}
- {"node_id":1622,"text":"关于上海绰琪新型建材科技有限公司的","node_type":"head_tail","parent":1621,"children":[],"para_type":"head_tail","pageno":104,"layout_index":1,"box":[126,271,338,19]}
- {"node_id":1623,"text":"审计报告","node_type":"text","parent":1621,"children":[],"para_type":"text","pageno":104,"layout_index":2,"box":[256,308,80,22]}
- {"node_id":1624,"text":"(二〇二〇年度)","node_type":"text","parent":1621,"children":[],"para_type":"text","pageno":104,"layout_index":3,"box":[253,351,81,12]}
- {"node_id":1625,"text":"目录","node_type":"text","parent":1621,"children":[],"para_type":"text","pageno":104,"layout_index":4,"box":[248,414,81,24]}
- {"node_id":1626,"text":"项目","node_type":"text","parent":1621,"children":[],"para_type":"text","pageno":104,"layout_index":5,"box":[196,455,80,14]}
- {"node_id":1627,"text":"页码","node_type":"text","parent":1621,"children":[],"para_type":"text","pageno":104,"layout_index":6,"box":[404,456,24,12]}
- {"node_id":1628,"text":"一,审计报告","node_type":"text","parent":1621,"children":[],"para_type":"text","pageno":104,"layout_index":7,"box":[166,496,70,11]}
- {"node_id":1629,"text":"1-2","node_type":"text","parent":1621,"children":[],"para_type":"text","pageno":104,"layout_index":8,"box":[404,496,18,12]}
- {"node_id":1630,"text":"二。资产负债表","node_type":"title","parent":1621,"children":[1631,1632,1633],"para_type":"title_3","pageno":104,"layout_index":9,"box":[167,521,81,11]}
- {"node_id":1631,"text":"3-4","node_type":"text","parent":1630,"children":[],"para_type":"text","pageno":104,"layout_index":10,"box":[404,522,18,10]}
- {"node_id":1632,"text":"三,利润表","node_type":"text","parent":1630,"children":[],"para_type":"text","pageno":104,"layout_index":11,"box":[167,546,57,11]}
- {"node_id":1633,"text":"5","node_type":"text","parent":1630,"children":[],"para_type":"text","pageno":104,"layout_index":12,"box":[409,547,6,10]}
- {"node_id":1634,"text":"四。现金流量表","node_type":"title","parent":1621,"children":[1635],"para_type":"title_3","pageno":104,"layout_index":13,"box":[167,571,81,11]}
- {"node_id":1635,"text":"6","node_type":"text","parent":1634,"children":[],"para_type":"text","pageno":104,"layout_index":14,"box":[409,573,6,10]}
- {"node_id":1636,"text":"五。会计报表附注","node_type":"title","parent":1621,"children":[1637],"para_type":"title_3","pageno":104,"layout_index":15,"box":[167,595,93,11]}
- {"node_id":1637,"text":"7-14","node_type":"text","parent":1636,"children":[],"para_type":"text","pageno":104,"layout_index":16,"box":[400,595,26,12]}
- {"node_id":1638,"text":"六。会计师事务所营业执照、执业许可证复印件","node_type":"title","parent":1621,"children":[],"para_type":"title_3","pageno":104,"layout_index":17,"box":[167,620,247,11]}
- {"node_id":1639,"text":"上海利永会计师事务所","node_type":"title","parent":0,"children":[1640,1641],"para_type":"title_1","pageno":105,"layout_index":0,"box":[130,74,341,25]}
- {"node_id":1640,"text":"*机密*","node_type":"text","parent":1639,"children":[],"para_type":"text","pageno":105,"layout_index":1,"box":[100,120,29,10]}
- {"node_id":1641,"text":"利永审字(2022)第2-236号","node_type":"text","parent":1639,"children":[],"para_type":"text","pageno":105,"layout_index":2,"box":[379,122,120,9]}
- {"node_id":1642,"text":"审计报告","node_type":"title","parent":0,"children":[1643,1644,1648,1650,1653],"para_type":"title_1","pageno":105,"layout_index":3,"box":[257,148,86,16]}
- {"node_id":1643,"text":"上海绰琪新型建材科技有限公司全体股东:","node_type":"text","parent":1642,"children":[],"para_type":"text","pageno":105,"layout_index":4,"box":[101,184,198,10]}
- {"node_id":1644,"text":"一、审计意见","node_type":"title","parent":1642,"children":[1645,1646,1647],"para_type":"title_3","pageno":105,"layout_index":5,"box":[121,202,62,10]}
- {"node_id":1645,"text":"我们审计了后附的上海绰琪新型建材科技有限公司(以下简称贵公司)财务报表,包括2020年12月31日的资产负债表、2020年度的利润表、现金流量表以及财务报表附注","node_type":"text","parent":1644,"children":[],"para_type":"text","pageno":105,"layout_index":6,"box":[100,220,390,23]}
- {"node_id":1646,"text":"ヘ","node_type":"text","parent":1644,"children":[],"para_type":"text","pageno":105,"layout_index":7,"box":[101,250,3,4]}
- {"node_id":1647,"text":"我们认为,后附的财务报表在所有重大方面按照小企业会计准则的规定编制,公允反映了贵公司2020年12月31日财务状况以及2020年度经营成果和现金流量。","node_type":"text","parent":1644,"children":[],"para_type":"text","pageno":105,"layout_index":8,"box":[100,262,390,29]}
- {"node_id":1648,"text":"二、形成审计意见的基础","node_type":"title","parent":1642,"children":[1649],"para_type":"title_3","pageno":105,"layout_index":9,"box":[115,317,115,9]}
- {"node_id":1649,"text":"我们按照中国注册会计师审计准则的规定执行了审计工作。审计报告的“注册会计师对财务报表审计的责任”部分进一步阐述了我们在这些准则下的责任。按照中国注册会计师职业道德守则,我们独立于贵公司,并履行了职业道德方面的其他责任。我们相信,我们获取的审计证据是充分、适当的,为发表审计意见提供了基础。","node_type":"text","parent":1648,"children":[],"para_type":"text","pageno":105,"layout_index":10,"box":[100,336,395,78]}
- {"node_id":1650,"text":"三、管理层对财务报表的责任","node_type":"title","parent":1642,"children":[1651,1652],"para_type":"title_3","pageno":105,"layout_index":11,"box":[116,444,135,9]}
- {"node_id":1651,"text":"贵公司管理层负责按照小企业会计准则的规定编制财务报表,使其实现公允反映,并设计、执行和维护必要的内部控制,以使财务报表不存在由于舞弊或错误导致的重大错报。","node_type":"text","parent":1650,"children":[],"para_type":"text","pageno":105,"layout_index":12,"box":[99,462,399,43]}
- {"node_id":1652,"text":"在编制财务报表时,管理层负责评估贵公司的持续经营能力,披露与持续经营相关的事项,并运用持续经营假设,除非管理层计划清算贵公司、终止运营或别无其他现实的选择。","node_type":"text","parent":1650,"children":[],"para_type":"text","pageno":105,"layout_index":13,"box":[100,509,398,43]}
- {"node_id":1653,"text":"四、注册会计师对财务报表审计的责任","node_type":"title","parent":1642,"children":[1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669],"para_type":"title_3","pageno":105,"layout_index":14,"box":[116,576,177,9]}
- {"node_id":1654,"text":"我们的目标是对财务报表整体是否不存在由于舞弊或错误导致的重大错报获取合理保证,并出具包含审计意见的审计报告。合理保证是高水平的保证,但并不能保证按照审计准则执行的审计在某一重大错报存在时总能发现。错报可能由于舞弊或错误导致,如果合理预期错报单独或汇总起来可能影响财务报表使用者依据财务报表作出的经济决策,则通常认为错报是重大的。","node_type":"text","parent":1653,"children":[],"para_type":"text","pageno":105,"layout_index":15,"box":[101,594,397,89]}
- {"node_id":1655,"text":"在按照审计准则执行审计工作过程中,我们运用职业判断,并保持职业怀疑。同时,我们也执行以下工作:","node_type":"text","parent":1653,"children":[],"para_type":"text","pageno":105,"layout_index":16,"box":[101,699,390,28]}
- {"node_id":1656,"text":"1、识别和评估由于舞弊或错误导致的财务报表重大错报风险,设计和实施审计程序以应对这些风险,并获取充分、适当的审计证据,作为发表审计意见的基础。由于舞弊可能涉及串通、伪造、故意遗漏、虚假陈述或凌驾于内部控制之上,未能发现由于舞弊导致的重大错报的风险高于未能发现由于错误导致的重大错报的风险。","node_type":"text","parent":1653,"children":[],"para_type":"text","pageno":106,"layout_index":0,"box":[100,75,400,71]}
- {"node_id":1657,"text":"2、了解与审计相关的内部控制,以设计恰当的审计程序,但目的并非对内部控制的有效性发表意见。","node_type":"text","parent":1653,"children":[],"para_type":"text","pageno":106,"layout_index":1,"box":[101,155,397,30]}
- {"node_id":1658,"text":"3、评价管理层选用会计政策的恰当性和作出会计估计及相关披露的合理性。","node_type":"text","parent":1653,"children":[],"para_type":"text","pageno":106,"layout_index":2,"box":[120,196,339,10]}
- {"node_id":1659,"text":"4、对管理层使用持续经营假设的恰当性得出结论。同时,根据获取的审计证据,就可能导致对贵公司持续经营能力产生重大疑虑的事项或情况是否存在重大不确定性得出结论。如果我们得出结论认为存在重大不确定性,审计准则要求我们在审计报告中提请报表使用者注意财务报表中的相关披露:如果披露不充分,我们应当发表非无保留意见。我们的结论基于截止审计报告日可获得的信息。然而,未来的事项或情况可能导致贵公司不能持续经营。","node_type":"text","parent":1653,"children":[],"para_type":"text","pageno":106,"layout_index":3,"box":[100,216,400,110]}
- {"node_id":1660,"text":"5、评价财务报表的总体列报、结构和内容(包括披露),并评价财务报表是否公允反映相关交易和事项。","node_type":"text","parent":1653,"children":[],"para_type":"text","pageno":106,"layout_index":4,"box":[100,336,399,30]}
- {"node_id":1661,"text":"我们与治理层就计划的审计范围、时间安排和重大审计发现等事项进行沟通,包括沟通我们在审计中识别出的值得关注的内部控制缺陷。","node_type":"text","parent":1653,"children":[],"para_type":"text","pageno":106,"layout_index":5,"box":[100,376,391,31]}
- {"node_id":1662,"text":"上海利永会计师事务所","node_type":"text","parent":1653,"children":[],"para_type":"text","pageno":106,"layout_index":6,"box":[158,484,101,9]}
- {"node_id":1663,"text":"盖章","node_type":"text","parent":1653,"children":[],"para_type":"text","pageno":106,"layout_index":7,"box":[197,514,20,10]}
- {"node_id":1664,"text":"中国•上海","node_type":"text","parent":1653,"children":[],"para_type":"text","pageno":106,"layout_index":8,"box":[182,553,47,11]}
- {"node_id":1665,"text":"中国注册会计师韩建保","node_type":"text","parent":1653,"children":[],"para_type":"text","pageno":106,"layout_index":9,"box":[364,462,217,38]}
- {"node_id":1666,"text":"中国注册会计师","node_type":"text","parent":1653,"children":[],"para_type":"text","pageno":106,"layout_index":10,"box":[364,554,101,10]}
- {"node_id":1667,"text":"周老敏","node_type":"text","parent":1653,"children":[],"para_type":"text","pageno":106,"layout_index":11,"box":[485,549,61,36]}
- {"node_id":1668,"text":"二〇二二年二月十八日","node_type":"text","parent":1653,"children":[],"para_type":"text","pageno":106,"layout_index":12,"box":[362,648,101,11]}
- {"node_id":1669,"text":"2","node_type":"head_tail","parent":1653,"children":[],"para_type":"head_tail","pageno":106,"layout_index":13,"box":[291,818,6,9]}
- {"node_id":1670,"text":"上海绰琪新型建材科技有限公司","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":107,"layout_index":0,"box":[215,76,165,11]}
- {"node_id":1671,"text":"资产负债表","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":107,"layout_index":1,"box":[261,92,72,14]}
- {"node_id":1672,"text":"二〇二〇年十二月三十一日","node_type":"title","parent":0,"children":[1673,1674,1675],"para_type":"title_1","pageno":107,"layout_index":2,"box":[237,113,118,9]}
- {"node_id":1673,"text":"单位:人民币元","node_type":"text","parent":1672,"children":[],"para_type":"text","pageno":107,"layout_index":3,"box":[448,132,67,9]}
- {"node_id":1674,"text":[["项目","附注","年末数","年初数"],["流动资产:"],["货币资金","附注3","9,152,452.25","7,742,642.77"],["短期投资"],["应收票据","","800,000.00"],["应收账款","附注4","6,422,442.81","3,102,482.81"],["预付账款"],["应收股利"],["应收利息"],["其他应收款","附注5","76,946.61","32,500.00"],["存货","附注6","974,273.09","1,235,654.36"],["其他流动资产"],["流动资产合计","","17,426,114.76","12,113,279.94"],["非流动资产:"],["长期债权投资"],["长期股权投资"],["固定资产","附注7","1,420,623.02","1,310,227.44"],["在建工程"],["工程物资"],["固定资产清理"],["生产性生物资产"],["无形资产","","260,000.00","260,000.00"],["开发支出"],["长期待摊费用"],["其他非流动资产"],["非流动资产合计","","1,680,623.02","1,570,227.44"],["资产合计","","19,106,737.78","13,683,507.38"],[""]],"node_type":"table","parent":1672,"children":[],"para_type":"table","pageno":107,"layout_index":4,"box":[73,144,444,482]}
- {"node_id":1675,"text":"3","node_type":"head_tail","parent":1672,"children":[],"para_type":"head_tail","pageno":107,"layout_index":5,"box":[292,818,6,8]}
- {"node_id":1676,"text":"上海绰琪新型建材科技有限公司","node_type":"title","parent":0,"children":[1677,1678,1679,1680,1681],"para_type":"title_1","pageno":108,"layout_index":0,"box":[213,76,165,12]}
- {"node_id":1677,"text":"资产负债表(续)","node_type":"text","parent":1676,"children":[],"para_type":"text","pageno":108,"layout_index":1,"box":[246,92,97,14]}
- {"node_id":1678,"text":"二〇二〇年十二月三十一日","node_type":"text","parent":1676,"children":[],"para_type":"text","pageno":108,"layout_index":2,"box":[237,114,117,9]}
- {"node_id":1679,"text":"单位:人民币元","node_type":"head_tail","parent":1676,"children":[],"para_type":"head_tail","pageno":108,"layout_index":3,"box":[446,131,68,11]}
- {"node_id":1680,"text":[["项目","附注","年末数","年初数"],["流动负债:"],["短期借款"],["应付票据"],["应付账款","附注8","2,866,952.30","2,006,957.48"],["预收款项"],["应付职工薪酬","","208,211.25","210,256.28"],["应交税费","","58,292.56","61,295.21"],["应付利息"],["应付利润"],["其他应付款","附注9","356,886.98","334,826.90"],["其他流动负债"],["流动负债合计","","3,490,343.09","2,613,335.87"],["非流动负债:"],["长期借款"],["应付债券"],["长期应付款"],["递延收益"],["其他非流动负债"],["非流动负债合计"],["负债合计","","3,490,343.09","2,613,335.87"],["所有者权益(或股东权益):"],["实收资本","附注10","10,000,000.00","10,000,000.00"],["资本公积"],["盈余公积"],["未分配利润","附注11","5,616,394.69","1,070,171.51"],["所有者权益(或股东权益)合计","","15,616,394.69","11,070,171.51"],["负债和所有者权益(或股东权益)合计","","19,106,737.78","13,683,507.38"],[""]],"node_type":"table","parent":1676,"children":[],"para_type":"table","pageno":108,"layout_index":4,"box":[72,144,444,499]}
- {"node_id":1681,"text":"4","node_type":"head_tail","parent":1676,"children":[],"para_type":"head_tail","pageno":108,"layout_index":5,"box":[293,818,6,9]}
- {"node_id":1682,"text":"上海绰琪新型建材科技有限公司","node_type":"title","parent":0,"children":[1683,1684,1685,1686,1687],"para_type":"title_1","pageno":109,"layout_index":0,"box":[213,76,165,12]}
- {"node_id":1683,"text":"利润表","node_type":"text","parent":1682,"children":[],"para_type":"text","pageno":109,"layout_index":1,"box":[259,92,73,14]}
- {"node_id":1684,"text":"二O二O年度","node_type":"text","parent":1682,"children":[],"para_type":"text","pageno":109,"layout_index":2,"box":[265,117,61,9]}
- {"node_id":1685,"text":"单位:人民币元","node_type":"head_tail","parent":1682,"children":[],"para_type":"head_tail","pageno":109,"layout_index":3,"box":[445,145,68,10]}
- {"node_id":1686,"text":[["项目","附注","本年累计数"],["一、营业收入","附注12","37,521,558.74"],["减:营业成本","附注13","26,965,172.30"],["税金及附加","附注14","39,853.56"],["销售费用","附注15","485,878.56"],["其中:商品维修费"],["广告费和业务宣传费"],["管理费用","附注16","3,836,522.12"],["其中:研究费用"],["财务费用","附注17","-825.23"],["其中:利息费用"],["加:投资收益(损失以“-”号填列)"],["二、营业利润(亏损以“-”号填列)","","6,194,957.43"],["加:营业外收入"],["其中:政府补助"],["减:营业外支出"],["其中:坏账损失"],["三、利润总额","","6,194,957.43"],["减:所得税费用","","1,648,734.25"],["四、净利润","","4,546,223.18"],[""]],"node_type":"table","parent":1682,"children":[],"para_type":"table","pageno":109,"layout_index":4,"box":[72,162,444,601]}
- {"node_id":1687,"text":"5","node_type":"head_tail","parent":1682,"children":[],"para_type":"head_tail","pageno":109,"layout_index":5,"box":[292,817,6,9]}
- {"node_id":1688,"text":"上海绰琪新型建材科技有限公司","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":110,"layout_index":0,"box":[214,80,164,12]}
- {"node_id":1689,"text":"现金流量表","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":110,"layout_index":1,"box":[246,102,100,14]}
- {"node_id":1690,"text":"二〇二O年度","node_type":"title","parent":0,"children":[1691,1692,1693],"para_type":"title_1","pageno":110,"layout_index":2,"box":[266,124,59,10]}
- {"node_id":1691,"text":"单位:人民币元","node_type":"head_tail","parent":1690,"children":[],"para_type":"head_tail","pageno":110,"layout_index":3,"box":[446,138,67,10]}
- {"node_id":1692,"text":[["项目","行次","本年度"],["一、经营活动产生现金流量","1"],["销售商品、提供劳务收到的现金","2","27,852,614.25"],["收到的税费返还","3"],["收到的其他与经营活动有关的现金","4","542,145.36"],["现金流入小计","5","28,394,759.61"],["购买商品、接受劳务支付的现金","6","19,758,144.96"],["支付给职工以及为职工支付现金","7","2,854,504.35"],["支付的各项税款","8","2,574,124.85"],["支付的其他与经营活动有关的现金","9","1,517,210.00"],["现金流出小计","10","26,703,984.16"],["经营活动产生的现金流量净额","11","1,690,775.45"],["二、投资活动产生的现金流量","12"],["收回投资所收到的现金","13"],["取得投资收益所收到的现金","14"],["处置固定资产、无形资产和其他长期资产而收回的现金净额","15"],["收到的其他与投资活动有关的现金","16"],["现金流入小计","17"],["购建固定资产、无形资产和其他长期资产所支付的现金","18","280,965.97"],["投资所支付的现金","19"],["支付的其他与投资活动有关的现金","20"],["现金流出小计","21","280.965.97"],["投资活动产生的现金流量净额","22","280,965.97"],["三、筹资活动产生的现金流量","23"],["吸收投资所收到的现金","24"],["借款所收到的现金","25"],["收到的其他与筹资活动有关的现金","26"],["现金流入小计","27"],["偿还债务所支付的现金","28"],["分配股利、利润或偿付利息所支付的现金","29"],["支付的其他与筹资活动有关的现金","30"],["现金流出小计","31"],["筹资活动产生的现金流量净额","32"],["四、汇率变动对现金的影响额","33"],["五、现金及现金等价物净额增加","34","1,409,809.48"],["加:期初现金及现金等价物余额","35","7,742,642.77"],["六、期末现金及现金等价物余额","36","9,152,452.25"],[""]],"node_type":"table","parent":1690,"children":[],"para_type":"table","pageno":110,"layout_index":4,"box":[72,150,444,580]}
- {"node_id":1693,"text":"6","node_type":"head_tail","parent":1690,"children":[],"para_type":"head_tail","pageno":110,"layout_index":5,"box":[292,817,6,9]}
- {"node_id":1694,"text":"上海绰琪新型建材科技有限公司","node_type":"title","parent":0,"children":[1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833],"para_type":"title_1","pageno":111,"layout_index":0,"box":[223,84,144,9]}
- {"node_id":1695,"text":"会计报表附注","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":111,"layout_index":1,"box":[246,105,98,16]}
- {"node_id":1696,"text":"(二O二O年度)","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":111,"layout_index":2,"box":[252,133,82,13]}
- {"node_id":1697,"text":"单位:人民币元","node_type":"head_tail","parent":1694,"children":[],"para_type":"head_tail","pageno":111,"layout_index":3,"box":[433,160,71,10]}
- {"node_id":1698,"text":"附注1。公司概况:","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":111,"layout_index":4,"box":[86,183,78,10]}
- {"node_id":1699,"text":"(1)公司成立背景:","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":111,"layout_index":5,"box":[95,210,80,12]}
- {"node_id":1700,"text":"本公司系经闵行区市场监督管理局批准,于2018年8月9日正式成立的有限责任公司(自然人投资或控股),领有统一社会信用代码为91310112MA1GC4MP45的企业法人营业执照,法定代表人:顾东升,注册资本为人民币3,980.00万元,经营期限为2018-08-09至2048-08-08,公司注册地址:上海市闵行区元江路5500号第1幢F2396室。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":111,"layout_index":6,"box":[85,234,418,68]}
- {"node_id":1701,"text":"(2)经营范围:","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":111,"layout_index":7,"box":[96,315,56,10]}
- {"node_id":1702,"text":"从事新型建材科技领域内的技术开发、技术咨询、技术服务、技术转让,新型建筑材料、新型环保再生建筑材料、干(湿)砂浆材料、自流平水泥、无(有)机磨石材料、快速修补砂浆、抗裂水泥、透水地坪材料、预制产品、新型地砖墙砖、石英砂、玻璃颗粒、玉石水晶颗粒、工程机械、建筑耗材辅料、水泥添加剂、涂料、防腐防静电地坪材料、彩砂地坪材料、化工原料(除危险化学产品、监控化学品、烟花爆竹、民用爆炸物品、易制毒化学品)的销售,建筑装饰工程设计及施工,建筑装修装饰建设工程专业施工,建筑防水建设工程专业施工,防腐保温建设工程专业施工,桥梁道路工程施工。【依法须经批准的项目,经相关部门批准后方可开展经营活动】","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":111,"layout_index":8,"box":[86,336,418,107]}
- {"node_id":1703,"text":"附注2。主要会计政策:","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":111,"layout_index":9,"box":[86,456,100,10]}
- {"node_id":1704,"text":"(1)会计制度及会计准则:","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":111,"layout_index":10,"box":[96,479,110,12]}
- {"node_id":1705,"text":"本公司执行中华人民共和国财政部颁布的《小企业会计准则》及其相关规定。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":111,"layout_index":11,"box":[107,504,350,10]}
- {"node_id":1706,"text":"(2)会计期间:","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":111,"layout_index":12,"box":[96,525,56,10]}
- {"node_id":1707,"text":"本公司采用公历年度,即每年一月一日起至十二月三十一日止为一个会计年度。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":111,"layout_index":13,"box":[105,547,359,11]}
- {"node_id":1708,"text":"(3)记帐本位币:","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":111,"layout_index":14,"box":[98,569,69,12]}
- {"node_id":1709,"text":"本公司以人民币为记帐本位币。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":111,"layout_index":15,"box":[102,592,140,9]}
- {"node_id":1710,"text":"(4)记账基础和计价原则:","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":111,"layout_index":16,"box":[99,615,109,10]}
- {"node_id":1711,"text":"本公司以权责发生制为记账原则,各项财产物资按取得时的实际成本计价。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":111,"layout_index":17,"box":[107,638,339,10]}
- {"node_id":1712,"text":"(5)外币业务核算方法:","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":111,"layout_index":18,"box":[99,660,99,10]}
- {"node_id":1713,"text":"会计年度内涉及外币的经济业务,按业务发生当月月初中国人民银行公布的汇率折合为人民币入账。年末各货币性资产和负债项目的外币余额按中国人民银行公布的年末市场汇率进行调整,汇兑损益计入当期损益;属筹建期间的,计入长期待摊费用:与购建固定资产有关的借款产生的汇兑损益,计入固定资产成本。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":111,"layout_index":19,"box":[86,679,417,83]}
- {"node_id":1714,"text":"8","node_type":"head_tail","parent":1694,"children":[],"para_type":"head_tail","pageno":111,"layout_index":20,"box":[291,817,7,9]}
- {"node_id":1715,"text":"(6)现金及现金等价物:","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":112,"layout_index":0,"box":[99,82,99,10]}
- {"node_id":1716,"text":"本公司的现金是指库存现金及可以随时用于支付的存款。现金等价物是指企业持有的期限短、流动性强、易于转换为已知金额现金、价值变动风险小的投资。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":112,"layout_index":1,"box":[86,104,416,28]}
- {"node_id":1717,"text":"(7)坏账核算方法:","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":112,"layout_index":2,"box":[98,139,82,13]}
- {"node_id":1718,"text":"坏账确认标准","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":112,"layout_index":3,"box":[102,160,62,9]}
- {"node_id":1719,"text":"A、债务人破产或死亡,以其破产财产或者遗产清偿后,仍然不能收回的应收款项;","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":112,"layout_index":4,"box":[107,181,376,10]}
- {"node_id":1720,"text":"B、债务人逾期未履行偿债义务超过三年而且有明显特征表明无法收回的应收款项。坏账的计提方法和标准","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":112,"layout_index":5,"box":[97,202,388,29]}
- {"node_id":1721,"text":"A、对坏账核算采用直接转销法。本公司于期末对应收款项余额进行逐项分析,对有确凿证据表明不能收回或挂账时间太长的应收款项采用个别认定法为坏账,确认的坏账计入当年度营业外支出。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":112,"layout_index":6,"box":[87,240,416,47]}
- {"node_id":1722,"text":"(8)存货核算方法:","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":112,"layout_index":7,"box":[99,296,81,11]}
- {"node_id":1723,"text":"A、存货包括在途物资、原材料、包装物、委托加工材料、在产品、产成品、发出商品、库存商品、低值易耗品等。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":112,"layout_index":8,"box":[88,317,415,26]}
- {"node_id":1724,"text":"B、各类存货按实际成本计价;领用和发出按加权平均法进行核算。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":112,"layout_index":9,"box":[107,354,303,9]}
- {"node_id":1725,"text":"C、存货的可变现净值等于其预计销售价格减去在销售过程中可能发生的销售费用和相关税费,以及为达到预定可使用状态所发生的加工成本等相关支出。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":112,"layout_index":10,"box":[87,374,416,27]}
- {"node_id":1726,"text":"D、当出现以下情况时,全额提取存货跌价准备:a、霉烂变质的存货:b、已过期且无转让价值的存货;c、生产中已不再需要,并且已无使用价值和转让价值的存货;d、其他足以证明已无使用价值和转让价值的存货。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":112,"layout_index":11,"box":[87,412,417,45]}
- {"node_id":1727,"text":"一般存货根据分类法计提存货跌价准备。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":112,"layout_index":12,"box":[108,464,181,10]}
- {"node_id":1728,"text":"(9)长期股权投资的核算方法:","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":112,"layout_index":13,"box":[100,487,133,11]}
- {"node_id":1729,"text":"A.长期股权投资计价,以支付现金取得的长期股权投资,应当按照实际支付的购买价款作为初始投资成本。初始投资成本包括与取得长期股权投资直接相关的费用,税金及其他必要支出。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":112,"layout_index":14,"box":[87,509,417,35]}
- {"node_id":1730,"text":"B.采用成本法核算的,在被投资单位宣告发放现金股利时确认投资收益;采用权益法核算的,在期末按应分享或应分担的被投资单位实现的净利润或发生的净亏损的份额,确认投资收益,并调整长期股权投资的账面价值。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":112,"layout_index":15,"box":[88,554,416,52]}
- {"node_id":1731,"text":"(10)投资性房地产的核算","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":112,"layout_index":16,"box":[101,616,113,10]}
- {"node_id":1732,"text":"A、投资性房地产核算的内容为赚取租金或资本增值,或者两者兼而持有的房地产,包括已出租的土地使用权、持有并准备增值后转让的土地使用权、已出租的建筑物。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":112,"layout_index":17,"box":[88,637,408,25]}
- {"node_id":1733,"text":"B、投资性房地产的后续计量:在成本模式下按照固定资产的计价、摊销对投资性房地产进行计量,计提折旧或摊销。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":112,"layout_index":18,"box":[87,672,417,23]}
- {"node_id":1734,"text":"C、投资性房地产转换的计价:转换日的公允价值小于原账面价值的,其差额计入当期损益:转换日的公允价值大于原账面价值的,其差额作为资本公积(其他),计入所有者权益。处置该项投资性房地产时,原计入所有者权益的部分转入处置当期损益。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":112,"layout_index":19,"box":[88,704,416,47]}
- {"node_id":1735,"text":"9","node_type":"head_tail","parent":1694,"children":[],"para_type":"head_tail","pageno":112,"layout_index":20,"box":[293,818,6,9]}
- {"node_id":1736,"text":"(11)固定资产计价及折旧方法:","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":0,"box":[100,80,137,10]}
- {"node_id":1737,"text":"固定资产是指同时具有下列特征的有形资产:(1)为生产商品,提供劳务,出租或经营管理而持有的(2)使用寿命超过一个会计年度。使用寿命,是指企业使用固定资产的预计期间,或者该固定资产所能生产产品或提供劳务的数量。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":1,"box":[86,100,419,51]}
- {"node_id":1738,"text":"固定资产以实际成本或重估价值为原价入账。固定资产的折旧采用直线法平均计算,并按固定资产的类别、估计经济使用年限和预计残值(原值的5%)确定其折旧率如下:","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":2,"box":[87,161,410,33]}
- {"node_id":1739,"text":"资产类别","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":3,"box":[162,207,42,11]}
- {"node_id":1740,"text":"使用年限","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":4,"box":[278,207,42,11]}
- {"node_id":1741,"text":"年折旧率","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":5,"box":[379,208,42,10]}
- {"node_id":1742,"text":"房屋及建筑物","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":6,"box":[154,228,62,10]}
- {"node_id":1743,"text":"20年","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":7,"box":[292,226,21,10]}
- {"node_id":1744,"text":"4.75%","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":8,"box":[391,228,28,8]}
- {"node_id":1745,"text":"机器设备","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":9,"box":[154,250,41,10]}
- {"node_id":1746,"text":"5年","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":10,"box":[294,249,17,12]}
- {"node_id":1747,"text":"19.00%","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":11,"box":[390,251,32,8]}
- {"node_id":1748,"text":"运输设备","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":12,"box":[154,274,41,10]}
- {"node_id":1749,"text":"5年","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":13,"box":[294,272,18,11]}
- {"node_id":1750,"text":"19.00%","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":14,"box":[390,274,31,9]}
- {"node_id":1751,"text":"办公设备","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":15,"box":[154,296,42,11]}
- {"node_id":1752,"text":"5年","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":16,"box":[294,296,18,12]}
- {"node_id":1753,"text":"19.00%","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":17,"box":[390,298,32,9]}
- {"node_id":1754,"text":"电子及其他设备","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":18,"box":[155,323,72,10]}
- {"node_id":1755,"text":"5年","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":19,"box":[294,321,18,11]}
- {"node_id":1756,"text":"19.00%","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":20,"box":[390,323,32,9]}
- {"node_id":1757,"text":"当固定资产市价持续下跌、技术陈旧、损坏、长期闲置等情况出现,导致固定资产可收回金额低于账面价值时,按可收回金额低于其账面价值的差额单项计提固定资产减值准备。固定资产损失一经确认,在以后会计期间不得转回。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":21,"box":[86,344,419,45]}
- {"node_id":1758,"text":"(12)无形资产、长期待摊费、其他长期资产的核算方法","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":22,"box":[100,398,250,9]}
- {"node_id":1759,"text":"A、无形资产按实际成本核算,在受益期内平均摊销。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":23,"box":[107,420,241,10]}
- {"node_id":1760,"text":"B、长期待摊费用在受益期内采用直线法平均摊销:其他长期资产按5年平均摊销。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":24,"box":[106,441,372,9]}
- {"node_id":1761,"text":"C、公司无形资产减值准备按单项计提,对于有确凿证据表明该项无形资产已被其他新技术所替代或不再受法律保护,不能给企业带来经济利益且无使用价值和转让价值,应将其账面价值全部转入损益。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":25,"box":[87,458,417,44]}
- {"node_id":1762,"text":"(13)职工薪酬的核算方法","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":26,"box":[100,515,114,10]}
- {"node_id":1763,"text":"职工薪酬包括企业为职工在职期间和离职后提供的全部货币性薪酬和非货币性福利,包括工资、福利费、社会保险费、住房公积金、工会经费、职工教育经费等。企业因获得职工提供劳务而给予职工的各种形式的报酬或对价,全部纳入职工薪酬的范围。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":27,"box":[86,538,418,45]}
- {"node_id":1764,"text":"(14)收入确认原则:","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":28,"box":[100,590,86,10]}
- {"node_id":1765,"text":"A、商品销售:在商品所有权上的重要风险和报酬转移给买方,公司不再对该商品实施继续管理权实际控制权,相关的收入已经收到或取得了收款的证据,并且与销售该商品有关的成本能够可靠地计量时,确认营业收入的实现。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":29,"box":[87,610,417,43]}
- {"node_id":1766,"text":"B、提供劳务:a、在同一年度内开始并完成的,在劳务已经提供,收到价款或取得收取款项的证据时,确认劳务收入。b、按完工百分比法,在劳务合同的总收入、劳务的完成程度能够可靠地确定,与交易相关的价款能够流入,已经发生的成本和完成劳务将要发生的成本能够可靠地计量时,确认劳务收入。","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":30,"box":[87,661,418,62]}
- {"node_id":1767,"text":"(15)税项:","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":113,"layout_index":31,"box":[99,730,43,11]}
- {"node_id":1768,"text":"10","node_type":"head_tail","parent":1694,"children":[],"para_type":"head_tail","pageno":113,"layout_index":32,"box":[290,817,12,10]}
- {"node_id":1769,"text":"本公司主要适用的税种和税率","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":114,"layout_index":0,"box":[102,80,135,9]}
- {"node_id":1770,"text":"税种","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":114,"layout_index":1,"box":[168,108,28,11]}
- {"node_id":1771,"text":"2计税依据","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":114,"layout_index":2,"box":[305,109,73,11]}
- {"node_id":1772,"text":"税率","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":114,"layout_index":3,"box":[440,108,27,11]}
- {"node_id":1773,"text":"增值税","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":114,"layout_index":4,"box":[154,138,30,10]}
- {"node_id":1774,"text":"产品销售或劳务收入","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":114,"layout_index":5,"box":[305,138,93,10]}
- {"node_id":1775,"text":"9%-13%","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":114,"layout_index":6,"box":[440,138,38,9]}
- {"node_id":1776,"text":"城市维护建设税增值税","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":114,"layout_index":7,"box":[154,166,182,10]}
- {"node_id":1777,"text":"7%","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":114,"layout_index":8,"box":[440,166,15,9]}
- {"node_id":1778,"text":"教育费附加增值税","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":114,"layout_index":9,"box":[155,194,181,11]}
- {"node_id":1779,"text":"3%","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":114,"layout_index":10,"box":[440,194,15,10]}
- {"node_id":1780,"text":"地方教育费附加增值税","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":114,"layout_index":11,"box":[154,222,182,11]}
- {"node_id":1781,"text":"2%","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":114,"layout_index":12,"box":[440,222,15,10]}
- {"node_id":1782,"text":"企业所得税","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":114,"layout_index":13,"box":[155,250,51,10]}
- {"node_id":1783,"text":"应纳税所得额","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":114,"layout_index":14,"box":[305,250,63,9]}
- {"node_id":1784,"text":"25%","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":114,"layout_index":15,"box":[440,250,20,9]}
- {"node_id":1785,"text":"11","node_type":"head_tail","parent":1694,"children":[],"para_type":"head_tail","pageno":114,"layout_index":16,"box":[289,816,11,11]}
- {"node_id":1786,"text":"附注3:货币资金","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":0,"box":[80,79,73,10]}
- {"node_id":1787,"text":"项","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":1,"box":[150,102,12,12]}
- {"node_id":1788,"text":"目","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":2,"box":[192,104,7,9]}
- {"node_id":1789,"text":"期末余额","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":3,"box":[399,104,42,10]}
- {"node_id":1790,"text":"货币资金","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":4,"box":[101,128,41,11]}
- {"node_id":1791,"text":"9,152,452.25","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":5,"box":[384,130,54,9]}
- {"node_id":1792,"text":"合计","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":6,"box":[100,153,58,12]}
- {"node_id":1793,"text":"9.152.452.25","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":7,"box":[384,156,54,7]}
- {"node_id":1794,"text":"附注4:应收账款","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":8,"box":[80,179,73,10]}
- {"node_id":1795,"text":"账","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":9,"box":[150,203,12,11]}
- {"node_id":1796,"text":"龄","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":10,"box":[188,203,12,11]}
- {"node_id":1797,"text":"期末余额","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":11,"box":[360,204,42,10]}
- {"node_id":1798,"text":"比例","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":12,"box":[479,203,21,11]}
- {"node_id":1799,"text":"1年以内","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":13,"box":[101,228,35,12]}
- {"node_id":1800,"text":"6,422,442.81","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":14,"box":[347,230,53,9]}
- {"node_id":1801,"text":"100.00%","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":15,"box":[468,230,36,9]}
- {"node_id":1802,"text":"合计","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":16,"box":[101,254,57,12]}
- {"node_id":1803,"text":"6,422,442.81","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":17,"box":[346,254,55,10]}
- {"node_id":1804,"text":"100.00%","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":18,"box":[467,255,37,9]}
- {"node_id":1805,"text":"附注5:其他应收款","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":19,"box":[80,279,85,10]}
- {"node_id":1806,"text":"账龄","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":20,"box":[150,303,50,10]}
- {"node_id":1807,"text":"期末余额","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":21,"box":[360,304,42,10]}
- {"node_id":1808,"text":"比例","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":22,"box":[478,303,22,11]}
- {"node_id":1809,"text":"1年以内","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":23,"box":[101,329,35,10]}
- {"node_id":1810,"text":"76,946.61","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":24,"box":[353,330,40,9]}
- {"node_id":1811,"text":"100.00%","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":25,"box":[467,330,37,8]}
- {"node_id":1812,"text":"合计","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":26,"box":[102,353,57,12]}
- {"node_id":1813,"text":"76,946.61","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":27,"box":[353,355,41,8]}
- {"node_id":1814,"text":"100.00%","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":28,"box":[468,355,36,8]}
- {"node_id":1815,"text":"附注6:存货","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":29,"box":[80,378,52,10]}
- {"node_id":1816,"text":"类别","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":30,"box":[103,402,49,10]}
- {"node_id":1817,"text":"期初余额","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":31,"box":[249,402,40,10]}
- {"node_id":1818,"text":"本年增加","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":32,"box":[322,403,41,9]}
- {"node_id":1819,"text":"本年减少","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":33,"box":[395,403,41,9]}
- {"node_id":1820,"text":"期末余额","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":34,"box":[470,403,41,10]}
- {"node_id":1821,"text":"存货","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":35,"box":[102,428,45,10]}
- {"node_id":1822,"text":"1,235,654.36","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":36,"box":[244,428,55,9]}
- {"node_id":1823,"text":"261,381.27974,273.09","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":37,"box":[398,429,124,8]}
- {"node_id":1824,"text":"合计","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":38,"box":[102,453,56,10]}
- {"node_id":1825,"text":"1,235,654.36","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":39,"box":[242,453,55,8]}
- {"node_id":1826,"text":"261,381.27974,273.09","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":40,"box":[396,453,125,9]}
- {"node_id":1827,"text":"附注7:固定资产","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":41,"box":[80,477,73,10]}
- {"node_id":1828,"text":"项目","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":42,"box":[111,501,43,10]}
- {"node_id":1829,"text":"期初余额","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":43,"box":[248,501,40,10]}
- {"node_id":1830,"text":"本年增加","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":44,"box":[320,501,41,10]}
- {"node_id":1831,"text":"本年减少","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":45,"box":[394,502,41,9]}
- {"node_id":1832,"text":"期末余额","node_type":"text","parent":1694,"children":[],"para_type":"text","pageno":115,"layout_index":46,"box":[469,502,40,10]}
- {"node_id":1833,"text":"一、固定资产原值合计","node_type":"title","parent":1694,"children":[1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1976,1980],"para_type":"title_3","pageno":115,"layout_index":47,"box":[80,527,103,9]}
- {"node_id":1834,"text":"1,310,227.44","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":48,"box":[236,527,54,9]}
- {"node_id":1835,"text":"110,395.58","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":49,"box":[314,527,45,9]}
- {"node_id":1836,"text":"1,420,623.02","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":50,"box":[458,527,53,9]}
- {"node_id":1837,"text":"二、累计折旧合计","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":51,"box":[80,552,82,9]}
- {"node_id":1838,"text":"三、固定资产账面净值","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":52,"box":[80,576,103,9]}
- {"node_id":1839,"text":"1,310,227.44","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":53,"box":[235,576,56,9]}
- {"node_id":1840,"text":"1,420,623.02","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":54,"box":[457,577,55,8]}
- {"node_id":1841,"text":"附注8:应付账款","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":55,"box":[80,600,73,10]}
- {"node_id":1842,"text":"账","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":56,"box":[150,624,11,10]}
- {"node_id":1843,"text":"龄","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":57,"box":[189,624,11,10]}
- {"node_id":1844,"text":"期末余额","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":58,"box":[360,625,41,10]}
- {"node_id":1845,"text":"比例","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":59,"box":[479,624,21,12]}
- {"node_id":1846,"text":"1年以内","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":60,"box":[102,650,34,9]}
- {"node_id":1847,"text":"2,866,952.30","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":61,"box":[346,651,55,8]}
- {"node_id":1848,"text":"100.00%","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":62,"box":[468,651,35,7]}
- {"node_id":1849,"text":"合计","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":63,"box":[101,674,58,11]}
- {"node_id":1850,"text":"2,866,952.30","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":64,"box":[346,675,55,9]}
- {"node_id":1851,"text":"100.00%","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":65,"box":[466,675,38,9]}
- {"node_id":1852,"text":"附注9:其他应付款","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":66,"box":[80,699,85,10]}
- {"node_id":1853,"text":"账","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":67,"box":[150,722,12,11]}
- {"node_id":1854,"text":"龄","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":68,"box":[189,722,12,11]}
- {"node_id":1855,"text":"期末余额","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":69,"box":[359,724,41,10]}
- {"node_id":1856,"text":"比例","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":70,"box":[479,724,21,10]}
- {"node_id":1857,"text":"1年以内","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":71,"box":[101,749,35,10]}
- {"node_id":1858,"text":"356,886.98","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":72,"box":[350,749,47,9]}
- {"node_id":1859,"text":"100.00%","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":115,"layout_index":73,"box":[467,749,37,9]}
- {"node_id":1860,"text":"12","node_type":"head_tail","parent":1833,"children":[],"para_type":"head_tail","pageno":115,"layout_index":74,"box":[290,816,10,10]}
- {"node_id":1861,"text":"合计","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":0,"box":[101,78,57,11]}
- {"node_id":1862,"text":"项目","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":1,"box":[137,312,38,10]}
- {"node_id":1863,"text":"上年期末余额","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":2,"box":[101,338,62,10]}
- {"node_id":1864,"text":"本期年初余额","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":3,"box":[101,412,62,9]}
- {"node_id":1865,"text":"加:本期净利润转入","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":4,"box":[122,437,93,9]}
- {"node_id":1866,"text":"356.886.98","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":5,"box":[351,79,48,10]}
- {"node_id":1867,"text":"100.00%","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":6,"box":[468,80,37,9]}
- {"node_id":1868,"text":"附注10:实收资本","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":7,"box":[80,105,78,10]}
- {"node_id":1869,"text":"投资者名称","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":8,"box":[111,144,52,10]}
- {"node_id":1870,"text":"上海典跃建材科技有限公司","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":9,"box":[81,185,123,9]}
- {"node_id":1871,"text":"顾东升","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":10,"box":[79,211,31,10]}
- {"node_id":1872,"text":"余浩","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":11,"box":[79,237,22,11]}
- {"node_id":1873,"text":"合计","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":12,"box":[101,263,47,10]}
- {"node_id":1874,"text":"附注11:未分配利润","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":13,"box":[80,288,89,9]}
- {"node_id":1875,"text":"加:会计政策变更","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":14,"box":[101,363,82,9]}
- {"node_id":1876,"text":"其他因素调整","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":15,"box":[122,387,62,11]}
- {"node_id":1877,"text":"附注12:营业收入","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":16,"box":[80,560,79,10]}
- {"node_id":1878,"text":"项","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":17,"box":[150,584,11,10]}
- {"node_id":1879,"text":"目","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":18,"box":[190,584,8,10]}
- {"node_id":1880,"text":"附注13:营业成本","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":19,"box":[80,660,78,10]}
- {"node_id":1881,"text":"项","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":20,"box":[150,683,12,12]}
- {"node_id":1882,"text":"目","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":21,"box":[190,684,8,10]}
- {"node_id":1883,"text":"应缴注册资本","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":22,"box":[291,126,62,9]}
- {"node_id":1884,"text":"实缴注册资本","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":23,"box":[439,126,63,9]}
- {"node_id":1885,"text":"金额(人民币)比例(%)","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":24,"box":[230,158,124,9]}
- {"node_id":1886,"text":"金额(人民币)比例(%)","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":25,"box":[378,158,131,10]}
- {"node_id":1887,"text":"15,920,000.0040.00%","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":26,"box":[237,185,117,9]}
- {"node_id":1888,"text":"13,930,000.00","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":27,"box":[237,212,59,8]}
- {"node_id":1889,"text":"35.00%","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":28,"box":[322,212,32,8]}
- {"node_id":1890,"text":"9,950,000.0025.00%","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":29,"box":[241,238,113,9]}
- {"node_id":1891,"text":"39,800,000.00","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":30,"box":[238,264,60,9]}
- {"node_id":1892,"text":"100.00%","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":31,"box":[320,264,37,9]}
- {"node_id":1893,"text":"减:本期提取法定盈余公积","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":32,"box":[122,462,125,9]}
- {"node_id":1894,"text":"本期提取任意盈余公积","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":33,"box":[143,486,104,9]}
- {"node_id":1895,"text":"本期分配普通股股利","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":34,"box":[143,511,93,9]}
- {"node_id":1896,"text":"本期期末余额","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":35,"box":[101,536,63,9]}
- {"node_id":1897,"text":"营业收入","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":36,"box":[101,610,40,10]}
- {"node_id":1898,"text":"合计","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":37,"box":[101,635,46,10]}
- {"node_id":1899,"text":"营业成本","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":38,"box":[101,709,40,10]}
- {"node_id":1900,"text":"合计","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":39,"box":[101,736,46,10]}
- {"node_id":1901,"text":"金额","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":40,"box":[447,313,34,9]}
- {"node_id":1902,"text":"1,070,171.51","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":41,"box":[423,339,53,8]}
- {"node_id":1903,"text":"1,070,171.51","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":42,"box":[423,413,53,9]}
- {"node_id":1904,"text":"4,546,223.18","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":43,"box":[422,437,54,9]}
- {"node_id":1905,"text":"5,616,394.69","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":44,"box":[422,536,54,9]}
- {"node_id":1906,"text":"37,521,558.74","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":45,"box":[381,611,61,9]}
- {"node_id":1907,"text":"37,521,558.74","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":46,"box":[382,636,60,9]}
- {"node_id":1908,"text":"26,965,172.30","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":47,"box":[381,710,59,9]}
- {"node_id":1909,"text":"26,965,172.30","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":48,"box":[381,737,60,9]}
- {"node_id":1910,"text":"4,000,000.0040.00%","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":49,"box":[389,185,113,9]}
- {"node_id":1911,"text":"3,500,000.0035.00%","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":50,"box":[389,212,113,9]}
- {"node_id":1912,"text":"2,500,000.0025.00%","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":51,"box":[388,238,114,9]}
- {"node_id":1913,"text":"10,000,000.00100.00%","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":52,"box":[386,264,118,9]}
- {"node_id":1914,"text":"本年发生额","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":53,"box":[394,584,52,10]}
- {"node_id":1915,"text":"本年发生额","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":116,"layout_index":54,"box":[394,685,52,10]}
- {"node_id":1916,"text":"13","node_type":"head_tail","parent":1833,"children":[],"para_type":"head_tail","pageno":116,"layout_index":55,"box":[289,816,13,10]}
- {"node_id":1917,"text":"附注14:税金及附加","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":0,"box":[79,80,89,10]}
- {"node_id":1918,"text":"项目","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":1,"box":[149,104,49,10]}
- {"node_id":1919,"text":"本年发生额","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":2,"box":[394,105,52,10]}
- {"node_id":1920,"text":"税金及附加","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":3,"box":[100,134,51,10]}
- {"node_id":1921,"text":"39,853.56","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":4,"box":[390,135,41,9]}
- {"node_id":1922,"text":"合计","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":5,"box":[101,168,56,10]}
- {"node_id":1923,"text":"39.853.56","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":6,"box":[390,168,42,9]}
- {"node_id":1924,"text":"附注15:销售费用","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":7,"box":[79,196,78,10]}
- {"node_id":1925,"text":"项","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":8,"box":[149,220,12,10]}
- {"node_id":1926,"text":"目","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":9,"box":[189,220,10,10]}
- {"node_id":1927,"text":"本年发生额","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":10,"box":[394,221,52,10]}
- {"node_id":1928,"text":"销售费用","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":11,"box":[100,246,41,10]}
- {"node_id":1929,"text":"485,878.56","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":12,"box":[387,247,47,9]}
- {"node_id":1930,"text":"合计","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":13,"box":[100,270,57,12]}
- {"node_id":1931,"text":"485,878.56","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":14,"box":[386,272,49,8]}
- {"node_id":1932,"text":"附注16:管理费用","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":15,"box":[80,296,77,10]}
- {"node_id":1933,"text":"项","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":16,"box":[149,320,12,10]}
- {"node_id":1934,"text":"目","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":17,"box":[188,319,10,11]}
- {"node_id":1935,"text":"本年发生额","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":18,"box":[393,321,53,9]}
- {"node_id":1936,"text":"管理费用","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":19,"box":[100,345,42,11]}
- {"node_id":1937,"text":"3,836,522.12","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":20,"box":[382,346,56,9]}
- {"node_id":1938,"text":"合计","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":21,"box":[101,370,56,11]}
- {"node_id":1939,"text":"3,836,522.12","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":22,"box":[382,371,58,8]}
- {"node_id":1940,"text":"附注17:财务费用","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":23,"box":[80,395,77,10]}
- {"node_id":1941,"text":"项","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":24,"box":[149,418,12,11]}
- {"node_id":1942,"text":"目","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":25,"box":[189,419,9,10]}
- {"node_id":1943,"text":"本年发生额","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":26,"box":[393,419,53,10]}
- {"node_id":1944,"text":"财务费用","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":27,"box":[100,444,42,10]}
- {"node_id":1945,"text":"-825.23","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":28,"box":[394,444,32,9]}
- {"node_id":1946,"text":"合计","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":29,"box":[101,469,57,10]}
- {"node_id":1947,"text":"-825.23","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":30,"box":[394,469,32,9]}
- {"node_id":1948,"text":"附注18:现金流量情况","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":31,"box":[80,494,105,9]}
- {"node_id":1949,"text":"补充资料","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":32,"box":[198,518,39,9]}
- {"node_id":1950,"text":"本年度","node_type":"text","parent":1833,"children":[],"para_type":"text","pageno":117,"layout_index":33,"box":[428,518,41,10]}
- {"node_id":1951,"text":"1、将净利润调节为经营活动的现金流量","node_type":"title","parent":1833,"children":[1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975],"para_type":"title_5","pageno":117,"layout_index":34,"box":[80,543,175,8]}
- {"node_id":1952,"text":"净利润","node_type":"text","parent":1951,"children":[],"para_type":"text","pageno":117,"layout_index":35,"box":[89,568,30,9]}
- {"node_id":1953,"text":"4,546,223.18","node_type":"text","parent":1951,"children":[],"para_type":"text","pageno":117,"layout_index":36,"box":[420,568,57,9]}
- {"node_id":1954,"text":"加:计提的资产减值准备","node_type":"text","parent":1951,"children":[],"para_type":"text","pageno":117,"layout_index":37,"box":[90,593,107,8]}
- {"node_id":1955,"text":"固定资产折旧","node_type":"text","parent":1951,"children":[],"para_type":"text","pageno":117,"layout_index":38,"box":[90,618,58,9]}
- {"node_id":1956,"text":"无形资产摊销","node_type":"text","parent":1951,"children":[],"para_type":"text","pageno":117,"layout_index":39,"box":[90,642,58,9]}
- {"node_id":1957,"text":"长期待摊费用摊销","node_type":"text","parent":1951,"children":[],"para_type":"text","pageno":117,"layout_index":40,"box":[90,666,78,9]}
- {"node_id":1958,"text":"处置固定资产、无形资产和其他长期资产的损失(减:收益)","node_type":"text","parent":1951,"children":[],"para_type":"text","pageno":117,"layout_index":41,"box":[90,692,261,9]}
- {"node_id":1959,"text":"固定资产报废损失","node_type":"text","parent":1951,"children":[],"para_type":"text","pageno":117,"layout_index":42,"box":[90,716,78,9]}
- {"node_id":1960,"text":"公允价值变动损失(减:收益)","node_type":"text","parent":1951,"children":[],"para_type":"text","pageno":117,"layout_index":43,"box":[90,741,132,9]}
- {"node_id":1961,"text":"14","node_type":"head_tail","parent":1951,"children":[],"para_type":"head_tail","pageno":117,"layout_index":44,"box":[290,817,10,9]}
- {"node_id":1962,"text":"财务费用","node_type":"text","parent":1951,"children":[],"para_type":"text","pageno":118,"layout_index":0,"box":[90,80,39,9]}
- {"node_id":1963,"text":"投资损失(减:收益)","node_type":"text","parent":1951,"children":[],"para_type":"text","pageno":118,"layout_index":1,"box":[90,105,94,9]}
- {"node_id":1964,"text":"递延所得税资产减少(减:增加)","node_type":"text","parent":1951,"children":[],"para_type":"text","pageno":118,"layout_index":2,"box":[90,130,144,9]}
- {"node_id":1965,"text":"递延所得税负债增加(减:减少)","node_type":"text","parent":1951,"children":[],"para_type":"text","pageno":118,"layout_index":3,"box":[90,155,144,9]}
- {"node_id":1966,"text":"存货的减少(减:增加)","node_type":"text","parent":1951,"children":[],"para_type":"text","pageno":118,"layout_index":4,"box":[90,180,104,9]}
- {"node_id":1967,"text":"261,381.27","node_type":"text","parent":1951,"children":[],"para_type":"text","pageno":118,"layout_index":5,"box":[426,181,46,9]}
- {"node_id":1968,"text":"经营性应收项目的减少(减:增加)","node_type":"text","parent":1951,"children":[],"para_type":"text","pageno":118,"layout_index":6,"box":[90,205,153,9]}
- {"node_id":1969,"text":"-4,164,406.61","node_type":"text","parent":1951,"children":[],"para_type":"text","pageno":118,"layout_index":7,"box":[421,206,56,9]}
- {"node_id":1970,"text":"经营性应付项目的增加(减:减少)","node_type":"text","parent":1951,"children":[],"para_type":"text","pageno":118,"layout_index":8,"box":[90,230,153,9]}
- {"node_id":1971,"text":"877,007.22","node_type":"text","parent":1951,"children":[],"para_type":"text","pageno":118,"layout_index":9,"box":[426,230,46,10]}
- {"node_id":1972,"text":"其他","node_type":"text","parent":1951,"children":[],"para_type":"text","pageno":118,"layout_index":10,"box":[90,254,20,12]}
- {"node_id":1973,"text":"170,570.39","node_type":"text","parent":1951,"children":[],"para_type":"text","pageno":118,"layout_index":11,"box":[427,255,46,9]}
- {"node_id":1974,"text":"经营活动产生的现金流量净额","node_type":"text","parent":1951,"children":[],"para_type":"text","pageno":118,"layout_index":12,"box":[90,280,129,9]}
- {"node_id":1975,"text":"1,690,775.45","node_type":"text","parent":1951,"children":[],"para_type":"text","pageno":118,"layout_index":13,"box":[422,281,55,9]}
- {"node_id":1976,"text":"2、不涉及现金收支的重大投资和筹资活动","node_type":"title","parent":1833,"children":[1977,1978,1979],"para_type":"title_5","pageno":118,"layout_index":14,"box":[80,304,186,9]}
- {"node_id":1977,"text":"债务转为资本","node_type":"text","parent":1976,"children":[],"para_type":"text","pageno":118,"layout_index":15,"box":[90,330,59,9]}
- {"node_id":1978,"text":"一年内到期的可转换公司债券","node_type":"text","parent":1976,"children":[],"para_type":"text","pageno":118,"layout_index":16,"box":[90,354,129,10]}
- {"node_id":1979,"text":"融资租入固定资产","node_type":"text","parent":1976,"children":[],"para_type":"text","pageno":118,"layout_index":17,"box":[90,379,79,9]}
- {"node_id":1980,"text":"3、现金及现金等价物增加情况","node_type":"title","parent":1833,"children":[1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994],"para_type":"title_5","pageno":118,"layout_index":18,"box":[80,404,135,9]}
- {"node_id":1981,"text":"现金的期末余额","node_type":"text","parent":1980,"children":[],"para_type":"text","pageno":118,"layout_index":19,"box":[90,429,69,8]}
- {"node_id":1982,"text":"9,152,452.25","node_type":"text","parent":1980,"children":[],"para_type":"text","pageno":118,"layout_index":20,"box":[422,429,54,8]}
- {"node_id":1983,"text":"减:现金的期初余额","node_type":"text","parent":1980,"children":[],"para_type":"text","pageno":118,"layout_index":21,"box":[90,453,88,9]}
- {"node_id":1984,"text":"7,742,642.77","node_type":"text","parent":1980,"children":[],"para_type":"text","pageno":118,"layout_index":22,"box":[422,453,55,11]}
- {"node_id":1985,"text":"加:现金等价物的期末余额","node_type":"text","parent":1980,"children":[],"para_type":"text","pageno":118,"layout_index":23,"box":[91,478,118,9]}
- {"node_id":1986,"text":"减:现金等价物的期初余额","node_type":"text","parent":1980,"children":[],"para_type":"text","pageno":118,"layout_index":24,"box":[90,503,119,8]}
- {"node_id":1987,"text":"现金及现金等价物的净增加额","node_type":"text","parent":1980,"children":[],"para_type":"text","pageno":118,"layout_index":25,"box":[90,527,131,9]}
- {"node_id":1988,"text":"1,409,809.48","node_type":"text","parent":1980,"children":[],"para_type":"text","pageno":118,"layout_index":26,"box":[422,528,56,8]}
- {"node_id":1989,"text":"附注19:或有事项","node_type":"text","parent":1980,"children":[],"para_type":"text","pageno":118,"layout_index":27,"box":[81,552,84,9]}
- {"node_id":1990,"text":"本公司本年度无需要关注的或有事项。","node_type":"text","parent":1980,"children":[],"para_type":"text","pageno":118,"layout_index":28,"box":[102,577,172,9]}
- {"node_id":1991,"text":"附注20:资产负债表日后事项","node_type":"text","parent":1980,"children":[],"para_type":"text","pageno":118,"layout_index":29,"box":[81,601,137,9]}
- {"node_id":1992,"text":"本公司本年度未发生资产负债表日后事项。","node_type":"text","parent":1980,"children":[],"para_type":"text","pageno":118,"layout_index":30,"box":[102,626,192,10]}
- {"node_id":1993,"text":"15","node_type":"head_tail","parent":1980,"children":[],"para_type":"head_tail","pageno":118,"layout_index":31,"box":[290,816,13,11]}
- {"node_id":1994,"text":"统一社会信用代码9131011078429443XL","node_type":"text","parent":1980,"children":[],"para_type":"text","pageno":119,"layout_index":0,"box":[118,172,110,28]}
- {"node_id":1995,"text":"营业执照","node_type":"title","parent":0,"children":[1996,1997,1998],"para_type":"title_1","pageno":119,"layout_index":1,"box":[306,163,196,42]}
- {"node_id":1996,"text":"扫描二维码登录国家企业信用信息公示系统了解更多登记备案、许可,监管信息,","node_type":"text","parent":1995,"children":[],"para_type":"text","pageno":119,"layout_index":2,"box":[635,176,47,38]}
- {"node_id":1997,"text":"证照编号:42000000202007240226","node_type":"text","parent":1995,"children":[],"para_type":"text","pageno":119,"layout_index":3,"box":[120,212,140,11]}
- {"node_id":1998,"text":"(副本)","node_type":"text","parent":1995,"children":[],"para_type":"text","pageno":119,"layout_index":4,"box":[379,214,53,17]}
- {"node_id":1999,"text":"中国(上海)自由贸易试验区临港新片区","node_type":"title","parent":0,"children":[2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086],"para_type":"title_1","pageno":119,"layout_index":5,"box":[287,239,232,15]}
- {"node_id":2000,"text":"名称上海利永会计师事务所(普通合伙)","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":119,"layout_index":6,"box":[118,256,210,14]}
- {"node_id":2001,"text":"类型普通合伙企业","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":119,"layout_index":7,"box":[118,283,125,14]}
- {"node_id":2002,"text":"执行事务合伙人韩建保","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":119,"layout_index":8,"box":[118,312,98,13]}
- {"node_id":2003,"text":"成立日期2006年01月06日","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":119,"layout_index":9,"box":[450,259,135,14]}
- {"node_id":2004,"text":"合伙期限2006年01月06日至2026年01月05日","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":119,"layout_index":10,"box":[450,286,218,14]}
- {"node_id":2005,"text":"主要经营场所中国(上海)自由贸易试验区临港新片区云汉路979号2楼","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":119,"layout_index":11,"box":[450,314,237,19]}
- {"node_id":2006,"text":"经营范围审查企业会计报表,出具审计报表;验证企业资本,出具验资报告,办理企业合并、分立、清算事宜中的审计业务,出具有关的报告;从事法律,行政法规规定的其他审计业务:承办会计咨询,会计服务业务。","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":119,"layout_index":12,"box":[119,337,313,39]}
- {"node_id":2007,"text":"依法须经批准的项目,经相关部门批准后方可开展经营活","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":119,"layout_index":13,"box":[191,375,231,10]}
- {"node_id":2008,"text":"动】","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":119,"layout_index":14,"box":[188,384,14,9]}
- {"node_id":2009,"text":"登记机关","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":119,"layout_index":15,"box":[499,428,75,15]}
- {"node_id":2010,"text":"2020年07月24日","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":119,"layout_index":16,"box":[566,470,125,14]}
- {"node_id":2011,"text":"国家企业信用信息公示系统网址http:\/\/www.gsxt.gov.cn","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":119,"layout_index":17,"box":[76,515,188,10]}
- {"node_id":2012,"text":"市场主体应当于每年1月1日至6月30日通过国家企业信用信息公示系统报送公示年度报告。","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":119,"layout_index":18,"box":[394,517,150,16]}
- {"node_id":2013,"text":"国家市场监督管理总局监制","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":119,"layout_index":19,"box":[627,519,104,13]}
- {"node_id":2014,"text":"证书序号:0006288","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":120,"layout_index":0,"box":[593,82,117,15]}
- {"node_id":2015,"text":"说明","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":120,"layout_index":1,"box":[567,125,47,17]}
- {"node_id":2016,"text":"会计师事务所","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":120,"layout_index":2,"box":[155,188,137,18]}
- {"node_id":2017,"text":"执业证书","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":120,"layout_index":3,"box":[153,215,140,29]}
- {"node_id":2018,"text":"名称:上海利永会计师事务所(普通合伙)","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":120,"layout_index":4,"box":[94,268,244,14]}
- {"node_id":2019,"text":"首席合伙人:韩建保","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":120,"layout_index":5,"box":[96,307,113,13]}
- {"node_id":2020,"text":"主任会计师:","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":120,"layout_index":6,"box":[95,329,77,13]}
- {"node_id":2021,"text":"经营场所:中国(上海)自由贸易试验区临港新片区云汉路979号2楼","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":120,"layout_index":7,"box":[95,352,269,25]}
- {"node_id":2022,"text":"组织形式:普通合伙制","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":120,"layout_index":8,"box":[94,419,135,13]}
- {"node_id":2023,"text":"执业证书编号:31000158","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":120,"layout_index":9,"box":[94,443,133,14]}
- {"node_id":2024,"text":"批准执业文号:沪财会E2005]128号","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":120,"layout_index":10,"box":[93,468,190,13]}
- {"node_id":2025,"text":"批准执业日期:2005年12月29日","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":120,"layout_index":11,"box":[92,492,165,12]}
- {"node_id":2026,"text":"1、《会计师事务所执业证书》是证明持有人经财政部门依法审批,准予执行注册会计师法定业务的凭证。","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":120,"layout_index":12,"box":[470,174,242,52]}
- {"node_id":2027,"text":"2、《会计师事务所执业证书》记载事项发生变动的应当向财政部门申请换发。","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":120,"layout_index":13,"box":[468,233,235,33]}
- {"node_id":2028,"text":"3、《会计师事务所执业证书》不得伪造、涂改、出租、出借、转让。","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":120,"layout_index":14,"box":[468,273,237,31]}
- {"node_id":2029,"text":"4、会计师事务所终止或执业许可注销的,应当向财政部门交回《会计师事务所执业证书》。","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":120,"layout_index":15,"box":[468,313,242,33]}
- {"node_id":2030,"text":"发证机关:上海市政局","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":120,"layout_index":16,"box":[536,407,150,16]}
- {"node_id":2031,"text":"二0二0年二月二十四","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":120,"layout_index":17,"box":[562,452,146,16]}
- {"node_id":2032,"text":"中华人民共和国财政部制","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":120,"layout_index":18,"box":[571,494,135,13]}
- {"node_id":2033,"text":"鞭","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":0,"box":[480,27,11,12]}
- {"node_id":2034,"text":"5欢邮发士业条菜波一","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":1,"box":[481,49,12,10]}
- {"node_id":2035,"text":"10887-09616070-7","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":2,"box":[514,60,11,8]}
- {"node_id":2036,"text":"821-01296-","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":3,"box":[462,104,11,9]}
- {"node_id":2037,"text":"母","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":4,"box":[258,212,12,12]}
- {"node_id":2038,"text":"3H1","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":5,"box":[230,231,18,11]}
- {"node_id":2039,"text":"年度检验登记","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":6,"box":[134,407,100,14]}
- {"node_id":2040,"text":"Annual Renewal Registration ","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":7,"box":[136,425,103,9]}
- {"node_id":2041,"text":"本证书经检验合格,继续有效一年。This certificate is valid for another year after ","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":8,"box":[134,458,180,23]}
- {"node_id":2042,"text":"this renewal ","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":9,"box":[137,483,47,6]}
- {"node_id":2043,"text":"韩建保(410700020005)您已通过2020年年检上海市注册会计师协会2020年08月31日","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":10,"box":[134,594,87,40]}
- {"node_id":2044,"text":"年?月\/ m 日心","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":11,"box":[234,624,80,17]}
- {"node_id":2045,"text":"多如烟","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":12,"box":[494,121,12,10]}
- {"node_id":2046,"text":"咔瘘","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":13,"box":[414,126,11,10]}
- {"node_id":2047,"text":"环","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":14,"box":[438,148,12,12]}
- {"node_id":2048,"text":"|255","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":15,"box":[514,158,11,9]}
- {"node_id":2049,"text":"挥可刘书","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":16,"box":[454,182,11,9]}
- {"node_id":2050,"text":"-00","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":17,"box":[466,183,9,6]}
- {"node_id":2051,"text":"想学以","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":18,"box":[478,183,10,9]}
- {"node_id":2052,"text":"国中姓念邮","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":19,"box":[501,183,11,9]}
- {"node_id":2053,"text":"日2","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":20,"box":[420,190,9,7]}
- {"node_id":2054,"text":"月8=","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":21,"box":[490,187,10,9]}
- {"node_id":2055,"text":"羊","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":22,"box":[407,228,9,10]}
- {"node_id":2056,"text":"年度检验登记","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":23,"box":[381,411,98,15]}
- {"node_id":2057,"text":"Annual Renewal Registration ","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":24,"box":[383,429,102,9]}
- {"node_id":2058,"text":"本证书经检验合格,继续有效一年。This certificate is valid for another year after this renewal ","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":25,"box":[381,462,177,31]}
- {"node_id":2059,"text":"韩建保(410700020005)","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":26,"box":[369,603,93,12]}
- {"node_id":2060,"text":"您已通过2021年年检","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":27,"box":[375,615,82,11]}
- {"node_id":2061,"text":"上海市注册会计师协会","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":28,"box":[372,627,88,11]}
- {"node_id":2062,"text":"2","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":29,"box":[478,629,9,18]}
- {"node_id":2063,"text":"月","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":30,"box":[515,630,6,9]}
- {"node_id":2064,"text":"曰","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":31,"box":[550,632,6,8]}
- {"node_id":2065,"text":"2021年10月30日","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":32,"box":[382,640,67,10]}
- {"node_id":2066,"text":"\/ m ","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":33,"box":[514,643,6,4]}
- {"node_id":2067,"text":"6","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":121,"layout_index":34,"box":[115,676,6,9]}
- {"node_id":2068,"text":"7","node_type":"head_tail","parent":1999,"children":[],"para_type":"head_tail","pageno":121,"layout_index":35,"box":[559,684,6,9]}
- {"node_id":2069,"text":"修傳冊运祖","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":122,"layout_index":0,"box":[449,61,13,11]}
- {"node_id":2070,"text":"83018070776170373口","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":122,"layout_index":1,"box":[469,104,10,9]}
- {"node_id":2071,"text":"886÷76","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":122,"layout_index":2,"box":[430,140,11,8]}
- {"node_id":2072,"text":"嗣世隨","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":122,"layout_index":3,"box":[393,158,10,9]}
- {"node_id":2073,"text":"4","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":122,"layout_index":4,"box":[400,187,10,10]}
- {"node_id":2074,"text":"208","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":122,"layout_index":5,"box":[458,189,8,6]}
- {"node_id":2075,"text":"酉中兴尔邮","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":122,"layout_index":6,"box":[490,188,11,9]}
- {"node_id":2076,"text":"255","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":122,"layout_index":7,"box":[502,185,11,9]}
- {"node_id":2077,"text":"05=品","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":122,"layout_index":8,"box":[414,194,8,7]}
- {"node_id":2078,"text":"850>","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":122,"layout_index":9,"box":[480,192,9,8]}
- {"node_id":2079,"text":"众","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":122,"layout_index":10,"box":[255,218,8,7]}
- {"node_id":2080,"text":"⊥","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":122,"layout_index":11,"box":[236,234,6,6]}
- {"node_id":2081,"text":"注册会计师工作单位变更事项登记Registration of the Change of working Unit by a CPA ","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":122,"layout_index":12,"box":[122,459,198,22]}
- {"node_id":2082,"text":"同意调出","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":122,"layout_index":13,"box":[124,493,41,9]}
- {"node_id":2083,"text":"oidriobe ","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":122,"layout_index":14,"box":[154,494,32,21]}
- {"node_id":2084,"text":"河南远","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":122,"layout_index":15,"box":[129,512,67,33]}
- {"node_id":2085,"text":"所","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":122,"layout_index":16,"box":[308,530,9,9]}
- {"node_id":2086,"text":"CPAS ","node_type":"text","parent":1999,"children":[],"para_type":"text","pageno":122,"layout_index":17,"box":[301,540,14,5]}
- {"node_id":2087,"text":"转出协会盖章","node_type":"title","parent":0,"children":[2088,2089,2090,2091,2092],"para_type":"title_1","pageno":122,"layout_index":18,"box":[251,569,66,10]}
- {"node_id":2088,"text":"Stamp of the transfer-out Institute of CPAs ","node_type":"text","parent":2087,"children":[],"para_type":"text","pageno":122,"layout_index":19,"box":[211,580,109,6]}
- {"node_id":2089,"text":"2021年月日1y2m21\/d","node_type":"text","parent":2087,"children":[],"para_type":"text","pageno":122,"layout_index":20,"box":[206,588,112,18]}
- {"node_id":2090,"text":"同意调入","node_type":"text","parent":2087,"children":[],"para_type":"text","pageno":122,"layout_index":21,"box":[125,611,41,8]}
- {"node_id":2091,"text":"Agree the holder to be transfered to ","node_type":"text","parent":2087,"children":[],"para_type":"text","pageno":122,"layout_index":22,"box":[128,621,95,7]}
- {"node_id":2092,"text":"上海利事务所CPAS ","node_type":"text","parent":2087,"children":[],"para_type":"text","pageno":122,"layout_index":23,"box":[143,647,174,23]}
- {"node_id":2093,"text":"协会盖章","node_type":"title","parent":0,"children":[2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108],"para_type":"title_1","pageno":122,"layout_index":24,"box":[277,686,41,9]}
- {"node_id":2094,"text":"of CPAs ","node_type":"text","parent":2093,"children":[],"para_type":"text","pageno":122,"layout_index":25,"box":[299,695,22,9]}
- {"node_id":2095,"text":"注意事项","node_type":"text","parent":2093,"children":[],"para_type":"text","pageno":122,"layout_index":26,"box":[418,456,66,12]}
- {"node_id":2096,"text":"一、注册会计师执行业务,必要时须向委托方出示本证书。","node_type":"text","parent":2093,"children":[],"para_type":"text","pageno":122,"layout_index":27,"box":[352,478,194,20]}
- {"node_id":2097,"text":"二、本证书只限于本人使用,不得转让、涂改。三、注册会计师停止执行法定业务时,应将本证书缴还主管注册会计师协会。","node_type":"text","parent":2093,"children":[],"para_type":"text","pageno":122,"layout_index":28,"box":[352,500,193,33]}
- {"node_id":2098,"text":"四、本证书如遗失,应立即向主管注册会计师协会报告,登报声明作废后,办理补发手续。","node_type":"text","parent":2093,"children":[],"para_type":"text","pageno":122,"layout_index":29,"box":[352,535,193,23]}
- {"node_id":2099,"text":"NOTES ","node_type":"text","parent":2093,"children":[],"para_type":"text","pageno":122,"layout_index":30,"box":[436,581,28,6]}
- {"node_id":2100,"text":"1. When practising, the CPA shall show the client this ","node_type":"text","parent":2093,"children":[],"para_type":"text","pageno":122,"layout_index":31,"box":[352,596,191,9]}
- {"node_id":2101,"text":"certificate when necessary ","node_type":"text","parent":2093,"children":[],"para_type":"text","pageno":122,"layout_index":32,"box":[361,606,85,8]}
- {"node_id":2102,"text":"2. This certificate > shall be exclysively used by the holder. No transfer or alteration shan, be allowed ","node_type":"text","parent":2093,"children":[],"para_type":"text","pageno":122,"layout_index":33,"box":[352,614,193,21]}
- {"node_id":2103,"text":"3. The CPA shall return the certificate to the competent ","node_type":"text","parent":2093,"children":[],"para_type":"text","pageno":122,"layout_index":34,"box":[352,635,186,12]}
- {"node_id":2104,"text":"Institute of CPAs when the cPa stops conducting ","node_type":"text","parent":2093,"children":[],"para_type":"text","pageno":122,"layout_index":35,"box":[359,646,180,12]}
- {"node_id":2105,"text":"statutory business ","node_type":"text","parent":2093,"children":[],"para_type":"text","pageno":122,"layout_index":36,"box":[359,657,58,8]}
- {"node_id":2106,"text":"4. In case of loss, the CPA shall report to the competent Institute of CPAs immediately and go through the ","node_type":"text","parent":2093,"children":[],"para_type":"text","pageno":122,"layout_index":37,"box":[351,665,193,23]}
- {"node_id":2107,"text":"procedure of reissue after making an announcement of ","node_type":"text","parent":2093,"children":[],"para_type":"text","pageno":122,"layout_index":38,"box":[359,688,186,10]}
- {"node_id":2108,"text":"loss on the newspaper.","node_type":"text","parent":2093,"children":[],"para_type":"text","pageno":122,"layout_index":39,"box":[358,697,74,9]}
- {"node_id":2109,"text":"\/ n d ","node_type":"title","parent":0,"children":[2110,2111],"para_type":"title_1","pageno":122,"layout_index":40,"box":[276,718,42,4]}
- {"node_id":2110,"text":"12","node_type":"head_tail","parent":2109,"children":[],"para_type":"head_tail","pageno":122,"layout_index":41,"box":[121,737,11,9]}
- {"node_id":2111,"text":"上海利永会计师事务所(普通合伙)","node_type":"head_tail","parent":2109,"children":[],"para_type":"head_tail","pageno":123,"layout_index":0,"box":[131,219,320,23]}
- {"node_id":2112,"text":"关于上海绰琪新型建材科技有限公司的","node_type":"title","parent":0,"children":[2113,2114,2115,2116,2117,2118,2120,2122,2124,2126,2128,2130],"para_type":"title_1","pageno":123,"layout_index":1,"box":[136,284,315,19]}
- {"node_id":2113,"text":"审计报告","node_type":"text","parent":2112,"children":[],"para_type":"text","pageno":123,"layout_index":2,"box":[258,321,74,19]}
- {"node_id":2114,"text":"(二〇二一年度)","node_type":"text","parent":2112,"children":[],"para_type":"text","pageno":123,"layout_index":3,"box":[253,362,75,12]}
- {"node_id":2115,"text":"目录","node_type":"text","parent":2112,"children":[],"para_type":"text","pageno":123,"layout_index":4,"box":[259,422,54,22]}
- {"node_id":2116,"text":"项目","node_type":"text","parent":2112,"children":[],"para_type":"text","pageno":123,"layout_index":5,"box":[164,460,48,14]}
- {"node_id":2117,"text":"页码","node_type":"text","parent":2112,"children":[],"para_type":"text","pageno":123,"layout_index":6,"box":[396,462,23,14]}
- {"node_id":2118,"text":"一。审计报告","node_type":"title","parent":2112,"children":[2119],"para_type":"title_3","pageno":123,"layout_index":7,"box":[150,499,63,12]}
- {"node_id":2119,"text":"1-2","node_type":"text","parent":2118,"children":[],"para_type":"text","pageno":123,"layout_index":8,"box":[397,500,19,11]}
- {"node_id":2120,"text":"二。资产负债表","node_type":"title","parent":2112,"children":[2121],"para_type":"title_3","pageno":123,"layout_index":9,"box":[149,523,75,12]}
- {"node_id":2121,"text":"3-4","node_type":"text","parent":2120,"children":[],"para_type":"text","pageno":123,"layout_index":10,"box":[397,524,19,12]}
- {"node_id":2122,"text":"三。利润表","node_type":"title","parent":2112,"children":[2123],"para_type":"title_3","pageno":123,"layout_index":11,"box":[149,547,55,12]}
- {"node_id":2123,"text":"5","node_type":"text","parent":2122,"children":[],"para_type":"text","pageno":123,"layout_index":12,"box":[402,549,6,10]}
- {"node_id":2124,"text":"四。现金流量表","node_type":"title","parent":2112,"children":[2125],"para_type":"title_3","pageno":123,"layout_index":13,"box":[150,571,74,12]}
- {"node_id":2125,"text":"6","node_type":"text","parent":2124,"children":[],"para_type":"text","pageno":123,"layout_index":14,"box":[402,573,6,10]}
- {"node_id":2126,"text":"五。所有者权益变动表","node_type":"title","parent":2112,"children":[2127],"para_type":"title_3","pageno":123,"layout_index":15,"box":[150,594,108,13]}
- {"node_id":2127,"text":"7","node_type":"text","parent":2126,"children":[],"para_type":"text","pageno":123,"layout_index":16,"box":[402,596,7,10]}
- {"node_id":2128,"text":"六。会计报表附注","node_type":"title","parent":2112,"children":[2129],"para_type":"title_3","pageno":123,"layout_index":17,"box":[149,618,87,12]}
- {"node_id":2129,"text":"8-17","node_type":"text","parent":2128,"children":[],"para_type":"text","pageno":123,"layout_index":18,"box":[394,618,23,11]}
- {"node_id":2130,"text":"七。会计师事务所营业执照、执业许可证复印件","node_type":"title","parent":2112,"children":[],"para_type":"title_3","pageno":123,"layout_index":19,"box":[150,641,232,11]}
- {"node_id":2131,"text":"上海利永会计师事务所(普通合伙)","node_type":"title","parent":0,"children":[2132,2133],"para_type":"title_1","pageno":124,"layout_index":0,"box":[121,88,346,24]}
- {"node_id":2132,"text":"*机密*","node_type":"text","parent":2131,"children":[],"para_type":"text","pageno":124,"layout_index":1,"box":[108,130,28,10]}
- {"node_id":2133,"text":"利永审字(2022)第8-622号","node_type":"text","parent":2131,"children":[],"para_type":"text","pageno":124,"layout_index":2,"box":[385,133,113,10]}
- {"node_id":2134,"text":"审计报告","node_type":"title","parent":0,"children":[2135,2136,2139,2141,2145],"para_type":"title_1","pageno":124,"layout_index":3,"box":[258,147,83,16]}
- {"node_id":2135,"text":"上海绰琪新型建材科技有限公司全体股东:","node_type":"text","parent":2134,"children":[],"para_type":"text","pageno":124,"layout_index":4,"box":[109,173,189,10]}
- {"node_id":2136,"text":"一、审计意见","node_type":"title","parent":2134,"children":[2137,2138],"para_type":"title_3","pageno":124,"layout_index":5,"box":[126,190,59,9]}
- {"node_id":2137,"text":"我们审计了后附的上海绰琪新型建材科技有限公司(以下简称公司)财务报表,包括2021年12月31日的资产负债表、2021年度的利润表、现金流量表以及财务报表附注。","node_type":"text","parent":2136,"children":[],"para_type":"text","pageno":124,"layout_index":6,"box":[108,207,373,29]}
- {"node_id":2138,"text":"我们认为,后附的财务报表在所有重大方面按照小企业会计准则的规定编制,公允反映了公司2021年12月31日财务状况以及2021年度经营成果和现金流量。","node_type":"text","parent":2136,"children":[],"para_type":"text","pageno":124,"layout_index":7,"box":[108,247,372,31]}
- {"node_id":2139,"text":"二、形成审计意见的基础","node_type":"title","parent":2134,"children":[2140],"para_type":"title_3","pageno":124,"layout_index":8,"box":[125,290,110,9]}
- {"node_id":2140,"text":"我们按照中国注册会计师审计准则的规定执行了审计工作。审计报告的“注册会计师对财务报表审计的责任部分进一步阐述了我们在这些准则下的责任。按照中国注册会计师职业道德守则,我们独立于公司,并履行了职业道德方面其他责任。我们相信,我们获取的审计证据是充分、适当的,为发表审计意见提供了基础。","node_type":"text","parent":2139,"children":[],"para_type":"text","pageno":124,"layout_index":9,"box":[108,308,377,67]}
- {"node_id":2141,"text":"三、管理层和治理层对财务报表的责任","node_type":"title","parent":2134,"children":[2142,2143,2144],"para_type":"title_3","pageno":124,"layout_index":10,"box":[122,388,170,10]}
- {"node_id":2142,"text":"公司管理层负责按照小企业会计准则的规定编制财务报表,使其实现公允反映,并设计、执行和维护必要的内部控制,以使财务报表不存在由于舞弊或错报导致的重大错报","node_type":"text","parent":2141,"children":[],"para_type":"text","pageno":124,"layout_index":11,"box":[108,406,377,27]}
- {"node_id":2143,"text":"在编制财务报表时,管理层负责评估公司的持续经营能力,披露与持续经营相关的事项,并运用持续经营假设,除非管理层计划清算公司、终止运营或别无其他现实的选择","node_type":"text","parent":2141,"children":[],"para_type":"text","pageno":124,"layout_index":12,"box":[108,452,379,27]}
- {"node_id":2144,"text":"治理层负责监督公司的财务报告过程。","node_type":"text","parent":2141,"children":[],"para_type":"text","pageno":124,"layout_index":13,"box":[126,498,160,9]}
- {"node_id":2145,"text":"四、注册会计师对财务报表审计的责任","node_type":"title","parent":2134,"children":[2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162],"para_type":"title_3","pageno":124,"layout_index":14,"box":[123,517,169,10]}
- {"node_id":2146,"text":"我们的目标是对财务报表整体是否不存在由于舞弊或错误导致的重大错报获取合理保证,并出具包含审计意见的审计报告。合理保证是高水平的保证,但并不能保证按照审计准则执行的审计在某一重大错报存在时总能发现。错报可能由于舞弊或错误导致,如果合理预期错报单独或汇总起来可能影响财务报表使用者依据财务报表作出的经济决策,则通常认为错报是重大的。","node_type":"text","parent":2145,"children":[],"para_type":"text","pageno":124,"layout_index":15,"box":[108,534,380,86]}
- {"node_id":2147,"text":"在按照审计准则执行审计工作过程中,我们运用职业判断,并保持职业怀疑。同时,我们也执行以下工作:","node_type":"text","parent":2145,"children":[],"para_type":"text","pageno":124,"layout_index":16,"box":[108,635,373,27]}
- {"node_id":2148,"text":"1","node_type":"head_tail","parent":2145,"children":[],"para_type":"head_tail","pageno":124,"layout_index":17,"box":[290,802,4,8]}
- {"node_id":2149,"text":"1、识别和评估由于舞弊或错误导致的财务报表重大错报风险,设计和实施审计程序以应对这些风险,并获取充分、适当的审计证据,作为发表审计意见的基础。由于舞弊可能涉及串通、伪造、故意遗漏、虚假陈述或凌驾于内部控制之上,未能发现由于舞弊导致的重大错报的风险高于未能发现由于错误导致的重大错报的风险。","node_type":"text","parent":2145,"children":[],"para_type":"text","pageno":125,"layout_index":0,"box":[109,88,381,68]}
- {"node_id":2150,"text":"2、了解与审计相关的内部控制,以设计恰当的审计程序,但目的并非对内部控制的有效性发表意见。","node_type":"text","parent":2145,"children":[],"para_type":"text","pageno":125,"layout_index":1,"box":[109,164,380,29]}
- {"node_id":2151,"text":"3、评价管理层选用会计政策的恰当性和作出会计估计及相关披露的合理性。","node_type":"text","parent":2145,"children":[],"para_type":"text","pageno":125,"layout_index":2,"box":[127,202,324,12]}
- {"node_id":2152,"text":"4、对管理层使用持续经营假设的恰当性得出结论。同时,根据获取的审计证据,就可能导致对公司持续经营能力产生重大疑虑的事项或情况是否存在重大不确定性得出结论。如果我们得出结论认为存在重大不确定性,审计准则要求我们在审计报告中提请报表使用者注意财务报表中的相关披露:如果披露不充分,我们应当发表非无保留意见。我们的结论基于截止审计报告日可获得的信息。然而,未来的事项或情况可能导致公司不能持续经营。","node_type":"text","parent":2145,"children":[],"para_type":"text","pageno":125,"layout_index":3,"box":[108,222,381,119]}
- {"node_id":2153,"text":"5、评价财务报表的总体列报、结构和内容(包括披露),并评价财务报表是否公允反映相关交易和事项。","node_type":"text","parent":2145,"children":[],"para_type":"text","pageno":125,"layout_index":4,"box":[108,350,372,30]}
- {"node_id":2154,"text":"我们与治理层就计划的审计范围、时间安排和重大审计发现等事项进行沟通,包括沟通我们在审计中识别出的值得关注的内部控制缺陷。","node_type":"text","parent":2145,"children":[],"para_type":"text","pageno":125,"layout_index":5,"box":[108,389,372,29]}
- {"node_id":2155,"text":"上海利永会计师事务所(普通合伙)","node_type":"text","parent":2145,"children":[],"para_type":"text","pageno":125,"layout_index":6,"box":[128,491,150,11]}
- {"node_id":2156,"text":"中国注册会计师","node_type":"text","parent":2145,"children":[],"para_type":"text","pageno":125,"layout_index":7,"box":[330,493,96,9]}
- {"node_id":2157,"text":"韩建保","node_type":"text","parent":2145,"children":[],"para_type":"text","pageno":125,"layout_index":8,"box":[444,464,94,42]}
- {"node_id":2158,"text":"中国上海","node_type":"text","parent":2145,"children":[],"para_type":"text","pageno":125,"layout_index":9,"box":[176,558,63,11]}
- {"node_id":2159,"text":"中国注册会计师","node_type":"text","parent":2145,"children":[],"para_type":"text","pageno":125,"layout_index":10,"box":[330,560,97,9]}
- {"node_id":2160,"text":"周志敬","node_type":"text","parent":2145,"children":[],"para_type":"text","pageno":125,"layout_index":11,"box":[437,564,69,37]}
- {"node_id":2161,"text":"二〇二二年八月二十九日","node_type":"text","parent":2145,"children":[],"para_type":"text","pageno":125,"layout_index":12,"box":[353,651,105,9]}
- {"node_id":2162,"text":"2","node_type":"head_tail","parent":2145,"children":[],"para_type":"head_tail","pageno":125,"layout_index":13,"box":[288,801,7,10]}
- {"node_id":2163,"text":"上海绰琪新型建材科技有限公司","node_type":"title","parent":0,"children":[2164,2165,2166,2167,2168,2169,2170,2171],"para_type":"title_1","pageno":126,"layout_index":0,"box":[225,66,156,10]}
- {"node_id":2164,"text":"资产负债表","node_type":"text","parent":2163,"children":[],"para_type":"text","pageno":126,"layout_index":1,"box":[269,81,68,14]}
- {"node_id":2165,"text":"2021年12月31日","node_type":"text","parent":2163,"children":[],"para_type":"text","pageno":126,"layout_index":2,"box":[270,101,65,9]}
- {"node_id":2166,"text":"单位:人民币元","node_type":"text","parent":2163,"children":[],"para_type":"text","pageno":126,"layout_index":3,"box":[463,119,65,9]}
- {"node_id":2167,"text":[["项目","注释四","年末数","年初数"],["流动资产:"],["货币资金","1","11,246,554.48","9,152,452.25"],["短期投资"],["应收票据","2","2,600,000.00","800,000.00"],["应收账款","3","8,854,665.87","6,422,442.81"],["预付账款"],["应收股利"],["应收利息"],["其他应收款","4","125,476.84","76,946.61"],["存货","5","2,660,825.00","974,273.09"],["其他流动资产"],["流动资产合计","","25,487,522.19","17,426,114.76"],["非流动资产:"],["长期债券投资"],["长期股权投资"],["固定资产原价","6","2,165,486.25","1,656,987.05"],["减:累计折旧","6","319.070.00","236,364.03"],["固定资产账面价值","6","1,846,416.25","1,420,623.02"],["在建工程"],["工程物资"],["固定资产清理"],["生产性生物资产"],["无形资产","7","260,000.00","260,000.00"],["开发支出"],["长期待摊费用"],["其他非流动资产"],["非流动资产合计","","2,106,416.25","1,680,623.02"],["资产合计","","27,593,938.44","19,106,737.78"],[""]],"node_type":"table","parent":2163,"children":[],"para_type":"table","pageno":126,"layout_index":4,"box":[61,131,479,610]}
- {"node_id":2168,"text":"公司法定代表人:","node_type":"text","parent":2163,"children":[],"para_type":"text","pageno":126,"layout_index":5,"box":[73,757,68,9]}
- {"node_id":2169,"text":"主管会计工作负责人:","node_type":"text","parent":2163,"children":[],"para_type":"text","pageno":126,"layout_index":6,"box":[244,758,87,9]}
- {"node_id":2170,"text":"会计机构负责人:","node_type":"text","parent":2163,"children":[],"para_type":"text","pageno":126,"layout_index":7,"box":[420,759,69,9]}
- {"node_id":2171,"text":"3","node_type":"head_tail","parent":2163,"children":[],"para_type":"head_tail","pageno":126,"layout_index":8,"box":[289,803,6,9]}
- {"node_id":2172,"text":"上海绰琪新型建材科技有限公司","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":127,"layout_index":0,"box":[224,65,158,12]}
- {"node_id":2173,"text":"资产负债表(续)","node_type":"title","parent":0,"children":[2174,2175,2176,2177,2178,2179,2180],"para_type":"title_1","pageno":127,"layout_index":1,"box":[255,81,93,14]}
- {"node_id":2174,"text":"2021年12月31日","node_type":"text","parent":2173,"children":[],"para_type":"text","pageno":127,"layout_index":2,"box":[270,101,66,9]}
- {"node_id":2175,"text":"单位:人民币元","node_type":"text","parent":2173,"children":[],"para_type":"text","pageno":127,"layout_index":3,"box":[464,119,66,9]}
- {"node_id":2176,"text":[["项目","注释四","年末数","年初数"],["流动负债:"],["短期借款"],["应付票据"],["应付账款","8","5,672,514.43","2,866,952.30"],["预收账款"],["应付职工薪酬","","235,517.00","208,211.25"],["应交税费","","104.841.58","58,292.56"],["应付利息"],["应付利润"],["其他应付款","9","315,977.64","356,886.98"],["其他流动负债"],["流动负债合计","","6,328,850.65","3,490,343.09"],["非流动负债:"],["长期借款"],["长期应付款"],["递延收益"],["其他非流动负债"],["非流动负债合计"],["负债合计","","6,328,850.65","3,490,343.09"],["所有者权益(或股东权益):"],["实收资本(或股本)","10","10,000,000.00","10,000,000.00"],["资本公积"],["盈余公积"],["未分配利润","11","11,265,087.79","5,616,394.69"],["所有者权益(或股东权益)合计","","21,265,087.79","15,616,394.69"],["负债和所有者权益(或股东权益)合计","","27,593,938.44","19,106,737.78"],[""]],"node_type":"table","parent":2173,"children":[],"para_type":"table","pageno":127,"layout_index":4,"box":[61,131,480,623]}
- {"node_id":2177,"text":"公司法定代表人:","node_type":"text","parent":2173,"children":[],"para_type":"text","pageno":127,"layout_index":5,"box":[73,769,68,9]}
- {"node_id":2178,"text":"主管会计工作负责人:","node_type":"text","parent":2173,"children":[],"para_type":"text","pageno":127,"layout_index":6,"box":[245,770,88,9]}
- {"node_id":2179,"text":"会计机构负责人:","node_type":"text","parent":2173,"children":[],"para_type":"text","pageno":127,"layout_index":7,"box":[421,771,69,9]}
- {"node_id":2180,"text":"4","node_type":"head_tail","parent":2173,"children":[],"para_type":"head_tail","pageno":127,"layout_index":8,"box":[290,803,7,8]}
- {"node_id":2181,"text":"上海绰琪新型建材科技有限公司","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":128,"layout_index":0,"box":[224,74,157,11]}
- {"node_id":2182,"text":"利润表","node_type":"title","parent":0,"children":[2183,2184,2185,2186,2187,2188,2189],"para_type":"title_1","pageno":128,"layout_index":1,"box":[268,106,70,14]}
- {"node_id":2183,"text":"2021年度","node_type":"text","parent":2182,"children":[],"para_type":"text","pageno":128,"layout_index":2,"box":[283,143,39,10]}
- {"node_id":2184,"text":"单位:人民币元","node_type":"text","parent":2182,"children":[],"para_type":"text","pageno":128,"layout_index":3,"box":[464,178,65,10]}
- {"node_id":2185,"text":[["项目","注释四","本年累计数"],["一、营业收入","12","46,812,274.58"],["减:营业成本","13","33,892,086.80"],["营业税金及附加","14","41,557.49"],["销售费用","15","615,428.54"],["管理费用","16","4,645,887.74"],["其中:研究费用"],["财务费用","","-2,668.58"],["其中:利息收入"],["加:投资收益(损失以“-”号填列)"],["二、营业利润(亏损以“-”号填列)","","7,619,982.59"],["加:营业外收入"],["减:营业外支出"],["三、利润总额","","7,619,982.59"],["减:所得税费用","","1,971,289.49"],["四、净利润","","5,648,693.10"],[""]],"node_type":"table","parent":2182,"children":[],"para_type":"table","pageno":128,"layout_index":4,"box":[61,198,480,538]}
- {"node_id":2186,"text":"公司法定代表人:","node_type":"text","parent":2182,"children":[],"para_type":"text","pageno":128,"layout_index":5,"box":[73,758,69,9]}
- {"node_id":2187,"text":"主管会计工作负责人:","node_type":"text","parent":2182,"children":[],"para_type":"text","pageno":128,"layout_index":6,"box":[244,758,87,11]}
- {"node_id":2188,"text":"会计机构负责人:","node_type":"text","parent":2182,"children":[],"para_type":"text","pageno":128,"layout_index":7,"box":[420,760,69,9]}
- {"node_id":2189,"text":"5","node_type":"head_tail","parent":2182,"children":[],"para_type":"head_tail","pageno":128,"layout_index":8,"box":[289,803,6,9]}
- {"node_id":2190,"text":"上海绰琪新型建材科技有限公司","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":129,"layout_index":0,"box":[225,66,158,12]}
- {"node_id":2191,"text":"现金流量表","node_type":"title","parent":0,"children":[2192,2193,2194,2195,2196,2197,2198,2199],"para_type":"title_1","pageno":129,"layout_index":1,"box":[256,87,95,14]}
- {"node_id":2192,"text":"2021年度","node_type":"text","parent":2191,"children":[],"para_type":"text","pageno":129,"layout_index":2,"box":[284,115,39,9]}
- {"node_id":2193,"text":"单位:人民币元","node_type":"text","parent":2191,"children":[],"para_type":"text","pageno":129,"layout_index":3,"box":[464,133,65,9]}
- {"node_id":2194,"text":[["项目","行次","本年度"],["一、经营活动产生现金流量","1"],["销售产成品、商品、提供劳务收到的现金","2","40,574526.58"],["收到的税费返还","3"],["收到的其他与经营活动有关的现金","3","465,571.54"],["购买原材料、商品、接受劳务支付的现金","4","31,400.023.22"],["支付的职工薪酬","5","3,045,183.74"],["支付的税费","6","2,954,147.58"],["支付的其他与经营活动有关的现金","7","1,111,081.35"],["经营活动产生的现金流量净额","8","2,529,662.23"],["二、投资活动产生的现金流量","9"],["收回短期投资、长期债券投资和长期股权投资收到的现金","10"],["取得投资收益所收到的现金","11"],["处置固定资产、无形资产和其他长期资产而收回的现金净额","12"],["购建固定资产、无形资产和其他长期资产所支付的现金","13","435,560.00"],["短期投资、长期债券投资和长期股权投资支付的现金","14"],["投资活动产生的现金流量净额","15","-435,560.00"],["三、筹资活动产生的现金流量","16"],["吸收投资所收到的现金","17"],["借款所收到的现金","18"],["偿还借款本金支付的现金","19"],["偿还借款利息支付的现金","20"],["分配利润支付的现金","21"],["筹资活动产生的现金流量净额","22"],["四、现金及现金等价物净额增加","23","2,094,102.23"],["加:期初现金及现金等价物余额","24","9,152,452.25"],["五、期末现金及现金等价物余额","25","11,246,554.48"],[""]],"node_type":"table","parent":2191,"children":[],"para_type":"table","pageno":129,"layout_index":4,"box":[62,146,480,491]}
- {"node_id":2195,"text":"公司法定代表人:","node_type":"text","parent":2191,"children":[],"para_type":"text","pageno":129,"layout_index":5,"box":[74,653,69,9]}
- {"node_id":2196,"text":"主管会计工作负责人:","node_type":"text","parent":2191,"children":[],"para_type":"text","pageno":129,"layout_index":6,"box":[246,654,87,9]}
- {"node_id":2197,"text":"会计机构负责人:","node_type":"text","parent":2191,"children":[],"para_type":"text","pageno":129,"layout_index":7,"box":[422,654,69,9]}
- {"node_id":2198,"text":"6","node_type":"head_tail","parent":2191,"children":[],"para_type":"head_tail","pageno":129,"layout_index":8,"box":[290,802,7,9]}
- {"node_id":2199,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":2191,"children":[],"para_type":"head_tail","pageno":130,"layout_index":0,"box":[356,66,125,9]}
- {"node_id":2200,"text":"所有者权益(或股东权益)增减变动表","node_type":"title","parent":0,"children":[2201,2202,2203,2204,2205,2206],"para_type":"title_1","pageno":130,"layout_index":1,"box":[340,78,156,9]}
- {"node_id":2201,"text":"2021年度","node_type":"text","parent":2200,"children":[],"para_type":"text","pageno":130,"layout_index":2,"box":[403,91,30,7]}
- {"node_id":2202,"text":[["单位:人民币元","单位:人民币元","单位:人民币元","单位:人民币元","单位:人民币元","单位:人民币元","单位:人民币元","单位:人民币元"],["项目","行次","本年金额","本年金额","本年金额","本年金额","本年金额","本年金额"],["项目","行次","实收资本(或股本)","资本公积","其他综合收益","盈余公积","未分配利润","所有者权益合计"],["、上年年末余额","01","10.000.000.00","","","","5,616,394.69","15,616,394.69"],["加:会计政策变更","02"],["前期差错更正","03"],["二、本年年初余额","04","10.000,000.00","","","","5.616.394.69","15,616.394.69"],["三、本年增减变动金额(减少以“-”号填列)","05","","","","","5.648.693.10","5.648.693.10"],["(一)净利润","06","","","","","5.648,693.10","5,648,693.10"],["(二)直接计入所有者权益的利得和损失","07"],["1.可供出售金融资产公允价值变动净额","08"],["2.权益法下被投资单位其他所有者权益变动的影响","09"],["3.与计入所有者权益项目有关的所得税影响","10"],["4.其他","11"],["(三)所有者投入和减少资本","12"],["1.所有者投入资本","13"],["2.股份支付计入所有者权益的金额","14"],["3.其他","15"],["(四)利润分配","16"],["1.提取盈余公积","17"],["2.对所有者(或股东)的分配","18"],["3.其他","19"],["(五)所有者权益内部结转","20"],["1.资本公积转增资本(或股本)","21"],["2.盈余公积转增资本(或股本)","22"],["3.盈余公积弥补亏损","23"],["4.其他","24"],["四、本年年末余额","25","10.000.000.00","","","","11.265.087.79","21.265.087.79"],[""]],"node_type":"table","parent":2200,"children":[],"para_type":"table","pageno":130,"layout_index":3,"box":[94,105,649,410]}
- {"node_id":2203,"text":"公司法定代表人:","node_type":"text","parent":2200,"children":[],"para_type":"text","pageno":130,"layout_index":4,"box":[95,526,55,7]}
- {"node_id":2204,"text":"主管会计工作负责人:","node_type":"text","parent":2200,"children":[],"para_type":"text","pageno":130,"layout_index":5,"box":[372,527,69,7]}
- {"node_id":2205,"text":"会计机构负责人:","node_type":"text","parent":2200,"children":[],"para_type":"text","pageno":130,"layout_index":6,"box":[653,528,56,6]}
- {"node_id":2206,"text":"7","node_type":"head_tail","parent":2200,"children":[],"para_type":"head_tail","pageno":130,"layout_index":7,"box":[412,549,6,7]}
- {"node_id":2207,"text":"上海绰琪新型建材科技有限公司","node_type":"title","parent":0,"children":[2208,2209,2210,2211,2218,2332],"para_type":"title_1","pageno":131,"layout_index":0,"box":[225,108,138,10]}
- {"node_id":2208,"text":"会计报表附注","node_type":"text","parent":2207,"children":[],"para_type":"text","pageno":131,"layout_index":1,"box":[248,129,92,16]}
- {"node_id":2209,"text":"(二O二一年度)","node_type":"text","parent":2207,"children":[],"para_type":"text","pageno":131,"layout_index":2,"box":[253,156,78,12]}
- {"node_id":2210,"text":"单位:人民币元","node_type":"head_tail","parent":2207,"children":[],"para_type":"head_tail","pageno":131,"layout_index":3,"box":[439,182,68,10]}
- {"node_id":2211,"text":"一、公司基本情况:","node_type":"title","parent":2207,"children":[2212,2213,2214,2215,2216,2217],"para_type":"title_3","pageno":131,"layout_index":4,"box":[79,203,84,10]}
- {"node_id":2212,"text":"公司名称:上海绰琪新型建材科技有限公司","node_type":"text","parent":2211,"children":[],"para_type":"text","pageno":131,"layout_index":5,"box":[100,230,188,9]}
- {"node_id":2213,"text":"注册地址:上海市闵行区元江路5500号第1幢F2396室","node_type":"text","parent":2211,"children":[],"para_type":"text","pageno":131,"layout_index":6,"box":[98,253,230,11]}
- {"node_id":2214,"text":"注册资本:人民币3980万元","node_type":"text","parent":2211,"children":[],"para_type":"text","pageno":131,"layout_index":7,"box":[98,277,121,9]}
- {"node_id":2215,"text":"统一社会信用代码:91310112MA1GC4MP45","node_type":"text","parent":2211,"children":[],"para_type":"text","pageno":131,"layout_index":8,"box":[98,302,181,9]}
- {"node_id":2216,"text":"公司系经闵行区市场监督管理局批准,于2018年8月9日正式成立的有限责任公司。","node_type":"text","parent":2211,"children":[],"para_type":"text","pageno":131,"layout_index":9,"box":[100,325,353,11]}
- {"node_id":2217,"text":"公司经营范围:从事新型建材科技领域内的技术开发、技术咨询、技术服务、技术转让,新型建筑材料、新型环保再生建筑材料、干(湿)砂浆材料、自流平水泥、无(有)机磨石材料、快速修补砂浆、抗裂水泥、透水地坪材料、预制产品、新型地砖墙砖、石英砂、玻璃颗粒、玉石水晶颗粒、工程机械、建筑耗材辅料、水泥添加剂、涂料、防腐防静电地坪材料、彩砂地坪材料、化工原料(除危险化学产品、监控化学品、烟花爆竹、民用爆炸物品、易制毒化学品)的销售,建筑装饰工程设计及施工,建筑装修装饰建设工程专业施工,建筑防水建设工程专业施工,防腐保温建设工程专业施工,桥梁道路工程施工。【依法须经批准的项目,经相关部门批准后方可开展经营活动】。","node_type":"text","parent":2211,"children":[],"para_type":"text","pageno":131,"layout_index":10,"box":[79,344,429,145]}
- {"node_id":2218,"text":"二、主要会计政策","node_type":"title","parent":2207,"children":[2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331],"para_type":"title_3","pageno":131,"layout_index":11,"box":[78,498,81,9]}
- {"node_id":2219,"text":"(1)会计制度及会计准则:","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":131,"layout_index":12,"box":[91,522,104,9]}
- {"node_id":2220,"text":"公司执行中华人民共和国财政部颁布的《小企业会计准则》及其相关规定。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":131,"layout_index":13,"box":[103,546,323,11]}
- {"node_id":2221,"text":"(2)会计期间:","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":131,"layout_index":14,"box":[90,568,55,12]}
- {"node_id":2222,"text":"公司采用公历年度,即每年一月一日起至十二月三十一日止为一个会计年度。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":131,"layout_index":15,"box":[101,593,334,10]}
- {"node_id":2223,"text":"(3)记帐本位币:","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":131,"layout_index":16,"box":[90,617,65,10]}
- {"node_id":2224,"text":"公司以人民币为记帐本位币。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":131,"layout_index":17,"box":[101,640,124,10]}
- {"node_id":2225,"text":"(4)小企业的资产应当按照成本计量,不计提资产减值准备。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":131,"layout_index":18,"box":[90,664,256,10]}
- {"node_id":2226,"text":"(5)小企业的流动资产,是指预计在1年内(含1年,下同)或超过1年的一个正常营业周期内变现、出售或耗用的资产。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":131,"layout_index":19,"box":[78,683,429,30]}
- {"node_id":2227,"text":"8","node_type":"head_tail","parent":2218,"children":[],"para_type":"head_tail","pageno":131,"layout_index":20,"box":[288,802,7,10]}
- {"node_id":2228,"text":"(6)存货,是指小企业在日常生产经营过程中持有以备出售的产成品或商品、处在生产过程中的在产品、将在生产过程或提供劳务过程中耗用的材料和物料等,以及小企业(农、林、牧、渔业)为出售而持有的、或在将来收获为农产品的消耗性生物资产。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":132,"layout_index":0,"box":[79,99,429,54]}
- {"node_id":2229,"text":"小企业的存货包括:原材料、在产品、半成品、产成品、商品、周转材料、委托加工物资、消耗性生物资产等。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":132,"layout_index":1,"box":[79,168,429,27]}
- {"node_id":2230,"text":"(一)原材料,是指小企业在生产过程中经加工改变其形态或性质并构成产品主要实体的各种原料及主要材料、辅助材料、外购半成品(外购件)、修理用备件(备品备件)、包装材料、燃料等。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":132,"layout_index":2,"box":[77,200,431,49]}
- {"node_id":2231,"text":"(二)在产品,是指小企业正在制造尚未完工的产品。包括:正在各个生产工序加工的产品,以及已加工完毕但尚未检验或已检验但尚未办理入库手续的产品。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":132,"layout_index":3,"box":[79,258,428,30]}
- {"node_id":2232,"text":"(三)半成品,是指小企业经过一定生产过程并已检验合格交付半成品仓库保管,但尚未制造完工成为产成品,仍需进一步加工的中间产品。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":132,"layout_index":4,"box":[79,297,428,28]}
- {"node_id":2233,"text":"(四)产成品,是指小企业已经完成全部生产过程并已验收入库,","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":132,"layout_index":5,"box":[84,336,279,10]}
- {"node_id":2234,"text":"符合标准规格和技术条件,可以按照合同规定的条件送交订货单位,或者可以作为商品对外销售的产品。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":132,"layout_index":6,"box":[78,356,429,29]}
- {"node_id":2235,"text":"(五)商品,是指小企业(批发业、零售业)外购或委托加工完成并已验收入库用于销售的各种商品。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":132,"layout_index":7,"box":[78,395,430,28]}
- {"node_id":2236,"text":"(六)周转材料,是指小企业能够多次使用、逐渐转移其价值但仍保持原有形态且不确认为固定资产的材料。包括:包装物、低值易耗品、小企业(建筑业)的钢模板、木模板、脚手架等。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":132,"layout_index":8,"box":[79,433,428,30]}
- {"node_id":2237,"text":"(七)委托加工物资,是指小企业委托外单位加工的各种材料、商品等物资。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":132,"layout_index":9,"box":[83,471,330,11]}
- {"node_id":2238,"text":"(八)消耗性生物资产,是指小企业(农、林、牧、渔业)生长中的大田作物、蔬菜、用材林以及存栏待售的牲畜等。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":132,"layout_index":10,"box":[79,491,429,29]}
- {"node_id":2239,"text":"(7)小企业取得的存货,应当按照成本进行计量。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":132,"layout_index":11,"box":[91,532,206,9]}
- {"node_id":2240,"text":"(一)外购存货的成本包括:购买价款、相关税费、运输费、装卸费、保险费以及在外购存货过程发生的其他直接费用,但不含按照税法规定可以抵扣的增值税进项税额。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":132,"layout_index":12,"box":[78,553,429,35]}
- {"node_id":2241,"text":"(二)通过进一步加工取得存货的成本包括:直接材料、直接人工以及按照一定方法分配的制造费用。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":132,"layout_index":13,"box":[78,600,429,34]}
- {"node_id":2242,"text":"经过1年期以上的制造才能达到预定可销售状态的存货发生的借款费用,也计入存货的成本。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":132,"layout_index":14,"box":[78,646,400,12]}
- {"node_id":2243,"text":"前款所称借款费用,是指小企业因借款而发生的利息及其他相关成本。包括:借款利息、辅助费用以及因外币借款而发生的汇兑差额等。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":132,"layout_index":15,"box":[79,670,428,32]}
- {"node_id":2244,"text":"(三)投资者投入存货的成本,应当按照评估价值确定。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":132,"layout_index":16,"box":[83,717,239,9]}
- {"node_id":2245,"text":"(四)提供劳务的成本包括:与劳务提供直接相关的人工费、材料费和应分摊的间接费用。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":132,"layout_index":17,"box":[83,739,390,12]}
- {"node_id":2246,"text":"(五)自行栽培、营造、繁殖或养殖的消耗性生物资产的成本,应当按照下列规定确定","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":132,"layout_index":18,"box":[83,764,378,10]}
- {"node_id":2247,"text":"9","node_type":"head_tail","parent":2218,"children":[],"para_type":"head_tail","pageno":132,"layout_index":19,"box":[289,802,6,9]}
- {"node_id":2248,"text":"1.自行栽培的大田作物和蔬菜的成本包括:在收获前耗用的种子、肥料、农药等材料费、人工费和应分摊的间接费用。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":133,"layout_index":0,"box":[79,99,429,32]}
- {"node_id":2249,"text":"2.自行营造的林木类消耗性生物资产的成本包括:郁闭前发生的造林费、抚育费、营林设施费、良种试验费、调查设计费和应分摊的间接费用。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":133,"layout_index":1,"box":[79,142,424,31]}
- {"node_id":2250,"text":"3.自行繁殖的育肥畜的成本包括:出售前发生的饲料费、人工费和应分摊的间接费用。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":133,"layout_index":2,"box":[79,185,380,11]}
- {"node_id":2251,"text":"4.水产养殖的动物和植物的成本包括:在出售或入库前耗用的苗种、饲料、肥料等材料费、人工费和应分摊的间接费用。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":133,"layout_index":3,"box":[79,206,429,31]}
- {"node_id":2252,"text":"(六)盘盈存货的成本,应当按照同类或类似存货的市场价格或评估价值确定。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":133,"layout_index":4,"box":[84,248,340,12]}
- {"node_id":2253,"text":"(8)固定资产,是指小企业为生产产品、提供劳务、出租或经营管理而持有的,使用寿命超过1年的有形资产。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":133,"layout_index":5,"box":[79,279,430,31]}
- {"node_id":2254,"text":"小企业的固定资产包括:房屋、建筑物、机器、机械、运输工具、设备、器具、工具等。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":133,"layout_index":6,"box":[80,318,384,12]}
- {"node_id":2255,"text":"(9)固定资产应当按照成本进行计量。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":133,"layout_index":7,"box":[91,339,171,10]}
- {"node_id":2256,"text":"(一)外购固定资产的成本包括:购买价款、相关税费、运输费、装卸费、保险费、安装费等,但不含按照税法规定可以抵扣的增值税进项税额。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":133,"layout_index":8,"box":[79,357,423,28]}
- {"node_id":2257,"text":"以一笔款项购入多项没有单独标价的固定资产,应当按照各项固定资产或类似资产的市场价格或评估价值比例对总成本进行分配,分别确定各项固定资产的成本。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":133,"layout_index":9,"box":[79,394,428,29]}
- {"node_id":2258,"text":"(二)自行建造固定资产的成本,由建造该项资产在竣工决算前发生的支出(含相关的借款费用)构成。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":133,"layout_index":10,"box":[79,431,428,29]}
- {"node_id":2259,"text":"小企业在建工程在试运转过程中形成的产品、副产品或试车收入冲减在建工程成本。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":133,"layout_index":11,"box":[79,468,365,11]}
- {"node_id":2260,"text":"(三)投资者投入固定资产的成本,应当按照评估价值和相关税费确定。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":133,"layout_index":12,"box":[84,487,309,11]}
- {"node_id":2261,"text":"(四)融资租入的固定资产的成本,应当按照租赁合同约定的付款总额和在签订租赁合同过程中发生的相关税费等确定。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":133,"layout_index":13,"box":[79,505,428,29]}
- {"node_id":2262,"text":"(五)盘盈固定资产的成本,应当按照同类或者类似固定资产的市场价格或评估价值,扣除按照该项固定资产新旧程度估计的折旧后的余额确定。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":133,"layout_index":14,"box":[79,542,428,28]}
- {"node_id":2263,"text":"(10)小企业应当对所有固定资产计提折旧,但已提足折旧仍继续使用的固定资产和单独计价入账的土地不得计提折旧。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":133,"layout_index":15,"box":[79,575,428,25]}
- {"node_id":2264,"text":"固定资产的折旧费应当根据固定资产的受益对象计入相关资产成本或者当期损益。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":133,"layout_index":16,"box":[79,610,354,11]}
- {"node_id":2265,"text":"前款所称折旧,是指在固定资产使用寿命内,按照确定的方法对应计折旧额进行系统分摊。应计折旧额,是指应当计提折旧的固定资产的原价(成本)扣除其预计净残值后的金额。预计净残值,是指固定资产预计使用寿命已满,小企业从该项固定资产处置中获得的扣除预计处置费用后的净额。已提足折旧,是指已经提足该项固定资产的应计折旧额。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":133,"layout_index":17,"box":[78,629,429,79]}
- {"node_id":2266,"text":"10","node_type":"head_tail","parent":2218,"children":[],"para_type":"head_tail","pageno":133,"layout_index":18,"box":[287,802,10,10]}
- {"node_id":2267,"text":"(11)小企业应当按照年限平均法(即直线法,下同)计提折旧。小企业的固定资产由于技术进步等原因,确需加速折旧的,可以采用双倍余额递减法和年数总和法。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":0,"box":[79,98,431,29]}
- {"node_id":2268,"text":"小企业应当根据固定资产的性质和使用情况,并考虑税法的规定,合理确定固定资产的使用寿命和预计净残值。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":1,"box":[80,133,429,27]}
- {"node_id":2269,"text":"固定资产的折旧方法、使用寿命、预计净残值一经确定,不得随意变更。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":2,"box":[80,170,315,11]}
- {"node_id":2270,"text":"(12)小企业应当按月计提折旧,当月增加的固定资产,当月不计提折旧,从下月起计提折","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":3,"box":[93,192,416,12]}
- {"node_id":2271,"text":"旧:当月减少的固定资产,当月仍计提折旧,从下月起不计提折旧。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":4,"box":[80,206,295,11]}
- {"node_id":2272,"text":"(13)固定资产的日常修理费,应当在发生时根据固定资产的受益对象计入相关资产成本或者当期损益。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":5,"box":[80,222,428,24]}
- {"node_id":2273,"text":"(14)固定资产的改建支出,应当计入固定资产的成本,但已提足折旧的固定资产和经营租入的固定资产发生的改建支出应当计入长期待摊费用。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":6,"box":[80,248,429,24]}
- {"node_id":2274,"text":"前款所称固定资产的改建支出,是指改变房屋或者建筑物结构、延长使用年限等发生的支出。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":7,"box":[80,282,405,11]}
- {"node_id":2275,"text":"(15)处置固定资产,处置收入扣除其账面价值、相关税费和清理费用后的净额,应当计入营业外收入或营业外支出。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":8,"box":[80,299,428,25]}
- {"node_id":2276,"text":"前款所称固定资产的账面价值,是指固定资产原价(成本)扣减累计折旧后的金额。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":9,"box":[80,333,364,11]}
- {"node_id":2277,"text":"盘亏固定资产发生的损失应当计入营业外支出。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":10,"box":[80,356,204,10]}
- {"node_id":2278,"text":"(16)负债,是指小企业过去的交易或者事项形成的,预期会导致经济利益流出小企业的现时义务。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":11,"box":[79,372,428,24]}
- {"node_id":2279,"text":"小企业的负债按照其流动性,可分为流动负债和非流动负债。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":12,"box":[80,400,264,10]}
- {"node_id":2280,"text":"(17)小企业的流动负债,是指预计在1年内或者超过1年的一个正常营业周期内清偿的债务。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":13,"box":[91,413,399,12]}
- {"node_id":2281,"text":"小企业的流动负债包括:短期借款、应付及预收款项、应付职工薪酬、应交税费、应付利息等。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":14,"box":[80,429,414,11]}
- {"node_id":2282,"text":"(18)各项流动负债应当按照其实际发生额入账。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":15,"box":[92,446,210,9]}
- {"node_id":2283,"text":"小企业确实无法偿付的应付款项,应当计入营业外收入。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":16,"box":[80,464,243,10]}
- {"node_id":2284,"text":"(19)短期借款应当按照借款本金和借款合同利率在应付利息日计提利息费用,计入财务费用(20)应付职工薪酬,是指小企业为获得职工提供的服务而应付给职工的各种形式的报酬以及其他相关支出。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":17,"box":[79,479,429,40]}
- {"node_id":2285,"text":"小企业的职工薪酬包括:","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":18,"box":[80,522,102,9]}
- {"node_id":2286,"text":"(一)职工工资、奖金、津贴和补贴。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":19,"box":[84,540,159,9]}
- {"node_id":2287,"text":"(二)职工福利费。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":20,"box":[84,556,80,11]}
- {"node_id":2288,"text":"(三)医疗保险费、养老保险费、失业保险费、工伤保险费和生育保险费等社会保险费。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":21,"box":[84,574,379,12]}
- {"node_id":2289,"text":"(四)住房公积金。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":22,"box":[84,592,79,9]}
- {"node_id":2290,"text":"(五)工会经费和职工教育经费。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":23,"box":[84,608,139,12]}
- {"node_id":2291,"text":"(六)非货币性福利。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":24,"box":[84,626,89,9]}
- {"node_id":2292,"text":"(七)因解除与职工的劳动关系给予的补偿。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":25,"box":[84,644,188,10]}
- {"node_id":2293,"text":"(八)其他与获得职工提供的服务相关的支出等。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":134,"layout_index":26,"box":[84,662,209,10]}
- {"node_id":2294,"text":"11","node_type":"head_tail","parent":2218,"children":[],"para_type":"head_tail","pageno":134,"layout_index":27,"box":[287,802,11,10]}
- {"node_id":2295,"text":"(21)小企业应当在职工为其提供服务的会计期间,将应付的职工薪酬确认为负债,并根据职工提供服务的受益对象,分别下列情况进行会计处理:","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":0,"box":[80,97,429,29]}
- {"node_id":2296,"text":"(一)应由生产产品、提供劳务负担的职工薪酬,计入产品成木或劳务成本。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":1,"box":[85,129,330,11]}
- {"node_id":2297,"text":"(二)应由在建工程、无形资产开发项目负担的职工薪酬,计入固定资产成本或无形资产成本。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":2,"box":[85,146,410,12]}
- {"node_id":2298,"text":"(三)其他职工薪酬(含因解除与职工的劳动关系给予的补偿),计入当期损益。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":3,"box":[85,164,350,12]}
- {"node_id":2299,"text":"(22)所有者权益,是指小企业资产扣除负债后由所有者享有的剩余权益。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":4,"box":[92,180,323,11]}
- {"node_id":2300,"text":"小企业的所有者权益包括:实收资本(或股本,下同)、资本公积、盈余公积和未分配利润。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":5,"box":[81,200,404,12]}
- {"node_id":2301,"text":"(23)实收资本,是指投资者按照合同协议约定或相关规定投入到小企业、构成小企业注册资本的部分。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":6,"box":[79,217,429,23]}
- {"node_id":2302,"text":"(一)小企业收到投资者以现金或非货币性资产投入的资本,应当按照其在本企业注册资本中所占的份额计入实收资本,超出的部分,应当计入资本公积。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":7,"box":[80,243,429,30]}
- {"node_id":2303,"text":"(二)投资者根据有关规定对小企业进行增资或减资,小企业应当增加或减少实收资本。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":8,"box":[84,282,381,12]}
- {"node_id":2304,"text":"(24)资本公积,是指小企业收到的投资者出资额超过其在注册资本或股本中所占份额的部分小企业用资本公积转增资本,应当冲减资本公积。小企业的资本公积不得用于弥补亏损。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":9,"box":[80,299,429,36]}
- {"node_id":2305,"text":"(25)未分配利润,是指小企业实现的净利润,经过弥补亏损、提取法定公积金和任意公积金、向投资者分配利润后,留存在本企业的、历年结存的利润。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":10,"box":[81,341,427,28]}
- {"node_id":2306,"text":"(26)收入,是指小企业在日常生产经营活动中形成的、会导致所有者权益增加、与所有者投入资本无关的经济利益的总流入。包括:销售商品收入和提供劳务收入。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":11,"box":[80,375,428,31]}
- {"node_id":2307,"text":"(27)销售商品收入,是指小企业销售商品(或产成品、材料,下同)取得的收入。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":12,"box":[91,408,363,11]}
- {"node_id":2308,"text":"通常,小企业应当在发出商品且收到货款或取得收款权利时,确认销售商品收入。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":13,"box":[79,425,356,11]}
- {"node_id":2309,"text":"(一)销售商品采用托收承付方式的,在办妥托收手续时确认收入。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":14,"box":[84,442,289,10]}
- {"node_id":2310,"text":"(二)销售商品采取预收款方式的,在发出商品时确认收入。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":15,"box":[84,460,260,11]}
- {"node_id":2311,"text":"(三)销售商品采用分期收款方式的,在合同约定的收款日期确认收入。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":16,"box":[83,478,311,12]}
- {"node_id":2312,"text":"(四)销售商品需要安装和检验的,在购买方接受商品以及安装和检验完毕时确认收入。安装程序比较简单的,可在发出商品时确认收入。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":17,"box":[79,497,429,28]}
- {"node_id":2313,"text":"(五)销售商品采用支付手续费方式委托代销的,在收到代销清单时确认收入。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":18,"box":[83,536,341,9]}
- {"node_id":2314,"text":"(六)销售商品以旧换新的,销售的商品作为商品销售处理,回收的商品作为购进商品处理。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":19,"box":[83,553,401,12]}
- {"node_id":2315,"text":"(七)采取产品分成方式取得的收入,在分得产品之日按照产品的市场价格或评估价值确定销售商品收入金额。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":20,"box":[79,573,428,29]}
- {"node_id":2316,"text":"(28)小企业应当按照从购买方已收或应收的合同或协议价款,确定销售商品收入金额。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":21,"box":[91,607,381,13]}
- {"node_id":2317,"text":"销售商品涉及现金折扣的,应当按照扣除现金折扣前的金额确定销售商品收入金额。现金折扣应当在实际发生时,计入当期损益。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":22,"box":[79,629,428,28]}
- {"node_id":2318,"text":"销售商品涉及商业折扣的,应当按照扣除商业折扣后的金额确定销售商品收入金额。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":23,"box":[78,664,365,12]}
- {"node_id":2319,"text":"前款所称现金折扣,是指债权人为鼓励债务人在规定的期限内付款而向债务人提供的债务扣除。商业折扣,是指小企业为促进商品销售而在商品标价上给予的价格扣除。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":135,"layout_index":24,"box":[79,684,423,25]}
- {"node_id":2320,"text":"12","node_type":"head_tail","parent":2218,"children":[],"para_type":"head_tail","pageno":135,"layout_index":25,"box":[287,801,11,10]}
- {"node_id":2321,"text":"(29)小企业已经确认销售商品收入的售出商品发生的销售退回(不论属于本年度还是属于以前年度的销售),应当在发生时冲减当期销售商品收入。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":136,"layout_index":0,"box":[80,98,429,29]}
- {"node_id":2322,"text":"小企业已经确认销售商品收入的售出商品发生的销售折让,应当在发生时冲减当期销售商品收入","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":136,"layout_index":1,"box":[82,134,426,12]}
- {"node_id":2323,"text":"前款所称销售退回,是指小企业售出的商品由于质量、品种不符合要求等原因发生的退货。销售折让,是指小企业因售出商品的质量不合格等原因而在售价上给予的减让。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":136,"layout_index":2,"box":[80,164,429,30]}
- {"node_id":2324,"text":"(30)小企业提供劳务的收入,是指小企业从事建筑安装、修理修配、交通运输、仓储租赁、邮电通信、咨询经纪、文化体育、科学研究、技术服务、教育培训、餐饮住宿、中介代理、卫生保健、社区服务、旅游、娱乐、加工以及其他劳务服务活动取得的收入。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":136,"layout_index":3,"box":[80,199,428,50]}
- {"node_id":2325,"text":"(31)同一会计年度内开始并完成的劳务,应当在提供劳务交易完成且收到款项或取得收款权利时,确认提供劳务收入。提供劳务收入的金额为从接受劳务方已收或应收的合同或协议价款。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":136,"layout_index":4,"box":[80,256,428,29]}
- {"node_id":2326,"text":"劳务的开始和完成分属不同会计年度的,应当按照完工进度确认提供劳务收入。年度资产负债表","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":136,"layout_index":5,"box":[79,296,430,13]}
- {"node_id":2327,"text":"日,按照提供劳务收入总额乘以完工进度扣除以前会计年度累计已确认提供劳务收入后的金额,确认本年度的提供劳务收入:同时,按照估计的提供劳务成本总额乘以完工进度扣除以前会计年度累计已确认营业成本后的金额,结转本年度营业成本。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":136,"layout_index":6,"box":[80,320,427,58]}
- {"node_id":2328,"text":"(32)小企业与其他企业签订的合同或协议包含销售商品和提供劳务时,销售商品部分和提供劳务部分能够区分且能够单独计量的,应当将销售商品的部分作为销售商品处理,将提供劳务的部分作为提供劳务处理。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":136,"layout_index":7,"box":[79,384,428,47]}
- {"node_id":2329,"text":"销售商品部分和提供劳务部分不能够区分,或虽能区分但不能够单独计量的,应当作为销售商品处理。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":136,"layout_index":8,"box":[78,440,429,30]}
- {"node_id":2330,"text":"(33)费用,是指小企业在日常生产经营活动中发生的、会导致所有者权益减少、与向所有者分配利润无关的经济利益的总流出。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":136,"layout_index":9,"box":[80,473,427,29]}
- {"node_id":2331,"text":"小企业的费用包括:营业成本、营业税金及附加、销售费用、管理费用、财务费用等。","node_type":"text","parent":2218,"children":[],"para_type":"text","pageno":136,"layout_index":10,"box":[79,511,375,13]}
- {"node_id":2332,"text":"三、税项","node_type":"title","parent":2207,"children":[2333,2334,2335,2336,2337,2338,2339],"para_type":"title_3","pageno":136,"layout_index":11,"box":[78,536,41,10]}
- {"node_id":2333,"text":"公司主要适用的税种和税率","node_type":"text","parent":2332,"children":[],"para_type":"text","pageno":136,"layout_index":12,"box":[94,558,118,11]}
- {"node_id":2334,"text":"税种","node_type":"text","parent":2332,"children":[],"para_type":"text","pageno":136,"layout_index":13,"box":[154,582,27,11]}
- {"node_id":2335,"text":"增值税","node_type":"text","parent":2332,"children":[],"para_type":"text","pageno":136,"layout_index":14,"box":[78,602,30,10]}
- {"node_id":2336,"text":"城市维护建设税","node_type":"text","parent":2332,"children":[],"para_type":"text","pageno":136,"layout_index":15,"box":[78,622,70,10]}
- {"node_id":2337,"text":"教育费附加","node_type":"text","parent":2332,"children":[],"para_type":"text","pageno":136,"layout_index":16,"box":[78,641,49,10]}
- {"node_id":2338,"text":"地方教育费附加","node_type":"text","parent":2332,"children":[],"para_type":"text","pageno":136,"layout_index":17,"box":[78,662,69,9]}
- {"node_id":2339,"text":"企业所得税","node_type":"text","parent":2332,"children":[],"para_type":"text","pageno":136,"layout_index":18,"box":[79,681,49,10]}
- {"node_id":2340,"text":"计税依据","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":136,"layout_index":19,"box":[292,583,55,10]}
- {"node_id":2341,"text":"产品销售或劳务收入\/增值额","node_type":"title","parent":0,"children":[2342,2343,2344],"para_type":"title_1","pageno":136,"layout_index":20,"box":[250,603,123,9]}
- {"node_id":2342,"text":"实际缴纳的流转税额","node_type":"text","parent":2341,"children":[],"para_type":"text","pageno":136,"layout_index":21,"box":[267,623,90,9]}
- {"node_id":2343,"text":"实际缴纳的流转税额","node_type":"text","parent":2341,"children":[],"para_type":"text","pageno":136,"layout_index":22,"box":[267,643,90,9]}
- {"node_id":2344,"text":"实际缴纳的流转税额","node_type":"text","parent":2341,"children":[],"para_type":"text","pageno":136,"layout_index":23,"box":[267,663,90,9]}
- {"node_id":2345,"text":"应纳税所得额","node_type":"title","parent":0,"children":[2346,2347,2348,2349,2350,2351,2352,2353,2412,2416,2420],"para_type":"title_1","pageno":136,"layout_index":24,"box":[282,682,59,9]}
- {"node_id":2346,"text":"税率","node_type":"text","parent":2345,"children":[],"para_type":"text","pageno":136,"layout_index":25,"box":[428,584,31,12]}
- {"node_id":2347,"text":"13%、9%","node_type":"text","parent":2345,"children":[],"para_type":"text","pageno":136,"layout_index":26,"box":[424,604,42,9]}
- {"node_id":2348,"text":"7%","node_type":"text","parent":2345,"children":[],"para_type":"text","pageno":136,"layout_index":27,"box":[437,624,15,9]}
- {"node_id":2349,"text":"3%","node_type":"text","parent":2345,"children":[],"para_type":"text","pageno":136,"layout_index":28,"box":[437,644,15,9]}
- {"node_id":2350,"text":"2%","node_type":"text","parent":2345,"children":[],"para_type":"text","pageno":136,"layout_index":29,"box":[436,663,16,10]}
- {"node_id":2351,"text":"25%","node_type":"text","parent":2345,"children":[],"para_type":"text","pageno":136,"layout_index":30,"box":[434,683,20,9]}
- {"node_id":2352,"text":"13","node_type":"head_tail","parent":2345,"children":[],"para_type":"head_tail","pageno":136,"layout_index":31,"box":[286,802,11,9]}
- {"node_id":2353,"text":"四、财务报表项目注释","node_type":"title","parent":2345,"children":[2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411],"para_type":"title_3","pageno":137,"layout_index":0,"box":[91,90,101,10]}
- {"node_id":2354,"text":"1:货币资金","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":1,"box":[90,113,51,9]}
- {"node_id":2355,"text":"项","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":2,"box":[158,136,11,9]}
- {"node_id":2356,"text":"目","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":3,"box":[195,136,9,10]}
- {"node_id":2357,"text":"期末余额","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":4,"box":[396,138,39,10]}
- {"node_id":2358,"text":"货币资金","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":5,"box":[110,161,40,10]}
- {"node_id":2359,"text":"11,246,554.48","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":6,"box":[379,163,57,9]}
- {"node_id":2360,"text":"合计","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":7,"box":[110,185,55,11]}
- {"node_id":2361,"text":"11,246,554.48","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":8,"box":[378,188,58,8]}
- {"node_id":2362,"text":"2:应收票据","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":9,"box":[89,209,51,10]}
- {"node_id":2363,"text":"账","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":10,"box":[157,232,11,10]}
- {"node_id":2364,"text":"龄","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":11,"box":[194,231,12,12]}
- {"node_id":2365,"text":"期末余额","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":12,"box":[357,234,41,10]}
- {"node_id":2366,"text":"比例","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":13,"box":[470,234,20,11]}
- {"node_id":2367,"text":"应收票据","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":14,"box":[110,256,38,10]}
- {"node_id":2368,"text":"2,600,000.00","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":15,"box":[344,260,52,7]}
- {"node_id":2369,"text":"100.00%","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":16,"box":[460,259,35,9]}
- {"node_id":2370,"text":"合计","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":17,"box":[110,281,54,10]}
- {"node_id":2371,"text":"2,600,000.00","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":18,"box":[344,283,54,9]}
- {"node_id":2372,"text":"100.00%","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":19,"box":[459,283,36,10]}
- {"node_id":2373,"text":"3:应收账款","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":20,"box":[88,305,51,10]}
- {"node_id":2374,"text":"账","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":21,"box":[156,327,12,11]}
- {"node_id":2375,"text":"龄","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":22,"box":[193,327,12,11]}
- {"node_id":2376,"text":"期末余额","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":23,"box":[357,330,40,10]}
- {"node_id":2377,"text":"比例","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":24,"box":[470,330,21,10]}
- {"node_id":2378,"text":"1年以内","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":25,"box":[109,352,34,10]}
- {"node_id":2379,"text":"8,854,665.87","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":26,"box":[344,354,52,9]}
- {"node_id":2380,"text":"100.00%","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":27,"box":[460,355,34,8]}
- {"node_id":2381,"text":"合计","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":28,"box":[109,376,55,11]}
- {"node_id":2382,"text":"8,854,665.87","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":29,"box":[344,379,52,7]}
- {"node_id":2383,"text":"100.00%","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":30,"box":[459,379,35,8]}
- {"node_id":2384,"text":"4:其他应收款","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":31,"box":[88,400,61,10]}
- {"node_id":2385,"text":"账","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":32,"box":[155,422,12,11]}
- {"node_id":2386,"text":"龄","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":33,"box":[192,422,12,12]}
- {"node_id":2387,"text":"期末余额","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":34,"box":[356,424,40,11]}
- {"node_id":2388,"text":"比例","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":35,"box":[469,424,21,11]}
- {"node_id":2389,"text":"1年以内","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":36,"box":[109,447,33,10]}
- {"node_id":2390,"text":"125,476.84","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":37,"box":[348,449,45,9]}
- {"node_id":2391,"text":"100.00%","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":38,"box":[459,450,35,7]}
- {"node_id":2392,"text":"合计","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":39,"box":[108,470,56,11]}
- {"node_id":2393,"text":"125,476.84","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":40,"box":[347,472,45,9]}
- {"node_id":2394,"text":"100.00%","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":41,"box":[459,474,35,7]}
- {"node_id":2395,"text":"5:存货","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":42,"box":[87,493,32,11]}
- {"node_id":2396,"text":"项","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":43,"box":[155,516,12,11]}
- {"node_id":2397,"text":"目","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":44,"box":[194,518,8,10]}
- {"node_id":2398,"text":"期末余额","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":45,"box":[356,518,41,11]}
- {"node_id":2399,"text":"比例","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":46,"box":[469,520,20,10]}
- {"node_id":2400,"text":"存货","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":47,"box":[108,541,40,12]}
- {"node_id":2401,"text":"2,660,825.00","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":48,"box":[342,544,54,9]}
- {"node_id":2402,"text":"100.00%","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":49,"box":[459,545,34,7]}
- {"node_id":2403,"text":"合计","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":50,"box":[108,566,54,10]}
- {"node_id":2404,"text":"2,660,825.00","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":51,"box":[342,567,54,9]}
- {"node_id":2405,"text":"100.00%","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":52,"box":[458,569,35,7]}
- {"node_id":2406,"text":"6:固定资产原价","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":53,"box":[88,589,70,10]}
- {"node_id":2407,"text":"项目","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":54,"box":[117,612,42,9]}
- {"node_id":2408,"text":"期初余额","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":55,"box":[247,613,39,10]}
- {"node_id":2409,"text":"本年增加","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":56,"box":[318,613,38,10]}
- {"node_id":2410,"text":"本年减少","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":57,"box":[388,614,38,10]}
- {"node_id":2411,"text":"期末余额","node_type":"text","parent":2353,"children":[],"para_type":"text","pageno":137,"layout_index":58,"box":[459,614,41,10]}
- {"node_id":2412,"text":"一、固定资产原值合计","node_type":"title","parent":2345,"children":[2413,2414,2415],"para_type":"title_3","pageno":137,"layout_index":59,"box":[88,637,98,9]}
- {"node_id":2413,"text":"1,656,987.05","node_type":"text","parent":2412,"children":[],"para_type":"text","pageno":137,"layout_index":60,"box":[237,638,51,9]}
- {"node_id":2414,"text":"508,499.20","node_type":"text","parent":2412,"children":[],"para_type":"text","pageno":137,"layout_index":61,"box":[310,638,44,9]}
- {"node_id":2415,"text":"2,165,486.25","node_type":"text","parent":2412,"children":[],"para_type":"text","pageno":137,"layout_index":62,"box":[447,639,53,8]}
- {"node_id":2416,"text":"二、累计折旧合计","node_type":"title","parent":2345,"children":[2417,2418,2419],"para_type":"title_3","pageno":137,"layout_index":63,"box":[88,660,78,9]}
- {"node_id":2417,"text":"236,364.03","node_type":"text","parent":2416,"children":[],"para_type":"text","pageno":137,"layout_index":64,"box":[239,662,45,9]}
- {"node_id":2418,"text":"82,705.97","node_type":"text","parent":2416,"children":[],"para_type":"text","pageno":137,"layout_index":65,"box":[312,662,40,9]}
- {"node_id":2419,"text":"319,070.00","node_type":"text","parent":2416,"children":[],"para_type":"text","pageno":137,"layout_index":66,"box":[451,664,44,7]}
- {"node_id":2420,"text":"三、固定资产账面净值","node_type":"title","parent":2345,"children":[2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2556,2560],"para_type":"title_3","pageno":137,"layout_index":67,"box":[88,684,98,10]}
- {"node_id":2421,"text":"1,420,623.02","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":137,"layout_index":68,"box":[235,685,53,8]}
- {"node_id":2422,"text":"1,846,416.25","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":137,"layout_index":69,"box":[447,686,53,8]}
- {"node_id":2423,"text":"14","node_type":"head_tail","parent":2420,"children":[],"para_type":"head_tail","pageno":137,"layout_index":70,"box":[287,801,10,10]}
- {"node_id":2424,"text":"7:无形资产","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":0,"box":[88,92,51,10]}
- {"node_id":2425,"text":"类别","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":1,"box":[126,116,28,10]}
- {"node_id":2426,"text":"期初余额","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":2,"box":[243,116,41,10]}
- {"node_id":2427,"text":"本年增加","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":3,"box":[315,117,39,9]}
- {"node_id":2428,"text":"本年减少","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":4,"box":[385,117,38,9]}
- {"node_id":2429,"text":"期末余额","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":5,"box":[458,117,39,10]}
- {"node_id":2430,"text":"无形资产账面净值","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":6,"box":[88,141,80,9]}
- {"node_id":2431,"text":"260,000.00","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":7,"box":[241,141,46,9]}
- {"node_id":2432,"text":"260,000.00","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":8,"box":[455,144,44,7]}
- {"node_id":2433,"text":"8:应付账款","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":9,"box":[88,164,51,10]}
- {"node_id":2434,"text":"账","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":10,"box":[155,187,11,11]}
- {"node_id":2435,"text":"龄","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":11,"box":[192,187,11,12]}
- {"node_id":2436,"text":"期末余额","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":12,"box":[357,189,39,10]}
- {"node_id":2437,"text":"比例","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":13,"box":[470,189,20,11]}
- {"node_id":2438,"text":"1年以内","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":14,"box":[109,212,33,10]}
- {"node_id":2439,"text":"5,672,514.43","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":15,"box":[344,214,52,9]}
- {"node_id":2440,"text":"100.00%","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":16,"box":[460,214,35,8]}
- {"node_id":2441,"text":"合计","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":17,"box":[108,236,56,11]}
- {"node_id":2442,"text":"5,672,514.43","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":18,"box":[344,238,53,8]}
- {"node_id":2443,"text":"100.00%","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":19,"box":[460,238,35,9]}
- {"node_id":2444,"text":"9:其他应付款","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":20,"box":[88,260,60,10]}
- {"node_id":2445,"text":"账","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":21,"box":[155,283,12,11]}
- {"node_id":2446,"text":"龄","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":22,"box":[192,283,12,11]}
- {"node_id":2447,"text":"期末余额","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":23,"box":[357,285,39,10]}
- {"node_id":2448,"text":"比例","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":24,"box":[470,284,21,11]}
- {"node_id":2449,"text":"1年以内","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":25,"box":[108,308,34,10]}
- {"node_id":2450,"text":"315,977.64","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":26,"box":[347,310,45,9]}
- {"node_id":2451,"text":"100.00%","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":27,"box":[460,310,34,8]}
- {"node_id":2452,"text":"合计","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":28,"box":[109,332,54,10]}
- {"node_id":2453,"text":"315,977.64","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":29,"box":[347,333,46,9]}
- {"node_id":2454,"text":"100.00%","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":30,"box":[459,334,36,8]}
- {"node_id":2455,"text":"10:实收资本(或股本)","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":31,"box":[88,357,100,9]}
- {"node_id":2456,"text":"应缴注册资本","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":32,"box":[289,382,61,10]}
- {"node_id":2457,"text":"实缴注册资本","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":33,"box":[432,384,59,9]}
- {"node_id":2458,"text":"投资者名称","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":34,"box":[118,394,50,10]}
- {"node_id":2459,"text":"金额(人民币)","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":35,"box":[230,407,66,9]}
- {"node_id":2460,"text":"比例(%)","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":36,"box":[322,408,33,9]}
- {"node_id":2461,"text":"金额(人民币)比例(%)","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":37,"box":[372,408,125,10]}
- {"node_id":2462,"text":"余浩","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":38,"box":[87,431,20,11]}
- {"node_id":2463,"text":"33,166,500.00","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":39,"box":[237,433,57,8]}
- {"node_id":2464,"text":"83.33%","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":40,"box":[319,433,32,8]}
- {"node_id":2465,"text":"8,000,000.0080.00%","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":41,"box":[382,434,110,8]}
- {"node_id":2466,"text":"朱涛","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":42,"box":[87,456,20,10]}
- {"node_id":2467,"text":"6,633,500.00","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":43,"box":[241,458,53,9]}
- {"node_id":2468,"text":"16.67%","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":44,"box":[320,458,30,9]}
- {"node_id":2469,"text":"2,000,000.0020.00%","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":45,"box":[382,459,109,8]}
- {"node_id":2470,"text":"合计","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":46,"box":[108,481,44,10]}
- {"node_id":2471,"text":"39,800,000.00","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":47,"box":[238,482,59,9]}
- {"node_id":2472,"text":"100.00%","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":48,"box":[317,483,35,7]}
- {"node_id":2473,"text":"10,000.000.00100.00%","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":49,"box":[380,483,114,9]}
- {"node_id":2474,"text":"11:未分配利润","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":50,"box":[88,505,64,9]}
- {"node_id":2475,"text":"项目","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":51,"box":[142,528,37,10]}
- {"node_id":2476,"text":"金额","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":52,"box":[439,530,32,10]}
- {"node_id":2477,"text":"上年期末余额","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":53,"box":[108,552,59,9]}
- {"node_id":2478,"text":"5,616,394.69","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":54,"box":[414,554,52,9]}
- {"node_id":2479,"text":"本期年初余额","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":55,"box":[108,576,58,9]}
- {"node_id":2480,"text":"5,616,394.69","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":56,"box":[414,578,52,9]}
- {"node_id":2481,"text":"加:本期净利润转入","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":57,"box":[128,600,89,8]}
- {"node_id":2482,"text":"5,648.693.10","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":58,"box":[414,601,52,9]}
- {"node_id":2483,"text":"减:本期提取法定盈余公积","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":59,"box":[128,624,119,9]}
- {"node_id":2484,"text":"本期提取任意盈余公积","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":60,"box":[148,647,98,9]}
- {"node_id":2485,"text":"本期分配普通股股利","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":61,"box":[148,672,89,9]}
- {"node_id":2486,"text":"本期期末余额","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":62,"box":[107,694,59,9]}
- {"node_id":2487,"text":"11,265,087.79","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":138,"layout_index":63,"box":[411,696,57,9]}
- {"node_id":2488,"text":"15","node_type":"head_tail","parent":2420,"children":[],"para_type":"head_tail","pageno":138,"layout_index":64,"box":[287,801,12,10]}
- {"node_id":2489,"text":"12:营业收入","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":0,"box":[89,92,55,10]}
- {"node_id":2490,"text":"项目","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":1,"box":[156,115,47,11]}
- {"node_id":2491,"text":"本年发生额","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":2,"box":[390,117,49,10]}
- {"node_id":2492,"text":"营业收入","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":3,"box":[109,141,39,10]}
- {"node_id":2493,"text":"46,812,274.58","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":4,"box":[377,143,57,8]}
- {"node_id":2494,"text":"合计","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":5,"box":[109,166,44,10]}
- {"node_id":2495,"text":"46,812,274.58","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":6,"box":[378,168,57,9]}
- {"node_id":2496,"text":"13:营业成本","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":7,"box":[89,190,55,10]}
- {"node_id":2497,"text":"项","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":8,"box":[155,212,12,11]}
- {"node_id":2498,"text":"目","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":9,"box":[189,213,14,11]}
- {"node_id":2499,"text":"本年发生额","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":10,"box":[390,215,49,10]}
- {"node_id":2500,"text":"营业成本","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":11,"box":[109,238,39,10]}
- {"node_id":2501,"text":"33,892,086.80","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":12,"box":[376,240,58,8]}
- {"node_id":2502,"text":"合计","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":13,"box":[109,264,43,10]}
- {"node_id":2503,"text":"33,892,086.80","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":14,"box":[376,266,59,8]}
- {"node_id":2504,"text":"14:营业税金及附加","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":15,"box":[88,290,86,9]}
- {"node_id":2505,"text":"项","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":16,"box":[155,313,12,9]}
- {"node_id":2506,"text":"目","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":17,"box":[194,313,8,10]}
- {"node_id":2507,"text":"本年发生额","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":18,"box":[389,314,50,11]}
- {"node_id":2508,"text":"税金及附加","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":19,"box":[108,339,49,9]}
- {"node_id":2509,"text":"41,557.49","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":20,"box":[384,341,40,9]}
- {"node_id":2510,"text":"合计","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":21,"box":[108,364,54,10]}
- {"node_id":2511,"text":"41,557.49","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":22,"box":[384,366,42,9]}
- {"node_id":2512,"text":"15:销售费用","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":23,"box":[88,388,54,10]}
- {"node_id":2513,"text":"项","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":24,"box":[154,411,12,10]}
- {"node_id":2514,"text":"目","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":25,"box":[193,410,10,11]}
- {"node_id":2515,"text":"本年发生额","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":26,"box":[388,412,50,11]}
- {"node_id":2516,"text":"销售费用","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":27,"box":[107,434,40,12]}
- {"node_id":2517,"text":"615,428.54","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":28,"box":[382,437,45,9]}
- {"node_id":2518,"text":"合计","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":29,"box":[108,458,55,12]}
- {"node_id":2519,"text":"615,428.54","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":30,"box":[381,462,48,8]}
- {"node_id":2520,"text":"16:管理费用","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":31,"box":[88,483,54,9]}
- {"node_id":2521,"text":"项","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":32,"box":[154,506,10,9]}
- {"node_id":2522,"text":"目","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":33,"box":[193,506,8,10]}
- {"node_id":2523,"text":"本年发生额","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":34,"box":[388,508,49,9]}
- {"node_id":2524,"text":"管理费用","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":35,"box":[108,530,38,10]}
- {"node_id":2525,"text":"4,645,887.74","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":36,"box":[377,532,53,8]}
- {"node_id":2526,"text":"合计","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":37,"box":[108,554,54,10]}
- {"node_id":2527,"text":"4.645,887.74","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":38,"box":[377,556,55,9]}
- {"node_id":2528,"text":"17:现金流量情况","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":39,"box":[88,578,79,8]}
- {"node_id":2529,"text":"补充资料","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":40,"box":[203,602,37,8]}
- {"node_id":2530,"text":"本年度","node_type":"text","parent":2420,"children":[],"para_type":"text","pageno":139,"layout_index":41,"box":[430,603,30,10]}
- {"node_id":2531,"text":"1、将净利润调节为经营活动的现金流量","node_type":"title","parent":2420,"children":[2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555],"para_type":"title_5","pageno":139,"layout_index":42,"box":[88,625,167,9]}
- {"node_id":2532,"text":"净利润","node_type":"text","parent":2531,"children":[],"para_type":"text","pageno":139,"layout_index":43,"box":[97,648,27,9]}
- {"node_id":2533,"text":"5,648.693.10","node_type":"text","parent":2531,"children":[],"para_type":"text","pageno":139,"layout_index":44,"box":[414,651,53,7]}
- {"node_id":2534,"text":"加:计提的资产减值准备","node_type":"text","parent":2531,"children":[],"para_type":"text","pageno":139,"layout_index":45,"box":[97,672,102,10]}
- {"node_id":2535,"text":"固定资产折旧","node_type":"text","parent":2531,"children":[],"para_type":"text","pageno":139,"layout_index":46,"box":[97,696,55,9]}
- {"node_id":2536,"text":"82,705.97","node_type":"text","parent":2531,"children":[],"para_type":"text","pageno":139,"layout_index":47,"box":[419,698,40,8]}
- {"node_id":2537,"text":"16","node_type":"head_tail","parent":2531,"children":[],"para_type":"head_tail","pageno":139,"layout_index":48,"box":[287,801,11,9]}
- {"node_id":2538,"text":"无形资产摊销","node_type":"text","parent":2531,"children":[],"para_type":"text","pageno":140,"layout_index":0,"box":[99,92,56,9]}
- {"node_id":2539,"text":"长期待摊费用摊销","node_type":"text","parent":2531,"children":[],"para_type":"text","pageno":140,"layout_index":1,"box":[99,116,75,9]}
- {"node_id":2540,"text":"处置固定资产、无形资产和其他长期资产的损失(减:收益)","node_type":"text","parent":2531,"children":[],"para_type":"text","pageno":140,"layout_index":2,"box":[99,141,251,9]}
- {"node_id":2541,"text":"固定资产报废损失","node_type":"text","parent":2531,"children":[],"para_type":"text","pageno":140,"layout_index":3,"box":[99,164,75,9]}
- {"node_id":2542,"text":"公允价值变动损失(减:收益)","node_type":"text","parent":2531,"children":[],"para_type":"text","pageno":140,"layout_index":4,"box":[99,188,127,9]}
- {"node_id":2543,"text":"财务费用","node_type":"text","parent":2531,"children":[],"para_type":"text","pageno":140,"layout_index":5,"box":[98,212,37,10]}
- {"node_id":2544,"text":"投资损失(减:收益)","node_type":"text","parent":2531,"children":[],"para_type":"text","pageno":140,"layout_index":6,"box":[98,237,90,8]}
- {"node_id":2545,"text":"递延所得税资产减少(减:增加)","node_type":"text","parent":2531,"children":[],"para_type":"text","pageno":140,"layout_index":7,"box":[98,261,138,9]}
- {"node_id":2546,"text":"递延所得税负债增加(减:减少)","node_type":"text","parent":2531,"children":[],"para_type":"text","pageno":140,"layout_index":8,"box":[98,284,138,10]}
- {"node_id":2547,"text":"存货的减少(减:增加)","node_type":"text","parent":2531,"children":[],"para_type":"text","pageno":140,"layout_index":9,"box":[98,308,100,9]}
- {"node_id":2548,"text":"-1,686,551.91","node_type":"text","parent":2531,"children":[],"para_type":"text","pageno":140,"layout_index":10,"box":[415,310,55,9]}
- {"node_id":2549,"text":"经营性应收项目的减少(减:增加)","node_type":"text","parent":2531,"children":[],"para_type":"text","pageno":140,"layout_index":11,"box":[98,332,147,10]}
- {"node_id":2550,"text":"-4,280,753.29","node_type":"text","parent":2531,"children":[],"para_type":"text","pageno":140,"layout_index":12,"box":[414,334,56,9]}
- {"node_id":2551,"text":"经营性应付项目的增加(减:减少)","node_type":"text","parent":2531,"children":[],"para_type":"text","pageno":140,"layout_index":13,"box":[98,356,147,9]}
- {"node_id":2552,"text":"2,765,568.36","node_type":"text","parent":2531,"children":[],"para_type":"text","pageno":140,"layout_index":14,"box":[415,357,53,9]}
- {"node_id":2553,"text":"其他","node_type":"text","parent":2531,"children":[],"para_type":"text","pageno":140,"layout_index":15,"box":[98,379,19,10]}
- {"node_id":2554,"text":"经营活动产生的现金流量净额","node_type":"text","parent":2531,"children":[],"para_type":"text","pageno":140,"layout_index":16,"box":[98,404,123,9]}
- {"node_id":2555,"text":"2,529,662.23","node_type":"text","parent":2531,"children":[],"para_type":"text","pageno":140,"layout_index":17,"box":[415,405,53,8]}
- {"node_id":2556,"text":"2、不涉及现金收支的重大投资和筹资活动","node_type":"title","parent":2420,"children":[2557,2558,2559],"para_type":"title_5","pageno":140,"layout_index":18,"box":[88,426,178,10]}
- {"node_id":2557,"text":"债务转为资本","node_type":"text","parent":2556,"children":[],"para_type":"text","pageno":140,"layout_index":19,"box":[98,450,57,9]}
- {"node_id":2558,"text":"一年内到期的可转换公司债券","node_type":"text","parent":2556,"children":[],"para_type":"text","pageno":140,"layout_index":20,"box":[98,475,122,8]}
- {"node_id":2559,"text":"融资租入固定资产","node_type":"text","parent":2556,"children":[],"para_type":"text","pageno":140,"layout_index":21,"box":[97,498,76,9]}
- {"node_id":2560,"text":"3、现金及现金等价物增加情况","node_type":"title","parent":2420,"children":[2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574],"para_type":"title_5","pageno":140,"layout_index":22,"box":[88,521,129,9]}
- {"node_id":2561,"text":"现金的期末余额","node_type":"text","parent":2560,"children":[],"para_type":"text","pageno":140,"layout_index":23,"box":[97,545,67,9]}
- {"node_id":2562,"text":"11,246,554.48","node_type":"text","parent":2560,"children":[],"para_type":"text","pageno":140,"layout_index":24,"box":[413,546,57,9]}
- {"node_id":2563,"text":"减:现金的期初余额","node_type":"text","parent":2560,"children":[],"para_type":"text","pageno":140,"layout_index":25,"box":[97,569,86,10]}
- {"node_id":2564,"text":"9,152,452.25","node_type":"text","parent":2560,"children":[],"para_type":"text","pageno":140,"layout_index":26,"box":[415,571,52,8]}
- {"node_id":2565,"text":"加:现金等价物的期末余额","node_type":"text","parent":2560,"children":[],"para_type":"text","pageno":140,"layout_index":27,"box":[97,593,114,8]}
- {"node_id":2566,"text":"减:现金等价物的期初余额","node_type":"text","parent":2560,"children":[],"para_type":"text","pageno":140,"layout_index":28,"box":[97,616,114,10]}
- {"node_id":2567,"text":"现金及现金等价物的净增加额","node_type":"text","parent":2560,"children":[],"para_type":"text","pageno":140,"layout_index":29,"box":[97,640,125,9]}
- {"node_id":2568,"text":"2,094,102.23","node_type":"text","parent":2560,"children":[],"para_type":"text","pageno":140,"layout_index":30,"box":[414,642,55,8]}
- {"node_id":2569,"text":"18:或有事项","node_type":"text","parent":2560,"children":[],"para_type":"text","pageno":140,"layout_index":31,"box":[88,664,60,9]}
- {"node_id":2570,"text":"本公司本年度无需要关注的或有事项。","node_type":"text","parent":2560,"children":[],"para_type":"text","pageno":140,"layout_index":32,"box":[108,688,165,9]}
- {"node_id":2571,"text":"19:资产负债表日后事项","node_type":"text","parent":2560,"children":[],"para_type":"text","pageno":140,"layout_index":33,"box":[88,712,111,9]}
- {"node_id":2572,"text":"本公司本年度未发生资产负债表日后事项。","node_type":"text","parent":2560,"children":[],"para_type":"text","pageno":140,"layout_index":34,"box":[108,736,184,9]}
- {"node_id":2573,"text":"17","node_type":"head_tail","parent":2560,"children":[],"para_type":"head_tail","pageno":140,"layout_index":35,"box":[288,801,11,10]}
- {"node_id":2574,"text":"统一社会信用代码9131011078429443XL","node_type":"text","parent":2560,"children":[],"para_type":"text","pageno":141,"layout_index":0,"box":[118,184,109,27]}
- {"node_id":2575,"text":"营业执照","node_type":"title","parent":0,"children":[2576,2577,2578],"para_type":"title_1","pageno":141,"layout_index":1,"box":[304,171,195,43]}
- {"node_id":2576,"text":"扫描二维码登录国家企业信用信息公示系统站解更多登记管信息,","node_type":"text","parent":2575,"children":[],"para_type":"text","pageno":141,"layout_index":2,"box":[632,180,51,39]}
- {"node_id":2577,"text":"证照编号:42000000202007240226","node_type":"text","parent":2575,"children":[],"para_type":"text","pageno":141,"layout_index":3,"box":[120,223,139,9]}
- {"node_id":2578,"text":"(副本)","node_type":"text","parent":2575,"children":[],"para_type":"text","pageno":141,"layout_index":4,"box":[378,221,53,18]}
- {"node_id":2579,"text":"中国(上海)自由贸易试验区临港新片区","node_type":"title","parent":0,"children":[2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660],"para_type":"title_1","pageno":141,"layout_index":5,"box":[287,246,231,15]}
- {"node_id":2580,"text":"名称上海利永会计师事务所(普通合伙)","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":141,"layout_index":6,"box":[120,266,208,14]}
- {"node_id":2581,"text":"类型普通合伙企业","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":141,"layout_index":7,"box":[120,293,124,14]}
- {"node_id":2582,"text":"执行事务合伙人韩建保","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":141,"layout_index":8,"box":[120,320,97,14]}
- {"node_id":2583,"text":"成立日期2006年01月06日","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":141,"layout_index":9,"box":[450,266,134,12]}
- {"node_id":2584,"text":"合伙期限2006年01月06日至2026年01月05日","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":141,"layout_index":10,"box":[450,292,219,13]}
- {"node_id":2585,"text":"主要经营场所中国(上海)自由贸易试验区临港新片区云汉路979号2楼","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":141,"layout_index":11,"box":[450,319,238,18]}
- {"node_id":2586,"text":"经营范围审查企业会计报表,出具审计报表;验证企业资本,出具验资报告,办理企业合并、分立、清算事宜中的审计业务,出具有关的报告;从事法律、行政法规规定的其他审计业务,承办会计咨询,会计服务业务。依法须经批准的项目,经相关部门批准后方可开展经营活动】","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":141,"layout_index":12,"box":[121,346,311,56]}
- {"node_id":2587,"text":"登记机关","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":141,"layout_index":13,"box":[501,432,75,14]}
- {"node_id":2588,"text":"2020年07月24日","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":141,"layout_index":14,"box":[568,473,127,13]}
- {"node_id":2589,"text":"国家企业信用信息公示系统网址:http:\/\/www.gsxt.gov.cn","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":141,"layout_index":15,"box":[81,523,186,7]}
- {"node_id":2590,"text":"市场主体应当于每年1月1日至6月30日通过国家企业信用信息公示系统报送公示年度报告。","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":141,"layout_index":16,"box":[397,520,152,16]}
- {"node_id":2591,"text":"国家市场监督管理总局监制","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":141,"layout_index":17,"box":[632,522,104,10]}
- {"node_id":2592,"text":"证书序号:0006288","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":142,"layout_index":0,"box":[575,83,119,17]}
- {"node_id":2593,"text":"说明","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":142,"layout_index":1,"box":[549,128,49,16]}
- {"node_id":2594,"text":"会计师事务所","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":142,"layout_index":2,"box":[138,188,137,19]}
- {"node_id":2595,"text":"执业证书","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":142,"layout_index":3,"box":[136,214,140,31]}
- {"node_id":2596,"text":"名称:上海利永会计师事务所(普通合伙)","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":142,"layout_index":4,"box":[77,266,243,16]}
- {"node_id":2597,"text":"首席合伙人:韩建保","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":142,"layout_index":5,"box":[79,304,113,14]}
- {"node_id":2598,"text":"主任会计师:","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":142,"layout_index":6,"box":[78,327,77,12]}
- {"node_id":2599,"text":"经营场所:中国(上海)自由贸易试验区临港新片区云汉路979号2楼","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":142,"layout_index":7,"box":[78,348,268,28]}
- {"node_id":2600,"text":"组织形式:普通合伙制","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":142,"layout_index":8,"box":[77,415,135,13]}
- {"node_id":2601,"text":"执业证书编号:31000158","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":142,"layout_index":9,"box":[77,439,134,14]}
- {"node_id":2602,"text":"批准执业文号:沪财会[2005]128号","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":142,"layout_index":10,"box":[77,464,188,14]}
- {"node_id":2603,"text":"批准执业日期:2005年12月29日","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":142,"layout_index":11,"box":[77,488,163,13]}
- {"node_id":2604,"text":"1、《会计师事务所执业证书》是证明持有人经财政部门依法审批,准予执行注册会计师法定业务的凭证。","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":142,"layout_index":12,"box":[452,176,244,51]}
- {"node_id":2605,"text":"2、《会计师事务所执业证书》记载事项发生变动的应当向财政部门申请换发,","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":142,"layout_index":13,"box":[450,234,238,34]}
- {"node_id":2606,"text":"3、《会计师事务所执业证书》不得伪造、涂改、出租、出借、转让。","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":142,"layout_index":14,"box":[450,274,238,31]}
- {"node_id":2607,"text":"4、会计师事务所终止或执业许可注销的,应当向财政部门交回《会计师事务所执业证书》。","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":142,"layout_index":15,"box":[449,312,245,36]}
- {"node_id":2608,"text":"发证机关:上海市政局","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":142,"layout_index":16,"box":[517,406,152,17]}
- {"node_id":2609,"text":"二0二0年十二月二十","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":142,"layout_index":17,"box":[543,450,148,18]}
- {"node_id":2610,"text":"中华人民共和国财政部制","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":142,"layout_index":18,"box":[552,492,138,14]}
- {"node_id":2611,"text":"此1核阿能,实如翻裂年准长","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":0,"box":[472,42,11,10]}
- {"node_id":2612,"text":"30>000>030608","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":1,"box":[485,40,10,9]}
- {"node_id":2613,"text":"口","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":2,"box":[637,42,17,8]}
- {"node_id":2614,"text":"0L088Z10Z961E0201oN PIRo AyuopI ","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":3,"box":[64,68,181,10]}
- {"node_id":2615,"text":"四旦","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":4,"box":[635,73,19,10]}
- {"node_id":2616,"text":"(链各玛份长","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":5,"box":[126,82,119,16]}
- {"node_id":2617,"text":"最)干run8uIyJoM 马夷北士","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":6,"box":[31,95,214,19]}
- {"node_id":2618,"text":"股謝留奐健叶","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":7,"box":[421,113,15,15]}
- {"node_id":2619,"text":"03350500-8","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":8,"box":[437,106,12,10]}
- {"node_id":2620,"text":"女二","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":9,"box":[634,107,19,10]}
- {"node_id":2621,"text":"8Z-10-296141J19J0a18a ","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":10,"box":[108,119,130,9]}
- {"node_id":2622,"text":"日下尔","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":11,"box":[188,128,56,9]}
- {"node_id":2623,"text":"5000200070-张","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":12,"box":[610,131,11,10]}
- {"node_id":2624,"text":"留XaS 1.8补","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":13,"box":[152,140,92,21]}
- {"node_id":2625,"text":"2世20211","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":14,"box":[622,138,11,10]}
- {"node_id":2626,"text":"业良验云业宙世旧一","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":15,"box":[634,135,11,11]}
- {"node_id":2627,"text":"册-707","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":16,"box":[645,146,12,12]}
- {"node_id":2628,"text":"oueulind 科","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":17,"box":[198,164,46,20]}
- {"node_id":2629,"text":"1019-","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":18,"box":[493,164,8,8]}
- {"node_id":2630,"text":"此1核把器如湖实年长","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":19,"box":[464,278,11,10]}
- {"node_id":2631,"text":"330>090000913-51980100994","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":20,"box":[477,279,11,10]}
- {"node_id":2632,"text":"册国中","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":21,"box":[187,305,41,25]}
- {"node_id":2633,"text":"四旦","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":22,"box":[628,316,18,8]}
- {"node_id":2634,"text":"8309","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":23,"box":[430,349,10,9]}
- {"node_id":2635,"text":"州二","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":24,"box":[627,349,19,10]}
- {"node_id":2636,"text":"尽谢部梨世世","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":25,"box":[414,358,13,12]}
- {"node_id":2637,"text":"90002000701+)张台","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":26,"box":[598,373,10,9]}
- {"node_id":2638,"text":"斜世202瘦1敏","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":27,"box":[608,376,10,9]}
- {"node_id":2639,"text":"小长发示小电处但骑一","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":28,"box":[618,372,11,10]}
- {"node_id":2640,"text":"中-880208","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":29,"box":[627,386,10,9]}
- {"node_id":2641,"text":"10513","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":143,"layout_index":30,"box":[486,406,9,7]}
- {"node_id":2642,"text":"修警修志长解然深若","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":144,"layout_index":0,"box":[449,60,13,12]}
- {"node_id":2643,"text":"830-8070976170377-创断学以","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":144,"layout_index":1,"box":[468,106,10,9]}
- {"node_id":2644,"text":"86÷79","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":144,"layout_index":2,"box":[429,141,11,9]}
- {"node_id":2645,"text":"彭世靈","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":144,"layout_index":3,"box":[393,158,10,9]}
- {"node_id":2646,"text":"中","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":144,"layout_index":4,"box":[400,189,9,8]}
- {"node_id":2647,"text":"520","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":144,"layout_index":5,"box":[457,190,8,7]}
- {"node_id":2648,"text":"冒中洪尔邮","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":144,"layout_index":6,"box":[488,189,11,8]}
- {"node_id":2649,"text":"28","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":144,"layout_index":7,"box":[500,186,10,9]}
- {"node_id":2650,"text":"9日8品","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":144,"layout_index":8,"box":[413,196,9,7]}
- {"node_id":2651,"text":"-58503","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":144,"layout_index":9,"box":[478,194,9,7]}
- {"node_id":2652,"text":"型","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":144,"layout_index":10,"box":[423,233,8,10]}
- {"node_id":2653,"text":"注册会计师工作单位变更事项登记","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":144,"layout_index":11,"box":[124,459,195,11]}
- {"node_id":2654,"text":"Registration of the Change of working Unit by a CPa ","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":144,"layout_index":12,"box":[130,474,186,7]}
- {"node_id":2655,"text":"5010","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":144,"layout_index":13,"box":[231,481,27,10]}
- {"node_id":2656,"text":"同意调出","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":144,"layout_index":14,"box":[125,492,42,8]}
- {"node_id":2657,"text":"河南远","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":144,"layout_index":15,"box":[130,512,69,30]}
- {"node_id":2658,"text":"嘉","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":144,"layout_index":16,"box":[209,486,64,45]}
- {"node_id":2659,"text":"所","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":144,"layout_index":17,"box":[307,530,9,9]}
- {"node_id":2660,"text":"PAS ","node_type":"text","parent":2579,"children":[],"para_type":"text","pageno":144,"layout_index":18,"box":[304,540,12,6]}
- {"node_id":2661,"text":"转协会盖章","node_type":"title","parent":0,"children":[2662,2663,2664,2665,2666,2667,2668],"para_type":"title_1","pageno":144,"layout_index":19,"box":[254,569,62,9]}
- {"node_id":2662,"text":"Stamp of the transfer-out Institute of CPAs ","node_type":"text","parent":2661,"children":[],"para_type":"text","pageno":144,"layout_index":20,"box":[211,580,108,6]}
- {"node_id":2663,"text":"2021年月y21日","node_type":"text","parent":2661,"children":[],"para_type":"text","pageno":144,"layout_index":21,"box":[207,588,109,18]}
- {"node_id":2664,"text":"同意调入","node_type":"text","parent":2661,"children":[],"para_type":"text","pageno":144,"layout_index":22,"box":[126,610,41,8]}
- {"node_id":2665,"text":"Agree the holder to be transferred to ","node_type":"text","parent":2661,"children":[],"para_type":"text","pageno":144,"layout_index":23,"box":[129,620,94,6]}
- {"node_id":2666,"text":"上海利永","node_type":"text","parent":2661,"children":[],"para_type":"text","pageno":144,"layout_index":24,"box":[143,646,80,24]}
- {"node_id":2667,"text":"事务所","node_type":"text","parent":2661,"children":[],"para_type":"text","pageno":144,"layout_index":25,"box":[285,647,31,9]}
- {"node_id":2668,"text":"CPAS ","node_type":"text","parent":2661,"children":[],"para_type":"text","pageno":144,"layout_index":26,"box":[300,658,14,5]}
- {"node_id":2669,"text":"协会盖章","node_type":"title","parent":0,"children":[2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694],"para_type":"title_1","pageno":144,"layout_index":27,"box":[272,685,44,8]}
- {"node_id":2670,"text":"sferisrstitute of CPAs ","node_type":"text","parent":2669,"children":[],"para_type":"text","pageno":144,"layout_index":28,"box":[258,696,61,6]}
- {"node_id":2671,"text":"\/m","node_type":"text","parent":2669,"children":[],"para_type":"text","pageno":144,"layout_index":29,"box":[276,716,3,4]}
- {"node_id":2672,"text":"\/ d ","node_type":"text","parent":2669,"children":[],"para_type":"text","pageno":144,"layout_index":30,"box":[310,717,6,4]}
- {"node_id":2673,"text":"注意事项","node_type":"text","parent":2669,"children":[],"para_type":"text","pageno":144,"layout_index":31,"box":[416,456,66,14]}
- {"node_id":2674,"text":"一、注册会计师执行业务,必要时须向委托方出示本证书。","node_type":"text","parent":2669,"children":[],"para_type":"text","pageno":144,"layout_index":32,"box":[351,478,191,21]}
- {"node_id":2675,"text":"二、本证书只限于本人使用,不得转让、涂改。三、注册会计师停止执行法定业务时,应将本证书缴还主管注册会计师协会。","node_type":"text","parent":2669,"children":[],"para_type":"text","pageno":144,"layout_index":33,"box":[350,500,192,34]}
- {"node_id":2676,"text":"四、本证书如遗失,应立即向主管注册会计师协会报告,登报声明作废后,办理补发手续。","node_type":"text","parent":2669,"children":[],"para_type":"text","pageno":144,"layout_index":34,"box":[350,535,191,24]}
- {"node_id":2677,"text":"NOTES ","node_type":"text","parent":2669,"children":[],"para_type":"text","pageno":144,"layout_index":35,"box":[434,581,23,6]}
- {"node_id":2678,"text":"1. When practising, the CPA shall show the client this certificate when necessary.","node_type":"text","parent":2669,"children":[],"para_type":"text","pageno":144,"layout_index":36,"box":[350,596,190,19]}
- {"node_id":2679,"text":"2. This certificate shall be exclusively used by the holder. No transfer or alteraton shall be allowed 3. The CPA shall return the certificate to the competent Institute of CPAs when the CPA stops conducting statutory business ","node_type":"text","parent":2669,"children":[],"para_type":"text","pageno":144,"layout_index":37,"box":[348,615,190,49]}
- {"node_id":2680,"text":"4. In case of loss, the CPA shall report to the competent Institute of CPAs immnediately and go through the procedure of reissue after making. an announcement of loss on the newspaper.","node_type":"text","parent":2669,"children":[],"para_type":"text","pageno":144,"layout_index":38,"box":[348,665,192,41]}
- {"node_id":2681,"text":"12","node_type":"head_tail","parent":2669,"children":[],"para_type":"head_tail","pageno":144,"layout_index":39,"box":[122,734,11,10]}
- {"node_id":2682,"text":"绰琪硅晶石","node_type":"head_tail","parent":2669,"children":[],"para_type":"head_tail","pageno":145,"layout_index":0,"box":[56,57,55,9]}
- {"node_id":2683,"text":"铸造经典","node_type":"text","parent":2669,"children":[],"para_type":"text","pageno":145,"layout_index":1,"box":[68,76,32,6]}
- {"node_id":2684,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":2669,"children":[],"para_type":"head_tail","pageno":145,"layout_index":2,"box":[431,78,125,9]}
- {"node_id":2685,"text":"中国认可","node_type":"text","parent":2669,"children":[],"para_type":"text","pageno":145,"layout_index":3,"box":[309,184,30,7]}
- {"node_id":2686,"text":"MA ","node_type":"text","parent":2669,"children":[],"para_type":"text","pageno":145,"layout_index":4,"box":[126,192,38,16]}
- {"node_id":2687,"text":"国际互认","node_type":"text","parent":2669,"children":[],"para_type":"text","pageno":145,"layout_index":5,"box":[309,194,30,6]}
- {"node_id":2688,"text":"nacMRA ","node_type":"text","parent":2669,"children":[],"para_type":"text","pageno":145,"layout_index":6,"box":[189,201,46,9]}
- {"node_id":2689,"text":"CNAS ","node_type":"text","parent":2669,"children":[],"para_type":"text","pageno":145,"layout_index":7,"box":[250,200,48,11]}
- {"node_id":2690,"text":"检测","node_type":"text","parent":2669,"children":[],"para_type":"text","pageno":145,"layout_index":8,"box":[308,202,17,9]}
- {"node_id":2691,"text":"TESTING ","node_type":"text","parent":2669,"children":[],"para_type":"text","pageno":145,"layout_index":9,"box":[310,213,30,4]}
- {"node_id":2692,"text":"180001282742","node_type":"text","parent":2669,"children":[],"para_type":"text","pageno":145,"layout_index":10,"box":[111,219,63,9]}
- {"node_id":2693,"text":"CNAS L4350 ","node_type":"text","parent":2669,"children":[],"para_type":"text","pageno":145,"layout_index":11,"box":[310,222,38,4]}
- {"node_id":2694,"text":"(2018)国认监认字(318)号","node_type":"text","parent":2669,"children":[],"para_type":"text","pageno":145,"layout_index":12,"box":[358,222,82,7]}
- {"node_id":2695,"text":"检验检测报告","node_type":"title","parent":0,"children":[2696,2697,2698,2699,2700],"para_type":"title_1","pageno":145,"layout_index":13,"box":[199,253,213,26]}
- {"node_id":2696,"text":"No:FH226-190059","node_type":"text","parent":2695,"children":[],"para_type":"text","pageno":145,"layout_index":14,"box":[260,305,93,10]}
- {"node_id":2697,"text":"样品名称硅晶石","node_type":"text","parent":2695,"children":[],"para_type":"text","pageno":145,"layout_index":15,"box":[176,397,83,12]}
- {"node_id":2698,"text":"型号规格25mm平板状建筑材料及制品A(A1)级","node_type":"text","parent":2695,"children":[],"para_type":"text","pageno":145,"layout_index":16,"box":[176,432,238,12]}
- {"node_id":2699,"text":"委托单位上海绰琪新型建材科技有限公司","node_type":"text","parent":2695,"children":[],"para_type":"text","pageno":145,"layout_index":17,"box":[176,468,196,12]}
- {"node_id":2700,"text":"检验类别普通送样","node_type":"text","parent":2695,"children":[],"para_type":"text","pageno":145,"layout_index":18,"box":[176,502,94,12]}
- {"node_id":2701,"text":"国家建筑工程材料质量监督检验中心","node_type":"title","parent":0,"children":[2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716],"para_type":"title_1","pageno":145,"layout_index":19,"box":[199,628,214,15]}
- {"node_id":2702,"text":"绰琪硅晶石","node_type":"head_tail","parent":2701,"children":[],"para_type":"head_tail","pageno":146,"layout_index":0,"box":[56,57,55,9]}
- {"node_id":2703,"text":"铸造经典","node_type":"text","parent":2701,"children":[],"para_type":"text","pageno":146,"layout_index":1,"box":[68,76,32,6]}
- {"node_id":2704,"text":"180001282742","node_type":"text","parent":2701,"children":[],"para_type":"text","pageno":146,"layout_index":2,"box":[111,186,64,10]}
- {"node_id":2705,"text":"检验类别:普通送样","node_type":"text","parent":2701,"children":[],"para_type":"text","pageno":146,"layout_index":3,"box":[101,253,66,10]}
- {"node_id":2706,"text":"委托编号:FH22-190021","node_type":"text","parent":2701,"children":[],"para_type":"text","pageno":146,"layout_index":4,"box":[101,265,80,9]}
- {"node_id":2707,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":2701,"children":[],"para_type":"head_tail","pageno":146,"layout_index":5,"box":[431,78,126,9]}
- {"node_id":2708,"text":"中国认可","node_type":"text","parent":2701,"children":[],"para_type":"text","pageno":146,"layout_index":6,"box":[308,151,29,7]}
- {"node_id":2709,"text":"MA ","node_type":"text","parent":2701,"children":[],"para_type":"text","pageno":146,"layout_index":7,"box":[126,159,38,17]}
- {"node_id":2710,"text":"iacaMRA ","node_type":"text","parent":2701,"children":[],"para_type":"text","pageno":146,"layout_index":8,"box":[188,169,46,9]}
- {"node_id":2711,"text":"国际互认","node_type":"text","parent":2701,"children":[],"para_type":"text","pageno":146,"layout_index":9,"box":[308,160,29,7]}
- {"node_id":2712,"text":"CNAS ","node_type":"text","parent":2701,"children":[],"para_type":"text","pageno":146,"layout_index":10,"box":[250,168,52,11]}
- {"node_id":2713,"text":"检测","node_type":"text","parent":2701,"children":[],"para_type":"text","pageno":146,"layout_index":11,"box":[308,170,15,7]}
- {"node_id":2714,"text":"TESTING ","node_type":"text","parent":2701,"children":[],"para_type":"text","pageno":146,"layout_index":12,"box":[310,180,23,5]}
- {"node_id":2715,"text":"CNAS L4350 ","node_type":"text","parent":2701,"children":[],"para_type":"text","pageno":146,"layout_index":13,"box":[310,189,37,5]}
- {"node_id":2716,"text":"(2018)国认监认字(318)号","node_type":"text","parent":2701,"children":[],"para_type":"text","pageno":146,"layout_index":14,"box":[349,187,90,10]}
- {"node_id":2717,"text":"国家建筑工程材料质量监督检验中心","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":146,"layout_index":15,"box":[196,203,221,16]}
- {"node_id":2718,"text":"检验检测报告","node_type":"title","parent":0,"children":[2719,2720,2721,2722,2723,2724,2725,2726,2727,2728],"para_type":"title_1","pageno":146,"layout_index":16,"box":[253,225,105,14]}
- {"node_id":2719,"text":"报告编号:FH226-190059","node_type":"text","parent":2718,"children":[],"para_type":"text","pageno":146,"layout_index":17,"box":[426,252,85,10]}
- {"node_id":2720,"text":"第1页共2页","node_type":"text","parent":2718,"children":[],"para_type":"text","pageno":146,"layout_index":18,"box":[472,264,39,9]}
- {"node_id":2721,"text":[["委托单位","上海绰琪新型建材科技有限公司","联系方式","13661975789"],["单位地址","闵行区东晨三路3号","委托日期","2019年01月22日"],["样品名称","硅晶石","样品编号","FH22-190021-01"],["生产单位","上海绰琪新型建材科技有限公司","生产日期"],["型号规格","25mm平板状建筑材料及制品A(A1)级","批号","一"],["样品数量","2块","代表数量"],["商标","“","到样日期","2019年01月22日"],["样品状态","无异常","无异常","无异常"],["检验依据和综合判定规则","GB8624-2012《建筑材料及制品燃烧性能分级》","GB8624-2012《建筑材料及制品燃烧性能分级》","GB8624-2012《建筑材料及制品燃烧性能分级》"],["检验日期","2019年02月15日","签发日期","2019年02月18日"],["检验地点","上海市向阳路201弄65号","上海市向阳路201弄65号","上海市向阳路201弄65号"],["检验结论","本样品燃烧性能符合GB8624-2012规定的A(A1)级建筑材料要求。检验机构(盖章)","本样品燃烧性能符合GB8624-2012规定的A(A1)级建筑材料要求。检验机构(盖章)","本样品燃烧性能符合GB8624-2012规定的A(A1)级建筑材料要求。检验机构(盖章)"],["备注","检测方法GB\/T5464-2010《建筑材料不燃性试验方法》GB\/T14402-2007《建筑材料及制品的燃烧性能燃烧热值的测定》","检测方法GB\/T5464-2010《建筑材料不燃性试验方法》GB\/T14402-2007《建筑材料及制品的燃烧性能燃烧热值的测定》","检测方法GB\/T5464-2010《建筑材料不燃性试验方法》GB\/T14402-2007《建筑材料及制品的燃烧性能燃烧热值的测定》"],[""]],"node_type":"table","parent":2718,"children":[],"para_type":"table","pageno":146,"layout_index":19,"box":[97,276,417,365]}
- {"node_id":2722,"text":"批准:时志洋","node_type":"text","parent":2718,"children":[],"para_type":"text","pageno":146,"layout_index":20,"box":[118,651,83,29]}
- {"node_id":2723,"text":"审核:姚玉梅编制:","node_type":"text","parent":2718,"children":[],"para_type":"text","pageno":146,"layout_index":21,"box":[320,657,116,20]}
- {"node_id":2724,"text":"绰琪硅晶石","node_type":"head_tail","parent":2718,"children":[],"para_type":"head_tail","pageno":147,"layout_index":0,"box":[56,57,55,9]}
- {"node_id":2725,"text":"铸造经典","node_type":"text","parent":2718,"children":[],"para_type":"text","pageno":147,"layout_index":1,"box":[68,76,32,6]}
- {"node_id":2726,"text":"检验类别:普通送样","node_type":"text","parent":2718,"children":[],"para_type":"text","pageno":147,"layout_index":2,"box":[103,242,64,10]}
- {"node_id":2727,"text":"委托编号:FH22-190021","node_type":"text","parent":2718,"children":[],"para_type":"text","pageno":147,"layout_index":3,"box":[103,254,79,9]}
- {"node_id":2728,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":2718,"children":[],"para_type":"head_tail","pageno":147,"layout_index":4,"box":[431,78,125,9]}
- {"node_id":2729,"text":"国家建筑工程材料质量监督检验中心","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":147,"layout_index":5,"box":[196,192,222,15]}
- {"node_id":2730,"text":"检验检测报告","node_type":"title","parent":0,"children":[2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746],"para_type":"title_1","pageno":147,"layout_index":6,"box":[254,214,104,14]}
- {"node_id":2731,"text":"报告编号:FH226-190059","node_type":"text","parent":2730,"children":[],"para_type":"text","pageno":147,"layout_index":7,"box":[427,242,85,10]}
- {"node_id":2732,"text":"第2页共2页","node_type":"text","parent":2730,"children":[],"para_type":"text","pageno":147,"layout_index":8,"box":[472,254,40,9]}
- {"node_id":2733,"text":[["GB8624-2012《建筑材料及制品燃烧性能分级》检测结果汇总","GB8624-2012《建筑材料及制品燃烧性能分级》检测结果汇总","GB8624-2012《建筑材料及制品燃烧性能分级》检测结果汇总","GB8624-2012《建筑材料及制品燃烧性能分级》检测结果汇总","GB8624-2012《建筑材料及制品燃烧性能分级》检测结果汇总","GB8624-2012《建筑材料及制品燃烧性能分级》检测结果汇总"],["序号","检测项目","检测项目","标准值","检测结果","单项判定"],["1","不燃性","炉内温升△T,℃","≤30","5","合格"],["1","不燃性","质量损失率△m,%","≤50","21","合格"],["1","不燃性","持续燃烧时间tf,s","=0","0","合格"],["2","燃烧总热值PCS","整体制品,MJ\/kg","≤2.0","0.4","合格"],["说明","说明","试验结果只与特定的试验条件下试样的性能有关;试验结果不能作为评估制品在实际使用条件下潜在火灾危险性的唯一依据。","试验结果只与特定的试验条件下试样的性能有关;试验结果不能作为评估制品在实际使用条件下潜在火灾危险性的唯一依据。","试验结果只与特定的试验条件下试样的性能有关;试验结果不能作为评估制品在实际使用条件下潜在火灾危险性的唯一依据。","试验结果只与特定的试验条件下试样的性能有关;试验结果不能作为评估制品在实际使用条件下潜在火灾危险性的唯一依据。"],[""]],"node_type":"table","parent":2730,"children":[],"para_type":"table","pageno":147,"layout_index":9,"box":[100,265,414,142]}
- {"node_id":2734,"text":"(本报告内容结束)","node_type":"text","parent":2730,"children":[],"para_type":"text","pageno":147,"layout_index":10,"box":[448,420,59,9]}
- {"node_id":2735,"text":"联系方式:上海市申富路568号(邮编:201108)021-54428584\/54425584","node_type":"text","parent":2730,"children":[],"para_type":"text","pageno":147,"layout_index":11,"box":[102,443,242,9]}
- {"node_id":2736,"text":"BG607-2017","node_type":"text","parent":2730,"children":[],"para_type":"text","pageno":147,"layout_index":12,"box":[469,444,41,7]}
- {"node_id":2737,"text":"声明:1、以上检验结果委托单位如有异议,请在报告收到之日起十五日内提出。","node_type":"text","parent":2730,"children":[],"para_type":"text","pageno":147,"layout_index":13,"box":[103,453,257,9]}
- {"node_id":2738,"text":"2、报告未经本机构同意,不得部分复制本报告","node_type":"text","parent":2730,"children":[],"para_type":"text","pageno":147,"layout_index":14,"box":[138,465,146,7]}
- {"node_id":2739,"text":"3、本机构不负责对委托方所提供样品相关信息及企业信息真实性的证实","node_type":"text","parent":2730,"children":[],"para_type":"text","pageno":147,"layout_index":15,"box":[138,475,222,7]}
- {"node_id":2740,"text":"4、送样检验结果仅对来样负责。","node_type":"text","parent":2730,"children":[],"para_type":"text","pageno":147,"layout_index":16,"box":[138,486,97,7]}
- {"node_id":2741,"text":"绰琪硅晶石","node_type":"head_tail","parent":2730,"children":[],"para_type":"head_tail","pageno":148,"layout_index":0,"box":[56,56,55,10]}
- {"node_id":2742,"text":"铸造经典","node_type":"text","parent":2730,"children":[],"para_type":"text","pageno":148,"layout_index":1,"box":[67,75,32,6]}
- {"node_id":2743,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":2730,"children":[],"para_type":"head_tail","pageno":148,"layout_index":2,"box":[431,78,125,9]}
- {"node_id":2744,"text":"MA ","node_type":"text","parent":2730,"children":[],"para_type":"text","pageno":148,"layout_index":3,"box":[247,136,36,16]}
- {"node_id":2745,"text":"180001282742","node_type":"text","parent":2730,"children":[],"para_type":"text","pageno":148,"layout_index":4,"box":[226,165,70,11]}
- {"node_id":2746,"text":"2018)国认监认字(318)号","node_type":"text","parent":2730,"children":[],"para_type":"text","pageno":148,"layout_index":5,"box":[114,176,91,11]}
- {"node_id":2747,"text":"检验检测报告","node_type":"title","parent":0,"children":[2748,2749,2750,2751,2752,2753,2754,2755,2756],"para_type":"title_1","pageno":148,"layout_index":6,"box":[189,258,208,35]}
- {"node_id":2748,"text":"报告编号:HX226-190021","node_type":"text","parent":2747,"children":[],"para_type":"text","pageno":148,"layout_index":7,"box":[219,347,148,14]}
- {"node_id":2749,"text":"样品名称硅晶石","node_type":"text","parent":2747,"children":[],"para_type":"text","pageno":148,"layout_index":8,"box":[171,423,99,15]}
- {"node_id":2750,"text":"型号规格25mm","node_type":"text","parent":2747,"children":[],"para_type":"text","pageno":148,"layout_index":9,"box":[169,474,95,15]}
- {"node_id":2751,"text":"委托单位上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":2747,"children":[],"para_type":"head_tail","pageno":148,"layout_index":10,"box":[169,526,243,17]}
- {"node_id":2752,"text":"检验类别普通送样","node_type":"text","parent":2747,"children":[],"para_type":"text","pageno":148,"layout_index":11,"box":[168,578,113,15]}
- {"node_id":2753,"text":"国家建筑工程材料质量监督检验中心","node_type":"text","parent":2747,"children":[],"para_type":"text","pageno":148,"layout_index":12,"box":[171,662,238,19]}
- {"node_id":2754,"text":"绰琪硅晶石","node_type":"head_tail","parent":2747,"children":[],"para_type":"head_tail","pageno":149,"layout_index":0,"box":[56,57,55,9]}
- {"node_id":2755,"text":"铸造经典","node_type":"text","parent":2747,"children":[],"para_type":"text","pageno":149,"layout_index":1,"box":[67,76,33,6]}
- {"node_id":2756,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":2747,"children":[],"para_type":"head_tail","pageno":149,"layout_index":2,"box":[431,78,125,9]}
- {"node_id":2757,"text":"注意事项","node_type":"title","parent":0,"children":[2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770],"para_type":"title_1","pageno":149,"layout_index":3,"box":[256,184,128,21]}
- {"node_id":2758,"text":"1、报告无“检验专用章”或检验单位公章无效;","node_type":"text","parent":2757,"children":[],"para_type":"text","pageno":149,"layout_index":4,"box":[161,232,243,13]}
- {"node_id":2759,"text":"2、复制报告未重新加盖“检验专用章”或检验单位公章无效;","node_type":"text","parent":2757,"children":[],"para_type":"text","pageno":149,"layout_index":5,"box":[160,252,314,13]}
- {"node_id":2760,"text":"3、报告无编制或主检、审核、批准人签字无效;","node_type":"text","parent":2757,"children":[],"para_type":"text","pageno":149,"layout_index":6,"box":[160,273,242,13]}
- {"node_id":2761,"text":"4、报告涂改无效。","node_type":"text","parent":2757,"children":[],"para_type":"text","pageno":149,"layout_index":7,"box":[160,293,93,13]}
- {"node_id":2762,"text":"地址:上海市申富路568号","node_type":"text","parent":2757,"children":[],"para_type":"text","pageno":149,"layout_index":8,"box":[178,573,133,11]}
- {"node_id":2763,"text":"邮编:201108","node_type":"text","parent":2757,"children":[],"para_type":"text","pageno":149,"layout_index":9,"box":[178,593,71,12]}
- {"node_id":2764,"text":"电话:021-64224278,021-64689194","node_type":"text","parent":2757,"children":[],"para_type":"text","pageno":149,"layout_index":10,"box":[179,614,190,10]}
- {"node_id":2765,"text":"传真:021-33507549,021-64284325","node_type":"text","parent":2757,"children":[],"para_type":"text","pageno":149,"layout_index":11,"box":[179,635,189,10]}
- {"node_id":2766,"text":"E-mail: jczjz@aliyun.com ","node_type":"text","parent":2757,"children":[],"para_type":"text","pageno":149,"layout_index":12,"box":[180,656,139,8]}
- {"node_id":2767,"text":"绰琪硅晶石","node_type":"head_tail","parent":2757,"children":[],"para_type":"head_tail","pageno":150,"layout_index":0,"box":[56,57,55,9]}
- {"node_id":2768,"text":"铸造经典","node_type":"text","parent":2757,"children":[],"para_type":"text","pageno":150,"layout_index":1,"box":[68,76,32,6]}
- {"node_id":2769,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":2757,"children":[],"para_type":"head_tail","pageno":150,"layout_index":2,"box":[431,78,125,9]}
- {"node_id":2770,"text":"报告编号:HX226-190021","node_type":"text","parent":2757,"children":[],"para_type":"text","pageno":150,"layout_index":3,"box":[372,146,113,12]}
- {"node_id":2771,"text":"国家建筑工程材料质量监督检验中心","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":150,"layout_index":4,"box":[189,181,241,18]}
- {"node_id":2772,"text":"检验检测报告","node_type":"title","parent":0,"children":[2773,2774,2775,2776,2777,2778,2779,2780],"para_type":"title_1","pageno":150,"layout_index":5,"box":[244,200,130,16]}
- {"node_id":2773,"text":"共3页第1页","node_type":"text","parent":2772,"children":[],"para_type":"text","pageno":150,"layout_index":6,"box":[420,221,75,12]}
- {"node_id":2774,"text":[["样品名称","硅晶石","硅晶石","检验类别","普通送样"],["型号规格\/等级","25mm ","25mm ","商标"],["批号或编号","…","…","样品数量","1m2"],["生产日期","…","…","代表批数量","…"],["委托单位名称","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司"],["生产单位名称","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司"],["工程名称","…","…","工程地址"],["样品见证","","","取样部位"],["委托单编号","HX22-190059","HX22-190059","送样日期","2019-01-22"],["样品编号","HX22-190059-01","HX22-190059-01","委托日期","2019-01-22"],["样品状态描述","见附件样品照片","见附件样品照片","见附件样品照片","见附件样品照片"],["检验依据","ISO16000-6-2011《室内空气第6部分:通过TenaxTA 吸附剂、热解吸以及使用质谱(MS)或质谱-火焰离子化检测器(MS-FID)的气相色谱主动取样来测定室内和试验室空气中的挥发性有机化合物》ISO16000-9-2006《室内空气第9部分:来自建筑产品和家具的挥发性有机化合物排放的测定排放试验室法》","ISO16000-6-2011《室内空气第6部分:通过TenaxTA 吸附剂、热解吸以及使用质谱(MS)或质谱-火焰离子化检测器(MS-FID)的气相色谱主动取样来测定室内和试验室空气中的挥发性有机化合物》ISO16000-9-2006《室内空气第9部分:来自建筑产品和家具的挥发性有机化合物排放的测定排放试验室法》","ISO16000-6-2011《室内空气第6部分:通过TenaxTA 吸附剂、热解吸以及使用质谱(MS)或质谱-火焰离子化检测器(MS-FID)的气相色谱主动取样来测定室内和试验室空气中的挥发性有机化合物》ISO16000-9-2006《室内空气第9部分:来自建筑产品和家具的挥发性有机化合物排放的测定排放试验室法》","ISO16000-6-2011《室内空气第6部分:通过TenaxTA 吸附剂、热解吸以及使用质谱(MS)或质谱-火焰离子化检测器(MS-FID)的气相色谱主动取样来测定室内和试验室空气中的挥发性有机化合物》ISO16000-9-2006《室内空气第9部分:来自建筑产品和家具的挥发性有机化合物排放的测定排放试验室法》"],["检验日期","2019-01-25~2019-02-14检验地点申富路568号","2019-01-25~2019-02-14检验地点申富路568号","2019-01-25~2019-02-14检验地点申富路568号","2019-01-25~2019-02-14检验地点申富路568号"],["检验结论","该样品本次检验结果见检验结果汇总页。检验机构(盖章)签发日期:201","该样品本次检验结果见检验结果汇总页。检验机构(盖章)签发日期:201","该样品本次检验结果见检验结果汇总页。检验机构(盖章)签发日期:201","该样品本次检验结果见检验结果汇总页。检验机构(盖章)签发日期:201"],["委托单位通讯资料","地址","闵行区东晨三路3号","闵行区东晨三路3号","闵行区东晨三路3号"],["委托单位通讯资料","邮编","","电话","13661975789"],["备注","1.未经本检验机构同意,不得部分复制本报告。2.以上检验结果委托单位如有异议,请在报告收到之日起十五日内提出。3.样品及企业相关信息由委托方(或见证方)提供并负责其真实性。4.送样检测结果仅对来样负责。","1.未经本检验机构同意,不得部分复制本报告。2.以上检验结果委托单位如有异议,请在报告收到之日起十五日内提出。3.样品及企业相关信息由委托方(或见证方)提供并负责其真实性。4.送样检测结果仅对来样负责。","1.未经本检验机构同意,不得部分复制本报告。2.以上检验结果委托单位如有异议,请在报告收到之日起十五日内提出。3.样品及企业相关信息由委托方(或见证方)提供并负责其真实性。4.送样检测结果仅对来样负责。","1.未经本检验机构同意,不得部分复制本报告。2.以上检验结果委托单位如有异议,请在报告收到之日起十五日内提出。3.样品及企业相关信息由委托方(或见证方)提供并负责其真实性。4.送样检测结果仅对来样负责。"],[""]],"node_type":"table","parent":2772,"children":[],"para_type":"table","pageno":150,"layout_index":7,"box":[121,237,388,442]}
- {"node_id":2775,"text":"于晨批准人:","node_type":"text","parent":2772,"children":[],"para_type":"text","pageno":150,"layout_index":8,"box":[127,679,108,43]}
- {"node_id":2776,"text":"编制人:王晓明","node_type":"text","parent":2772,"children":[],"para_type":"text","pageno":150,"layout_index":9,"box":[386,680,81,31]}
- {"node_id":2777,"text":"绰琪硅晶石","node_type":"head_tail","parent":2772,"children":[],"para_type":"head_tail","pageno":151,"layout_index":0,"box":[56,57,55,9]}
- {"node_id":2778,"text":"铸造经典","node_type":"text","parent":2772,"children":[],"para_type":"text","pageno":151,"layout_index":1,"box":[68,76,32,6]}
- {"node_id":2779,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":2772,"children":[],"para_type":"head_tail","pageno":151,"layout_index":2,"box":[431,78,125,9]}
- {"node_id":2780,"text":"报告编号:HX226-190021","node_type":"text","parent":2772,"children":[],"para_type":"text","pageno":151,"layout_index":3,"box":[377,151,113,13]}
- {"node_id":2781,"text":"国家建筑工程材料质量监督检验中心","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":151,"layout_index":4,"box":[194,187,242,18]}
- {"node_id":2782,"text":"检验检测报告","node_type":"title","parent":0,"children":[2783,2784,2785,2786,2787,2788],"para_type":"title_1","pageno":151,"layout_index":5,"box":[249,207,130,16]}
- {"node_id":2783,"text":"共3页第2页","node_type":"text","parent":2782,"children":[],"para_type":"text","pageno":151,"layout_index":6,"box":[425,228,75,11]}
- {"node_id":2784,"text":[["检验结果汇总","检验结果汇总","检验结果汇总","检验结果汇总","检验结果汇总","检验结果汇总"],["号","检测项目","检测项目","标准值","检测结果","单项判定"],["1","总挥发性有机化合物(TVOC),(mg\/m')","总挥发性有机化合物(TVOC),(mg\/m')","","0.008"],["(以下空白)","(以下空白)"],[""],[""],[""],[""],[""],[""],[""],[""],[""],[""],[""],[""],["说明","说明","1.根据委托方要求,本次测试环境舱温度为23℃,相对湿度为50%RH,换气速率为1次\/h,样品表面积与环境舱容积之比为1m2\/m3。2.本次检测按ISO16000-9-2006要求平衡24h,总挥发性有机化合物(TVOC)项目按ISO16000-6-2011进行分析,提供实测数据。3.送检样品去除背面纸质粘附物后进行检测。","1.根据委托方要求,本次测试环境舱温度为23℃,相对湿度为50%RH,换气速率为1次\/h,样品表面积与环境舱容积之比为1m2\/m3。2.本次检测按ISO16000-9-2006要求平衡24h,总挥发性有机化合物(TVOC)项目按ISO16000-6-2011进行分析,提供实测数据。3.送检样品去除背面纸质粘附物后进行检测。","1.根据委托方要求,本次测试环境舱温度为23℃,相对湿度为50%RH,换气速率为1次\/h,样品表面积与环境舱容积之比为1m2\/m3。2.本次检测按ISO16000-9-2006要求平衡24h,总挥发性有机化合物(TVOC)项目按ISO16000-6-2011进行分析,提供实测数据。3.送检样品去除背面纸质粘附物后进行检测。","1.根据委托方要求,本次测试环境舱温度为23℃,相对湿度为50%RH,换气速率为1次\/h,样品表面积与环境舱容积之比为1m2\/m3。2.本次检测按ISO16000-9-2006要求平衡24h,总挥发性有机化合物(TVOC)项目按ISO16000-6-2011进行分析,提供实测数据。3.送检样品去除背面纸质粘附物后进行检测。"],[""]],"node_type":"table","parent":2782,"children":[],"para_type":"table","pageno":151,"layout_index":7,"box":[126,243,379,492]}
- {"node_id":2785,"text":"绰琪硅晶石","node_type":"head_tail","parent":2782,"children":[],"para_type":"head_tail","pageno":152,"layout_index":0,"box":[56,57,55,9]}
- {"node_id":2786,"text":"铸造经典","node_type":"text","parent":2782,"children":[],"para_type":"text","pageno":152,"layout_index":1,"box":[67,76,33,6]}
- {"node_id":2787,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":2782,"children":[],"para_type":"head_tail","pageno":152,"layout_index":2,"box":[431,78,125,9]}
- {"node_id":2788,"text":"报告编号:HX226-190021","node_type":"text","parent":2782,"children":[],"para_type":"text","pageno":152,"layout_index":3,"box":[364,148,114,10]}
- {"node_id":2789,"text":"国家建筑工程材料质量监督检验中心","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":152,"layout_index":4,"box":[168,179,244,17]}
- {"node_id":2790,"text":"检验检测报告","node_type":"title","parent":0,"children":[2791],"para_type":"title_1","pageno":152,"layout_index":5,"box":[227,202,130,16]}
- {"node_id":2791,"text":"共3页第3页","node_type":"text","parent":2790,"children":[],"para_type":"text","pageno":152,"layout_index":6,"box":[386,225,74,10]}
- {"node_id":2792,"text":"样品照片","node_type":"title","parent":0,"children":[2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804],"para_type":"title_1","pageno":152,"layout_index":7,"box":[278,240,35,10]}
- {"node_id":2793,"text":":HX22-190059-01","node_type":"text","parent":2792,"children":[],"para_type":"text","pageno":152,"layout_index":8,"box":[142,289,127,16]}
- {"node_id":2794,"text":"名称硅晶石","node_type":"text","parent":2792,"children":[],"para_type":"text","pageno":152,"layout_index":9,"box":[144,308,58,16]}
- {"node_id":2795,"text":"规格:25mm","node_type":"text","parent":2792,"children":[],"para_type":"text","pageno":152,"layout_index":10,"box":[146,343,58,15]}
- {"node_id":2796,"text":"数量:1m","node_type":"text","parent":2792,"children":[],"para_type":"text","pageno":152,"layout_index":11,"box":[146,364,47,15]}
- {"node_id":2797,"text":"等级:","node_type":"text","parent":2792,"children":[],"para_type":"text","pageno":152,"layout_index":12,"box":[148,381,27,16]}
- {"node_id":2798,"text":"世家治9-5名3","node_type":"text","parent":2792,"children":[],"para_type":"text","pageno":152,"layout_index":13,"box":[192,629,5,4]}
- {"node_id":2799,"text":"吉空欢万","node_type":"text","parent":2792,"children":[],"para_type":"text","pageno":152,"layout_index":14,"box":[169,647,6,4]}
- {"node_id":2800,"text":"手发造","node_type":"text","parent":2792,"children":[],"para_type":"text","pageno":152,"layout_index":15,"box":[252,653,9,7]}
- {"node_id":2801,"text":"(本报告结束)","node_type":"text","parent":2792,"children":[],"para_type":"text","pageno":152,"layout_index":16,"box":[392,719,53,9]}
- {"node_id":2802,"text":"绰琪硅晶石","node_type":"head_tail","parent":2792,"children":[],"para_type":"head_tail","pageno":153,"layout_index":0,"box":[56,57,55,9]}
- {"node_id":2803,"text":"铸造经典","node_type":"text","parent":2792,"children":[],"para_type":"text","pageno":153,"layout_index":1,"box":[68,76,32,6]}
- {"node_id":2804,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":2792,"children":[],"para_type":"head_tail","pageno":153,"layout_index":2,"box":[431,78,125,9]}
- {"node_id":2805,"text":"国家建筑工程材料质量监督检验中心简介","node_type":"title","parent":0,"children":[2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839],"para_type":"title_1","pageno":153,"layout_index":3,"box":[168,186,270,16]}
- {"node_id":2806,"text":"国家建筑工程材料质量监督检验中心是经国家质量监督检验检疫总局和国家认证认可监督管理委员会联合批准,为国家和地方质量监督行政执法部门以及社会提供建筑工程材料质量检验服务的国家级产品检验检测机构。国家建筑工程材料质量监督检验中心依托于上海市建筑科学研究院建立。","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":153,"layout_index":4,"box":[118,234,370,57]}
- {"node_id":2807,"text":"国家建筑工程材料质量监督检验中心定位为:按照专业化、集约化水平的要求,在建筑工程材料及其产品合格评定领域内形成和建立资源集聚效应显著、专业优势明显、服务功能完备的高水平公共技术服务平台,为国内外政府部门、社会团体、企事业单位和个人提供权威的第三方服务。","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":153,"layout_index":5,"box":[118,294,370,57]}
- {"node_id":2808,"text":"主要检测范围:","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":153,"layout_index":6,"box":[119,386,59,9]}
- {"node_id":2809,"text":"1.水泥及其他胶凝材料(含石灰、石膏等);","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":153,"layout_index":7,"box":[119,402,182,10]}
- {"node_id":2810,"text":"2.混凝土、砂浆、骨料、掺合料、外加剂;","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":153,"layout_index":8,"box":[119,417,173,9]}
- {"node_id":2811,"text":"3.墙体材料(砖、瓦、新型墙体材料等);","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":153,"layout_index":9,"box":[119,432,173,9]}
- {"node_id":2812,"text":"4.金属材料(建筑钢材、脚手架扣件、紧固件、建筑铝材等);","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":153,"layout_index":10,"box":[119,447,256,10]}
- {"node_id":2813,"text":"5.涂料及胶粘剂;","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":153,"layout_index":11,"box":[118,462,74,9]}
- {"node_id":2814,"text":"6.结构胶、防水材料;","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":153,"layout_index":12,"box":[119,478,92,9]}
- {"node_id":2815,"text":"7.木材及其制品(人造板、地板、家具等);","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":153,"layout_index":13,"box":[119,492,182,9]}
- {"node_id":2816,"text":"8.绝热材料及建筑节能工程;","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":153,"layout_index":14,"box":[119,508,119,9]}
- {"node_id":2817,"text":"9.建筑陶瓷、石材及卫生洁具;","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":153,"layout_index":15,"box":[118,523,128,9]}
- {"node_id":2818,"text":"10.塑料及金属管材管件;","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":153,"layout_index":16,"box":[119,538,104,9]}
- {"node_id":2819,"text":"11.建筑铝合金、塑料制品;","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":153,"layout_index":17,"box":[119,553,114,9]}
- {"node_id":2820,"text":"12.材料及其挥发物中有害物质;","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":153,"layout_index":18,"box":[119,568,132,9]}
- {"node_id":2821,"text":"13.建筑幕墙和门窗;","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":153,"layout_index":19,"box":[119,584,87,9]}
- {"node_id":2822,"text":"14.建筑保温隔声、遮阳产品;","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":153,"layout_index":20,"box":[119,598,123,9]}
- {"node_id":2823,"text":"15.预应力锚具;","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":153,"layout_index":21,"box":[119,614,68,9]}
- {"node_id":2824,"text":"16.玻璃(含钢化、夹层等安全玻璃);","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":153,"layout_index":22,"box":[119,629,159,9]}
- {"node_id":2825,"text":"17.建筑材料及构件防火性能;","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":153,"layout_index":23,"box":[119,644,123,9]}
- {"node_id":2826,"text":"18.各类建材化学分析","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":153,"layout_index":24,"box":[118,660,92,9]}
- {"node_id":2827,"text":"绰琪硅晶石","node_type":"head_tail","parent":2805,"children":[],"para_type":"head_tail","pageno":154,"layout_index":0,"box":[56,57,55,9]}
- {"node_id":2828,"text":"铸造经典","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":154,"layout_index":1,"box":[68,76,32,6]}
- {"node_id":2829,"text":"2","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":154,"layout_index":2,"box":[170,136,9,22]}
- {"node_id":2830,"text":"MA ","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":154,"layout_index":3,"box":[122,194,42,16]}
- {"node_id":2831,"text":"nacMRa ","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":154,"layout_index":4,"box":[185,202,52,9]}
- {"node_id":2832,"text":"CNAS ","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":154,"layout_index":5,"box":[248,201,52,11]}
- {"node_id":2833,"text":"180001282742","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":154,"layout_index":6,"box":[107,220,64,9]}
- {"node_id":2834,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":2805,"children":[],"para_type":"head_tail","pageno":154,"layout_index":7,"box":[431,78,125,9]}
- {"node_id":2835,"text":"中国认可","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":154,"layout_index":8,"box":[309,184,31,9]}
- {"node_id":2836,"text":"国际互认","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":154,"layout_index":9,"box":[310,194,29,6]}
- {"node_id":2837,"text":"检测","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":154,"layout_index":10,"box":[309,202,16,8]}
- {"node_id":2838,"text":"TESTING ","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":154,"layout_index":11,"box":[311,214,30,4]}
- {"node_id":2839,"text":"CNASL 4350(2018)国认监认字(318)号","node_type":"text","parent":2805,"children":[],"para_type":"text","pageno":154,"layout_index":12,"box":[310,220,134,10]}
- {"node_id":2840,"text":"检验检测报告","node_type":"title","parent":0,"children":[2841,2842,2843,2844,2845],"para_type":"title_1","pageno":154,"layout_index":13,"box":[197,254,218,27]}
- {"node_id":2841,"text":"No:TC226-190065","node_type":"text","parent":2840,"children":[],"para_type":"text","pageno":154,"layout_index":14,"box":[260,306,95,10]}
- {"node_id":2842,"text":"样品名称硅晶石","node_type":"text","parent":2840,"children":[],"para_type":"text","pageno":154,"layout_index":15,"box":[174,399,84,13]}
- {"node_id":2843,"text":"型号规格300×300×25(mm)","node_type":"text","parent":2840,"children":[],"para_type":"text","pageno":154,"layout_index":16,"box":[174,435,147,12]}
- {"node_id":2844,"text":"委托单位上海绰琪新型建材科技有限公司","node_type":"text","parent":2840,"children":[],"para_type":"text","pageno":154,"layout_index":17,"box":[174,469,202,13]}
- {"node_id":2845,"text":"检验类别普通送样","node_type":"text","parent":2840,"children":[],"para_type":"text","pageno":154,"layout_index":18,"box":[174,504,96,13]}
- {"node_id":2846,"text":"国家建筑工程材料质量监督检验中心","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":154,"layout_index":19,"box":[198,632,217,13]}
- {"node_id":2847,"text":"检验专用章","node_type":"title","parent":0,"children":[2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858],"para_type":"title_1","pageno":154,"layout_index":20,"box":[240,658,56,19]}
- {"node_id":2848,"text":"绰琪硅晶石","node_type":"head_tail","parent":2847,"children":[],"para_type":"head_tail","pageno":155,"layout_index":0,"box":[56,57,55,9]}
- {"node_id":2849,"text":"铸造经典","node_type":"text","parent":2847,"children":[],"para_type":"text","pageno":155,"layout_index":1,"box":[68,76,32,6]}
- {"node_id":2850,"text":"iacEMRA ","node_type":"text","parent":2847,"children":[],"para_type":"text","pageno":155,"layout_index":2,"box":[188,168,45,8]}
- {"node_id":2851,"text":"CNAS ","node_type":"text","parent":2847,"children":[],"para_type":"text","pageno":155,"layout_index":3,"box":[250,168,52,11]}
- {"node_id":2852,"text":"180001282742","node_type":"text","parent":2847,"children":[],"para_type":"text","pageno":155,"layout_index":4,"box":[113,187,62,9]}
- {"node_id":2853,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":2847,"children":[],"para_type":"head_tail","pageno":155,"layout_index":5,"box":[431,78,126,9]}
- {"node_id":2854,"text":"中国认可","node_type":"text","parent":2847,"children":[],"para_type":"text","pageno":155,"layout_index":6,"box":[309,151,29,7]}
- {"node_id":2855,"text":"国际互认","node_type":"text","parent":2847,"children":[],"para_type":"text","pageno":155,"layout_index":7,"box":[309,160,29,7]}
- {"node_id":2856,"text":"检测","node_type":"text","parent":2847,"children":[],"para_type":"text","pageno":155,"layout_index":8,"box":[308,169,16,9]}
- {"node_id":2857,"text":"TESTING ","node_type":"text","parent":2847,"children":[],"para_type":"text","pageno":155,"layout_index":9,"box":[310,180,23,4]}
- {"node_id":2858,"text":"CNASL 4350(2018)国认监认字(318)号","node_type":"text","parent":2847,"children":[],"para_type":"text","pageno":155,"layout_index":10,"box":[309,187,129,9]}
- {"node_id":2859,"text":"国家建筑工程材料质量监督检验中心","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":155,"layout_index":11,"box":[196,203,221,14]}
- {"node_id":2860,"text":"检验检测报告","node_type":"title","parent":0,"children":[2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873],"para_type":"title_1","pageno":155,"layout_index":12,"box":[254,224,104,15]}
- {"node_id":2861,"text":"检验类别:普通送样","node_type":"text","parent":2860,"children":[],"para_type":"text","pageno":155,"layout_index":13,"box":[103,253,65,8]}
- {"node_id":2862,"text":"委托编号:TC22-190052","node_type":"text","parent":2860,"children":[],"para_type":"text","pageno":155,"layout_index":14,"box":[103,264,81,9]}
- {"node_id":2863,"text":"报告编号:TC226-190065","node_type":"text","parent":2860,"children":[],"para_type":"text","pageno":155,"layout_index":15,"box":[426,252,85,9]}
- {"node_id":2864,"text":"第1页共3页","node_type":"text","parent":2860,"children":[],"para_type":"text","pageno":155,"layout_index":16,"box":[471,263,39,10]}
- {"node_id":2865,"text":[["委托单位","","联系方式","13661975789"],["委托单位","上海绰琪新型建材科技有限公司","联系方式","13661975789"],["单位地址","闵行区东晨三路3号","委托日期","2019年01月22日"],["样品名称","硅晶石","样品编号","TC22-190052-01"],["生产单位","上海绰琪新型建材科技有限公司","生产日期"],["型号规格","300×300×25(mm)","批号"],["样品数量","60块","代表数量"],["商标","一","到样日期","2019年01月22日"],["样品状态","无异常","无异常","无异常"],["检验依据和综合判定规则","JC\/T908-2013(2017)《人造石》","JC\/T908-2013(2017)《人造石》","JC\/T908-2013(2017)《人造石》"],["检验日期","2019年01月23日~2019年02月20日","签发日期","2019年02月26日"],["检验地点","上海市申富路568号","上海市申富路568号","上海市申富路568号"],["检验结论","送检的样品经检验,按上述检验依据的技术指标判定为所检项目合格,放射性符合GB6566-2010中规定的A类装饰装修材料技术指标检验机构(盖章)","送检的样品经检验,按上述检验依据的技术指标判定为所检项目合格,放射性符合GB6566-2010中规定的A类装饰装修材料技术指标检验机构(盖章)","送检的样品经检验,按上述检验依据的技术指标判定为所检项目合格,放射性符合GB6566-2010中规定的A类装饰装修材料技术指标检验机构(盖章)"],["备注","1、A类装饰装修材料产销和使用范围不受限制。","1、A类装饰装修材料产销和使用范围不受限制。","1、A类装饰装修材料产销和使用范围不受限制。"],[""]],"node_type":"table","parent":2860,"children":[],"para_type":"table","pageno":155,"layout_index":17,"box":[100,274,414,362]}
- {"node_id":2866,"text":"批准:邵琴","node_type":"text","parent":2860,"children":[],"para_type":"text","pageno":155,"layout_index":18,"box":[119,649,82,27]}
- {"node_id":2867,"text":"审核:颜伟国编制:吴淑","node_type":"text","parent":2860,"children":[],"para_type":"text","pageno":155,"layout_index":19,"box":[321,646,173,32]}
- {"node_id":2868,"text":"\/","node_type":"head_tail","parent":2860,"children":[],"para_type":"head_tail","pageno":155,"layout_index":20,"box":[282,811,32,6]}
- {"node_id":2869,"text":"绰琪硅晶石","node_type":"head_tail","parent":2860,"children":[],"para_type":"head_tail","pageno":156,"layout_index":0,"box":[56,57,55,9]}
- {"node_id":2870,"text":"铸造经典","node_type":"text","parent":2860,"children":[],"para_type":"text","pageno":156,"layout_index":1,"box":[68,76,32,6]}
- {"node_id":2871,"text":"检验类别:普通送样","node_type":"text","parent":2860,"children":[],"para_type":"text","pageno":156,"layout_index":2,"box":[91,250,66,8]}
- {"node_id":2872,"text":"委托编号:TC22-190052","node_type":"text","parent":2860,"children":[],"para_type":"text","pageno":156,"layout_index":3,"box":[91,262,81,7]}
- {"node_id":2873,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":2860,"children":[],"para_type":"head_tail","pageno":156,"layout_index":4,"box":[431,78,126,9]}
- {"node_id":2874,"text":"国家建筑工程材料质量监督检验中心","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":156,"layout_index":5,"box":[187,200,226,14]}
- {"node_id":2875,"text":"检验检测报告","node_type":"title","parent":0,"children":[2876,2877,2878,2879,2880,2881,2882],"para_type":"title_1","pageno":156,"layout_index":6,"box":[245,222,107,14]}
- {"node_id":2876,"text":"报告编号:TC226-190065","node_type":"text","parent":2875,"children":[],"para_type":"text","pageno":156,"layout_index":7,"box":[422,249,86,10]}
- {"node_id":2877,"text":"第2页共3页","node_type":"text","parent":2875,"children":[],"para_type":"text","pageno":156,"layout_index":8,"box":[468,261,40,9]}
- {"node_id":2878,"text":[["JCT908-2013(2017)《人造石》检测结果汇总","JCT908-2013(2017)《人造石》检测结果汇总","JCT908-2013(2017)《人造石》检测结果汇总","JCT908-2013(2017)《人造石》检测结果汇总","JCT908-2013(2017)《人造石》检测结果汇总","JCT908-2013(2017)《人造石》检测结果汇总"],["序号","检测项目","检测项目","标准值","检测结果","单项判定"],["1","边长允许偏差,mm","边长允许偏差,mm","-1.5~0","-1.3~-1.1","合格"],["2","厚度允许偏差,mm","厚度允许偏差,mm","-1.8~+1.8","-1.6~-1.4","合格"],["3","角度公差,mm\/m","角度公差,mm\/m","≤0.60","0.50","合格"],["4","平整度,mm\/m","平整度,mm\/m","≤0.40","0.25","合格"],["5","边缘不直度,mm\/m","边缘不直度,mm\/m","≤1.5","0.7","合格"],["6","外观质量","色调花纹","同一批产品的色调应基本调和,花纹应基本一致,不得有明显色差","同一批产品的色调基本调和,花纹基本一致,无明显色差","合格"],["6","外观质量","缺棱","长度不超过10mm,宽度不超过2mm(长度不大于5mm,宽度不大于1mm不计),周边每米长允许个数为≤1个","0个","合格"],["6","外观质量","缺角","面积不超过5mm×2mm(面积小于2mm×2mm不计),每块板允许个数为≤2个","0个","合格"],["6","外观质量","气孔","最大直径不大于1.5mm(小于0.3mm的不计),板材正面每平方米允许个数为≤1个","0个","合格"],["6","外观质量","裂纹","不允许出现,但不包括填料中石粒(块)自身带来的裂纹和仿天然石裂纹","无裂纹","合格"],["7","莫氏硬度","莫氏硬度","≥3","4","合格"],["8","吸水率,%","吸水率,%","<0.35","0.28","合格"],["9","落球冲击","落球冲击","225g钢球800mm高度自由落下,样品不破损","225g钢球800mm高度自由落下,样品不破损","合格"],["10","弯曲强度,MPa","弯曲强度,MPa","≥15","16","合格"],["11","压缩强度,MPa","压缩强度,MPa",">80","82","合格"],["12","耐磨性,mm3","耐磨性,mm3","≤500","91","合格"],[""]],"node_type":"table","parent":2875,"children":[],"para_type":"table","pageno":156,"layout_index":9,"box":[87,272,424,426]}
- {"node_id":2879,"text":"一一","node_type":"head_tail","parent":2875,"children":[],"para_type":"head_tail","pageno":156,"layout_index":10,"box":[283,813,31,4]}
- {"node_id":2880,"text":"绰琪硅晶石","node_type":"head_tail","parent":2875,"children":[],"para_type":"head_tail","pageno":157,"layout_index":0,"box":[56,57,55,9]}
- {"node_id":2881,"text":"铸造经典","node_type":"text","parent":2875,"children":[],"para_type":"text","pageno":157,"layout_index":1,"box":[68,76,32,6]}
- {"node_id":2882,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":2875,"children":[],"para_type":"head_tail","pageno":157,"layout_index":2,"box":[431,78,125,9]}
- {"node_id":2883,"text":"国家建筑工程材料质量监督检验中心","node_type":"title","parent":0,"children":[2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899],"para_type":"title_1","pageno":157,"layout_index":3,"box":[194,202,222,14]}
- {"node_id":2884,"text":"检验检测报告","node_type":"text","parent":2883,"children":[],"para_type":"text","pageno":157,"layout_index":4,"box":[252,219,104,15]}
- {"node_id":2885,"text":"检验类别:普通送样","node_type":"text","parent":2883,"children":[],"para_type":"text","pageno":157,"layout_index":5,"box":[100,233,65,10]}
- {"node_id":2886,"text":"委托编号:TC22-190052","node_type":"text","parent":2883,"children":[],"para_type":"text","pageno":157,"layout_index":6,"box":[100,245,80,10]}
- {"node_id":2887,"text":"报告编号:TC226-190065","node_type":"text","parent":2883,"children":[],"para_type":"text","pageno":157,"layout_index":7,"box":[426,234,85,10]}
- {"node_id":2888,"text":"第3页共3页","node_type":"text","parent":2883,"children":[],"para_type":"text","pageno":157,"layout_index":8,"box":[471,246,40,9]}
- {"node_id":2889,"text":[["JCT908-2013(2017)《人造石》检测结果汇总","JCT908-2013(2017)《人造石》检测结果汇总","JCT908-2013(2017)《人造石》检测结果汇总","JCT908-2013(2017)《人造石》检测结果汇总","JCT908-2013(2017)《人造石》检测结果汇总","JCT908-2013(2017)《人造石》检测结果汇总"],["序号","检测项目","检测项目","标准值","检测结果","单项判定"],["13","线性热膨胀系数,105C","线性热膨胀系数,105C","≤4.0","3.9","合格"],["14","光泽度","光泽度",">70","71","合格"],["15","放射性","内照射指数","Ra≤1.0","0.1","合格"],["15","放射性","外照射指数","1.3","0.2","合格"],["说明","说明","1、试验方法:JC\/T908-2013(2017)《人造石》(序号1~9、序号11~13);GB\/T3810.4-2016《陶瓷砖试验方法第4部分:断裂模数和破坏强度的测定》(序号10);GB\/T13891-2008《建筑饰面材料镜向光泽度测定方法》(序号14);GB6566-2010《建筑材料放射性核素限量》(序号15)。","1、试验方法:JC\/T908-2013(2017)《人造石》(序号1~9、序号11~13);GB\/T3810.4-2016《陶瓷砖试验方法第4部分:断裂模数和破坏强度的测定》(序号10);GB\/T13891-2008《建筑饰面材料镜向光泽度测定方法》(序号14);GB6566-2010《建筑材料放射性核素限量》(序号15)。","1、试验方法:JC\/T908-2013(2017)《人造石》(序号1~9、序号11~13);GB\/T3810.4-2016《陶瓷砖试验方法第4部分:断裂模数和破坏强度的测定》(序号10);GB\/T13891-2008《建筑饰面材料镜向光泽度测定方法》(序号14);GB6566-2010《建筑材料放射性核素限量》(序号15)。","1、试验方法:JC\/T908-2013(2017)《人造石》(序号1~9、序号11~13);GB\/T3810.4-2016《陶瓷砖试验方法第4部分:断裂模数和破坏强度的测定》(序号10);GB\/T13891-2008《建筑饰面材料镜向光泽度测定方法》(序号14);GB6566-2010《建筑材料放射性核素限量》(序号15)。"],[""]],"node_type":"table","parent":2883,"children":[],"para_type":"table","pageno":157,"layout_index":9,"box":[97,256,415,151]}
- {"node_id":2890,"text":"(本报告内容结束)","node_type":"text","parent":2883,"children":[],"para_type":"text","pageno":157,"layout_index":10,"box":[445,421,60,9]}
- {"node_id":2891,"text":"联系方式:上海市申富路568号(邮编:201108)021-54428584\/54425584","node_type":"text","parent":2883,"children":[],"para_type":"text","pageno":157,"layout_index":11,"box":[101,443,241,9]}
- {"node_id":2892,"text":"BG607-2017","node_type":"text","parent":2883,"children":[],"para_type":"text","pageno":157,"layout_index":12,"box":[467,444,41,7]}
- {"node_id":2893,"text":"声明:1、以上检验结果委托单位如有异议,请在报告收到之日起十五日内提出","node_type":"text","parent":2883,"children":[],"para_type":"text","pageno":157,"layout_index":13,"box":[101,453,257,10]}
- {"node_id":2894,"text":"2、报告未经本机构同意,不得部分复制本报告。","node_type":"text","parent":2883,"children":[],"para_type":"text","pageno":157,"layout_index":14,"box":[137,465,145,7]}
- {"node_id":2895,"text":"3、本机构不负责对委托方所提供样品相关信息及企业信息真实性的证实","node_type":"text","parent":2883,"children":[],"para_type":"text","pageno":157,"layout_index":15,"box":[137,475,221,7]}
- {"node_id":2896,"text":"4、送样检验结果仅对来样负责。","node_type":"text","parent":2883,"children":[],"para_type":"text","pageno":157,"layout_index":16,"box":[137,486,97,7]}
- {"node_id":2897,"text":"13\/13","node_type":"head_tail","parent":2883,"children":[],"para_type":"head_tail","pageno":157,"layout_index":17,"box":[282,810,32,6]}
- {"node_id":2898,"text":"SG—024","node_type":"text","parent":2883,"children":[],"para_type":"text","pageno":158,"layout_index":0,"box":[484,40,41,9]}
- {"node_id":2899,"text":"ZAJD ","node_type":"text","parent":2883,"children":[],"para_type":"text","pageno":158,"layout_index":1,"box":[496,72,23,7]}
- {"node_id":2900,"text":"硅晶石地坪分项工程质量验收记录","node_type":"title","parent":0,"children":[2901,2902,2903,2904,2905,2906],"para_type":"title_1","pageno":158,"layout_index":2,"box":[180,93,211,17]}
- {"node_id":2901,"text":[["工程名称","工程名称","光伏硅材料制造技改项目(二期高纯硅项目)","光伏硅材料制造技改项目(二期高纯硅项目)","结构类型","结构类型","结构类型","硅晶石地坪","硅晶石地坪","检验批数","检验批数","检验批数"],["施工单位","施工单位","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","项目负责人","项目负责人","项目负责人","白双龙","白双龙","项目技术负责人","项目技术负责人","项目技术负责人","冯兴米"],["分包单位","分包单位","","","分包单位负责人","分包单位负责人","分包单位负责人","","","分包项目负责人","分包项目负责人","分包项目负责人"],["序号","检验批部位、区段","检验批部位、区段","检验批部位、区段","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","监理(建设)单位验收记录","监理(建设)单位验收记录","监理(建设)单位验收记录","监理(建设)单位验收记录"],["1","805A一层A区","805A一层A区","805A一层A区"],["23","805A一层C区","805A一层C区","805A一层C区","","","","","","合格","合格","合格","合格"],["23"],["4"],["5"],["6"],["7"],["8"],["9"],["10"],["11"],["12"],["13"],["14"],["15"],["16"],["17"],["18"],["19"],["20"],[""],["施工单位检查评定结果","施工单位检查评定结果","施工单位检查评定结果","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人):南入202212月日","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人):南入202212月日","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人):南入202212月日","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人):南入202212月日","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人):南入202212月日","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人):南入202212月日","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人):南入202212月日","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人):南入202212月日","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人):南入202212月日","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人):南入202212月日"],["监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","评定合格同意验收监理工程师(建设单位项目技术负责人)罗立彬7022年月12","评定合格同意验收监理工程师(建设单位项目技术负责人)罗立彬7022年月12","评定合格同意验收监理工程师(建设单位项目技术负责人)罗立彬7022年月12","评定合格同意验收监理工程师(建设单位项目技术负责人)罗立彬7022年月12","评定合格同意验收监理工程师(建设单位项目技术负责人)罗立彬7022年月12","评定合格同意验收监理工程师(建设单位项目技术负责人)罗立彬7022年月12","评定合格同意验收监理工程师(建设单位项目技术负责人)罗立彬7022年月12","评定合格同意验收监理工程师(建设单位项目技术负责人)罗立彬7022年月12","评定合格同意验收监理工程师(建设单位项目技术负责人)罗立彬7022年月12","评定合格同意验收监理工程师(建设单位项目技术负责人)罗立彬7022年月12"],["监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","评定合格同意验收监理工程师(建设单位项目技术负责人)罗立彬7022年月12","评定合格同意验收监理工程师(建设单位项目技术负责人)罗立彬7022年月12","评定合格同意验收监理工程师(建设单位项目技术负责人)罗立彬7022年月12","评定合格同意验收监理工程师(建设单位项目技术负责人)罗立彬7022年月12","评定合格同意验收监理工程师(建设单位项目技术负责人)罗立彬7022年月12","评定合格同意验收监理工程师(建设单位项目技术负责人)罗立彬7022年月12","评定合格同意验收监理工程师(建设单位项目技术负责人)罗立彬7022年月12","评定合格同意验收监理工程师(建设单位项目技术负责人)罗立彬7022年月12","评定合格同意验收监理工程师(建设单位项目技术负责人)罗立彬7022年月12","评定合格同意验收监理工程师(建设单位项目技术负责人)罗立彬7022年月12"],[""]],"node_type":"table","parent":2900,"children":[],"para_type":"table","pageno":158,"layout_index":3,"box":[40,136,512,628]}
- {"node_id":2902,"text":"合格合格","node_type":"text","parent":2900,"children":[],"para_type":"text","pageno":158,"layout_index":4,"box":[242,212,49,46]}
- {"node_id":2903,"text":"格","node_type":"text","parent":2900,"children":[],"para_type":"text","pageno":158,"layout_index":5,"box":[395,206,51,32]}
- {"node_id":2904,"text":"四川省建设厅制262","node_type":"text","parent":2900,"children":[],"para_type":"text","pageno":158,"layout_index":6,"box":[452,778,67,24]}
- {"node_id":2905,"text":"SG-024","node_type":"text","parent":2900,"children":[],"para_type":"text","pageno":159,"layout_index":0,"box":[484,42,42,10]}
- {"node_id":2906,"text":"ZAJD ","node_type":"text","parent":2900,"children":[],"para_type":"text","pageno":159,"layout_index":1,"box":[497,72,23,7]}
- {"node_id":2907,"text":"硅晶石地坪分项工程质量验收记录","node_type":"title","parent":0,"children":[2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918],"para_type":"title_1","pageno":159,"layout_index":2,"box":[180,93,212,16]}
- {"node_id":2908,"text":[["工程名称","工程名称","光伏硅材料制造技改项目(二期高纯硅项目)","光伏硅材料制造技改项目(二期高纯硅项目)","光伏硅材料制造技改项目(二期高纯硅项目)","光伏硅材料制造技改项目(二期高纯硅项目)","光伏硅材料制造技改项目(二期高纯硅项目)","结构类型","结构类型","硅晶石地坪","硅晶石地坪","硅晶石地坪","检验批数","检验批数"],["施工单位","施工单位","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","项目负责人","项目负责人","白双龙","白双龙","白双龙","项目技术负责人","项目技术负责人","冯兴米","冯兴米"],["分包单位","分包单位","","","","","","分包单位负责人","分包单位负责人","","","","分包项目负责人","分包项目负责人"],["序号","检验批部位、区段","检验批部位、区段","检验批部位、区段","检验批部位、区段","检验批部位、区段","检验批部位、区段","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","监理(建设)单位验收记录","监理(建设)单位验收记录","监理(建设)单位验收记录","监理(建设)单位验收记录"],["1","805A二层a区","805A二层a区","805A二层a区","805A二层a区","805A二层a区","805A二层a区"],["2","805A二层6区","805A二层6区","805A二层6区","805A二层6区"],["3","805A二层C区","805A二层C区","805A二层C区","805A二层C区","805A二层C区","805A二层C区"],["4"],["5"],["6"],["7"],["8"],["9"],["10"],["11"],["12"],["13"],["14"],["15"],["16"],["17"],["18"],["19"],["20"],[""],["施工单位检查评定结果","施工单位检查评定结果","施工单位检查评定结果","施工单位检查评定结果","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴米注册建造师(质量技术负责人):俞卫卫202月12","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴米注册建造师(质量技术负责人):俞卫卫202月12","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴米注册建造师(质量技术负责人):俞卫卫202月12","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴米注册建造师(质量技术负责人):俞卫卫202月12","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴米注册建造师(质量技术负责人):俞卫卫202月12","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴米注册建造师(质量技术负责人):俞卫卫202月12","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴米注册建造师(质量技术负责人):俞卫卫202月12","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴米注册建造师(质量技术负责人):俞卫卫202月12","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴米注册建造师(质量技术负责人):俞卫卫202月12","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴米注册建造师(质量技术负责人):俞卫卫202月12","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴米注册建造师(质量技术负责人):俞卫卫202月12","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴米注册建造师(质量技术负责人):俞卫卫202月12"],["监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日"],["监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日"],["监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年1月12日"],[""],[""]],"node_type":"table","parent":2907,"children":[],"para_type":"table","pageno":159,"layout_index":3,"box":[44,135,496,633]}
- {"node_id":2909,"text":"格","node_type":"text","parent":2907,"children":[],"para_type":"text","pageno":159,"layout_index":4,"box":[243,210,46,29]}
- {"node_id":2910,"text":"会格","node_type":"text","parent":2907,"children":[],"para_type":"text","pageno":159,"layout_index":5,"box":[408,210,47,27]}
- {"node_id":2911,"text":"格","node_type":"text","parent":2907,"children":[],"para_type":"text","pageno":159,"layout_index":6,"box":[244,235,46,23]}
- {"node_id":2912,"text":"合格","node_type":"text","parent":2907,"children":[],"para_type":"text","pageno":159,"layout_index":7,"box":[409,232,50,26]}
- {"node_id":2913,"text":"合格","node_type":"text","parent":2907,"children":[],"para_type":"text","pageno":159,"layout_index":8,"box":[244,256,56,22]}
- {"node_id":2914,"text":"合格","node_type":"text","parent":2907,"children":[],"para_type":"text","pageno":159,"layout_index":9,"box":[408,253,57,24]}
- {"node_id":2915,"text":"四川省建设厅制","node_type":"text","parent":2907,"children":[],"para_type":"text","pageno":159,"layout_index":10,"box":[450,779,66,11]}
- {"node_id":2916,"text":"263","node_type":"text","parent":2907,"children":[],"para_type":"text","pageno":159,"layout_index":11,"box":[425,788,30,20]}
- {"node_id":2917,"text":"SG-024","node_type":"text","parent":2907,"children":[],"para_type":"text","pageno":160,"layout_index":0,"box":[488,41,42,9]}
- {"node_id":2918,"text":"ZAJD ","node_type":"text","parent":2907,"children":[],"para_type":"text","pageno":160,"layout_index":1,"box":[501,72,23,7]}
- {"node_id":2919,"text":"硅晶石地坪分项工程质量验收记录","node_type":"title","parent":0,"children":[2920,2921,2922,2923,2924,2925,2926,2927,2928],"para_type":"title_1","pageno":160,"layout_index":2,"box":[184,93,212,15]}
- {"node_id":2920,"text":[["工程名称","工程名称","工程名称","光伏硅材料制造技改项目(二期高纯硅项目)","光伏硅材料制造技改项目(二期高纯硅项目)","结构类型","结构类型","结构类型","结构类型","硅晶石地坪","硅晶石地坪","检验批数","检验批数","检验批数"],["施工单位","施工单位","施工单位","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","项目负责人","项目负责人","项目负责人","项目负责人","白双龙","白双龙","项目技术负责人","项目技术负责人","项目技术负责人","冯兴米","冯兴米","冯兴米"],["分包单位","分包单位","分包单位","","","分包单位负责人","分包单位负责人","分包单位负责人","分包单位负责人","","","分包项目负责人","分包项目负责人","分包项目负责人"],["序号","检验批部位、区段","检验批部位、区段","检验批部位、区段","检验批部位、区段","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","监理(建设)单位验收记录","监理(建设)单位验收记录","监理(建设)单位验收记录","监理(建设)单位验收记录","监理(建设)单位验收记录","监理(建设)单位验收记录"],["1","605A三层a区","605A三层a区","605A三层a区","605A三层a区","今格","今格","今格","今格","今格","今格"],["2","825A三层b区","825A三层b区","825A三层b区","825A三层b区","","","","","","","会格","会格"],["3","805A三层C区.","805A三层C区.","805A三层C区.","805A三层C区."],["4"],["5"],["6"],["7"],["8"],["9"],["10"],["11"],["12"],["13"],["14"],["15"],["16"],["17"],["18"],["19"],["20"],[""],["施工单位检查评定结果","施工单位检查评定结果","施工单位检查评定结果","施工单位检查评定结果","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日"],["施工单位检查评定结果","施工单位检查评定结果","施工单位检查评定结果","施工单位检查评定结果","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日","符合设计及规范要求.分项工程合格.项目专业质量检查员:冯兴来注册建造师(质量技术负责人)俞卫卫202月12日"],["监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2"],["监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2","评定合格.同意验收监理工程师(建设单位项目技术负责人):罗之彬2022年月2"],[""],[""]],"node_type":"table","parent":2919,"children":[],"para_type":"table","pageno":160,"layout_index":3,"box":[48,135,496,636]}
- {"node_id":2921,"text":"会格","node_type":"text","parent":2919,"children":[],"para_type":"text","pageno":160,"layout_index":4,"box":[398,210,47,27]}
- {"node_id":2922,"text":"会格","node_type":"text","parent":2919,"children":[],"para_type":"text","pageno":160,"layout_index":5,"box":[242,234,45,24]}
- {"node_id":2923,"text":"合格","node_type":"text","parent":2919,"children":[],"para_type":"text","pageno":160,"layout_index":6,"box":[242,255,52,23]}
- {"node_id":2924,"text":"合格","node_type":"text","parent":2919,"children":[],"para_type":"text","pageno":160,"layout_index":7,"box":[403,252,45,28]}
- {"node_id":2925,"text":"四川省建设厅制","node_type":"text","parent":2919,"children":[],"para_type":"text","pageno":160,"layout_index":8,"box":[453,778,67,9]}
- {"node_id":2926,"text":"!264","node_type":"text","parent":2919,"children":[],"para_type":"text","pageno":160,"layout_index":9,"box":[407,786,67,19]}
- {"node_id":2927,"text":"SG—024","node_type":"text","parent":2919,"children":[],"para_type":"text","pageno":161,"layout_index":0,"box":[486,42,41,9]}
- {"node_id":2928,"text":"ZAJD ","node_type":"text","parent":2919,"children":[],"para_type":"text","pageno":161,"layout_index":1,"box":[498,72,23,7]}
- {"node_id":2929,"text":"硅晶石地坪分项工程质量验收记录","node_type":"title","parent":0,"children":[2930,2931,2932,2933,2934],"para_type":"title_1","pageno":161,"layout_index":2,"box":[181,93,212,16]}
- {"node_id":2930,"text":[["硅晶石地坪","硅晶石地坪","检验批数","检验批数"],["工程名称","工程名称","光伏硅材料制造技改项目(二期高纯硅项目)","光伏硅材料制造技改项目(二期高纯硅项目)","结构类型","结构类型","结构类型","硅晶石地坪","硅晶石地坪","检验批数","检验批数"],["施工单位","施工单位","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","项目负责人","项目负责人","项目负责人","白双龙","白双龙","项目技术负责人","项目技术负责人","冯兴米"],["分包单位","分包单位","","","分包单位负责人","分包单位负责人","分包单位负责人","","","分包项目负责人","分包项目负责人"],["序号","检验批部位、区段","检验批部位、区段","检验批部位、区段","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","监理(建设)单位验收记录","监理(建设)单位验收记录","监理(建设)单位验收记录"],["1","805B三层","805B三层","805B三层","合格","合格","合格","合格","合格","合格","合格","合格"],["2"],["3"],["4"],["5"],["6"],["7"],["8"],["9"],["10"],["11"],["12"],["13"],["14"],["15"],["16"],["17"],["18"],["19"],["20"],[""],["施工单位检查评定结果","施工单位检查评定结果","施工单位检查评定结果","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴米注册建造师(质量技术负责人)俞卫卫2021月12","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴米注册建造师(质量技术负责人)俞卫卫2021月12","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴米注册建造师(质量技术负责人)俞卫卫2021月12","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴米注册建造师(质量技术负责人)俞卫卫2021月12","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴米注册建造师(质量技术负责人)俞卫卫2021月12","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴米注册建造师(质量技术负责人)俞卫卫2021月12","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴米注册建造师(质量技术负责人)俞卫卫2021月12","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴米注册建造师(质量技术负责人)俞卫卫2021月12","符合设计及规范要求,分项工程合格.项目专业质量检查员:冯兴米注册建造师(质量技术负责人)俞卫卫2021月12"],["监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年月12日","评定合格.同意验收监理工程师(建设单位项目技术负责人)罗彬2022年月12日"],[""],[""]],"node_type":"table","parent":2929,"children":[],"para_type":"table","pageno":161,"layout_index":3,"box":[44,135,497,634]}
- {"node_id":2931,"text":"四川省建设厅制","node_type":"text","parent":2929,"children":[],"para_type":"text","pageno":161,"layout_index":4,"box":[449,779,67,11]}
- {"node_id":2932,"text":"265","node_type":"text","parent":2929,"children":[],"para_type":"text","pageno":161,"layout_index":5,"box":[440,792,32,19]}
- {"node_id":2933,"text":"SG-024","node_type":"text","parent":2929,"children":[],"para_type":"text","pageno":162,"layout_index":0,"box":[488,42,42,9]}
- {"node_id":2934,"text":"ZAJD ","node_type":"text","parent":2929,"children":[],"para_type":"text","pageno":162,"layout_index":1,"box":[501,72,23,8]}
- {"node_id":2935,"text":"硅晶石地坪分项工程质量验收记录","node_type":"title","parent":0,"children":[2936,2937,2938,2939,2940,2941,2942,2943,2944],"para_type":"title_1","pageno":162,"layout_index":2,"box":[184,93,211,16]}
- {"node_id":2936,"text":[["工程名称","工程名称","工程名称","光伏硅材料制造技改项目(二期高纯硅项目)","光伏硅材料制造技改项目(二期高纯硅项目)","光伏硅材料制造技改项目(二期高纯硅项目)","结构类型","结构类型","结构类型","结构类型","硅晶石地坪","硅晶石地坪","硅晶石地坪","检验批数","检验批数","检验批数"],["施工单位","施工单位","施工单位","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","项目负责人","项目负责人","项目负责人","项目负责人","白双龙","白双龙","白双龙","项目技术负责人","项目技术负责人","项目技术负责人","冯兴米"],["分包单位","分包单位","分包单位","","","","分包单位负责人","分包单位负责人","分包单位负责人","分包单位负责人","","","","分包项目负责人","分包项目负责人","分包项目负责人"],["序号","检验批部位、区段","检验批部位、区段","检验批部位、区段","检验批部位、区段","检验批部位、区段","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","监理(建设)单位验收记录","监理(建设)单位验收记录","监理(建设)单位验收记录","监理(建设)单位验收记录"],["1","804A三层a区","804A三层a区","804A三层a区","804A三层a区","804A三层a区"],["2","804A三层b区","804A三层b区","804A三层b区","804A三层b区","804A三层b区","会格","会格","会格","会格","会格","会格","会格","格","格","格","格"],["3","804A三层C区","804A三层C区","804A三层C区","804A三层C区","804A三层C区"],["4"],["5"],["6"],["7"],["8"],["9"],["10"],["11"],["12"],["13"],["14"],["15"],["16"],["17"],["18"],["19"],["20"],[""],["施工单位检查评定结果","施工单位检查评定结果","施工单位检查评定结果","施工单位检查评定结果","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):工卫2021月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):工卫2021月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):工卫2021月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):工卫2021月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):工卫2021月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):工卫2021月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):工卫2021月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):工卫2021月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):工卫2021月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):工卫2021月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):工卫2021月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):工卫2021月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):工卫2021月13日"],["监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13"],["监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13"],["监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13","评定合格同意验收监理工程师(建设单位项目技术负责人)罗三彬2022年1月13"],[""],[""]],"node_type":"table","parent":2935,"children":[],"para_type":"table","pageno":162,"layout_index":3,"box":[47,135,496,637]}
- {"node_id":2937,"text":"会格","node_type":"text","parent":2935,"children":[],"para_type":"text","pageno":162,"layout_index":4,"box":[232,209,48,30]}
- {"node_id":2938,"text":"今格","node_type":"text","parent":2935,"children":[],"para_type":"text","pageno":162,"layout_index":5,"box":[398,209,50,27]}
- {"node_id":2939,"text":"格","node_type":"text","parent":2935,"children":[],"para_type":"text","pageno":162,"layout_index":6,"box":[231,253,59,29]}
- {"node_id":2940,"text":"全格","node_type":"text","parent":2935,"children":[],"para_type":"text","pageno":162,"layout_index":7,"box":[398,251,66,27]}
- {"node_id":2941,"text":"四川省建设厅制","node_type":"text","parent":2935,"children":[],"para_type":"text","pageno":162,"layout_index":8,"box":[452,779,66,9]}
- {"node_id":2942,"text":"65","node_type":"head_tail","parent":2935,"children":[],"para_type":"head_tail","pageno":162,"layout_index":9,"box":[435,786,37,18]}
- {"node_id":2943,"text":"SG-024","node_type":"text","parent":2935,"children":[],"para_type":"text","pageno":163,"layout_index":0,"box":[487,42,41,9]}
- {"node_id":2944,"text":"ZAJD ","node_type":"text","parent":2935,"children":[],"para_type":"text","pageno":163,"layout_index":1,"box":[499,72,23,7]}
- {"node_id":2945,"text":"硅晶石地坪分项工程质量验收记录","node_type":"title","parent":0,"children":[2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956],"para_type":"title_1","pageno":163,"layout_index":2,"box":[182,93,212,15]}
- {"node_id":2946,"text":[["工程名称","工程名称","光伏硅材料制造技改项目(二期高纯硅项目)","光伏硅材料制造技改项目(二期高纯硅项目)","结构类型","结构类型","结构类型","硅晶石地坪","硅晶石地坪","硅晶石地坪","检验批数","检验批数"],["施工单位","施工单位","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","项目负责人","项目负责人","项目负责人","白双龙","白双龙","白双龙","项目技术负责人","项目技术负责人","冯兴米"],["分包单位","分包单位","","","分包单位负责人","分包单位负责人","分包单位负责人","","","","分包项目负责人","分包项目负责人"],["序号","检验批部位、区段","检验批部位、区段","检验批部位、区段","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","监理(建设)单位验收记录","监理(建设)单位验收记录","监理(建设)单位验收记录"],["1","804B三层a区","804B三层a区","804B三层a区"],["2","804B三层b区","804B三层b区","804B三层b区"],["3","804B三层C区","804B三层C区","804B三层C区"],["4"],["5"],["6"],["7"],["8"],["9"],["10"],["11"],["12"],["13"],["14"],["15"],["16"],["17"],["18"],["19"],["20"],[""],["施工单位检查评定结果","施工单位检查评定结果","施工单位检查评定结果","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):卫卫702月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):卫卫702月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):卫卫702月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):卫卫702月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):卫卫702月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):卫卫702月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):卫卫702月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):卫卫702月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):卫卫702月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):卫卫702月13日"],["施工单位检查评定结果","施工单位检查评定结果","施工单位检查评定结果","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):卫卫702月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):卫卫702月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):卫卫702月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):卫卫702月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):卫卫702月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):卫卫702月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):卫卫702月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):卫卫702月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):卫卫702月13日","符合设计及规范要求分项工程合格项目专业质量检查员:冯兴来注册建造师(质量技术负责人):卫卫702月13日"],["监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","评定合格.同意验收:监理工程师(建设单位项目技术负责人)罗彬2022年月13","评定合格.同意验收:监理工程师(建设单位项目技术负责人)罗彬2022年月13","评定合格.同意验收:监理工程师(建设单位项目技术负责人)罗彬2022年月13","评定合格.同意验收:监理工程师(建设单位项目技术负责人)罗彬2022年月13","评定合格.同意验收:监理工程师(建设单位项目技术负责人)罗彬2022年月13","评定合格.同意验收:监理工程师(建设单位项目技术负责人)罗彬2022年月13","评定合格.同意验收:监理工程师(建设单位项目技术负责人)罗彬2022年月13","评定合格.同意验收:监理工程师(建设单位项目技术负责人)罗彬2022年月13","评定合格.同意验收:监理工程师(建设单位项目技术负责人)罗彬2022年月13","评定合格.同意验收:监理工程师(建设单位项目技术负责人)罗彬2022年月13"],["监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","评定合格.同意验收:监理工程师(建设单位项目技术负责人)罗彬2022年月13","评定合格.同意验收:监理工程师(建设单位项目技术负责人)罗彬2022年月13","评定合格.同意验收:监理工程师(建设单位项目技术负责人)罗彬2022年月13","评定合格.同意验收:监理工程师(建设单位项目技术负责人)罗彬2022年月13","评定合格.同意验收:监理工程师(建设单位项目技术负责人)罗彬2022年月13","评定合格.同意验收:监理工程师(建设单位项目技术负责人)罗彬2022年月13","评定合格.同意验收:监理工程师(建设单位项目技术负责人)罗彬2022年月13","评定合格.同意验收:监理工程师(建设单位项目技术负责人)罗彬2022年月13","评定合格.同意验收:监理工程师(建设单位项目技术负责人)罗彬2022年月13","评定合格.同意验收:监理工程师(建设单位项目技术负责人)罗彬2022年月13"],[""]],"node_type":"table","parent":2945,"children":[],"para_type":"table","pageno":163,"layout_index":3,"box":[43,134,496,630]}
- {"node_id":2947,"text":"格","node_type":"text","parent":2945,"children":[],"para_type":"text","pageno":163,"layout_index":4,"box":[264,208,16,29]}
- {"node_id":2948,"text":"格","node_type":"text","parent":2945,"children":[],"para_type":"text","pageno":163,"layout_index":5,"box":[402,207,42,28]}
- {"node_id":2949,"text":"会格","node_type":"text","parent":2945,"children":[],"para_type":"text","pageno":163,"layout_index":6,"box":[235,233,44,24]}
- {"node_id":2950,"text":"今格","node_type":"text","parent":2945,"children":[],"para_type":"text","pageno":163,"layout_index":7,"box":[401,231,47,28]}
- {"node_id":2951,"text":"合格","node_type":"text","parent":2945,"children":[],"para_type":"text","pageno":163,"layout_index":8,"box":[232,253,55,30]}
- {"node_id":2952,"text":"合格","node_type":"text","parent":2945,"children":[],"para_type":"text","pageno":163,"layout_index":9,"box":[402,253,53,25]}
- {"node_id":2953,"text":"四川省建设厅制","node_type":"text","parent":2945,"children":[],"para_type":"text","pageno":163,"layout_index":10,"box":[446,779,68,12]}
- {"node_id":2954,"text":"267","node_type":"text","parent":2945,"children":[],"para_type":"text","pageno":163,"layout_index":11,"box":[402,789,70,22]}
- {"node_id":2955,"text":"SG-024","node_type":"text","parent":2945,"children":[],"para_type":"text","pageno":164,"layout_index":0,"box":[488,41,42,10]}
- {"node_id":2956,"text":"ZAJD ","node_type":"text","parent":2945,"children":[],"para_type":"text","pageno":164,"layout_index":1,"box":[501,72,23,7]}
- {"node_id":2957,"text":"硅晶石地坪分项工程质量验收记录","node_type":"title","parent":0,"children":[2958,2959,2960,2961,2962,2963,2964,2965,2966,2967],"para_type":"title_1","pageno":164,"layout_index":2,"box":[184,93,212,15]}
- {"node_id":2958,"text":[["工程名称","工程名称","光伏硅材料制造技改项目(二期高纯硅项目)","光伏硅材料制造技改项目(二期高纯硅项目)","结构类型","结构类型","结构类型","结构类型","硅晶石地坪","硅晶石地坪","硅晶石地坪","检验批数","检验批数","检验批数"],["施工单位","施工单位","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","项目负责人","项目负责人","项目负责人","项目负责人","白双龙","白双龙","白双龙","项目技术负责人","项目技术负责人","项目技术负责人","冯兴米"],["分包单位","分包单位","","","分包单位负责人","分包单位负责人","分包单位负责人","分包单位负责人","","","","分包项目负责人","分包项目负责人","分包项目负责人"],["序号","检验批部位、区段","检验批部位、区段","检验批部位、区段","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","施工单位检查评定记录","监理(建设)单位验收记录","监理(建设)单位验收记录","监理(建设)单位验收记录","监理(建设)单位验收记录"],["1","804C三层a区","804C三层a区","804C三层a区"],["2","804C三层b区","804C三层b区","804C三层b区"],["3","804C三层C区","804C三层C区","804C三层C区","","","","","","","","合格","合格","合格","合格"],["4"],["5"],["6"],["7"],["8"],["9"],["10"],["11"],["12"],["13"],["14"],["15"],["16"],["17"],["18"],["19"],["20"],[""],["施工单位检查评定结果","施工单位检查评定结果","施工单位检查评定结果","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日"],["施工单位检查评定结果","施工单位检查评定结果","施工单位检查评定结果","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日"],["监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日"],["监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日","符合设计及规范要求,分项工程合格.项目专业质量检查员冯兴来注册建造师(质量技术负责人):俞卫卫202月13评定合格.同意验收监理工程师(建设单位项目技术负责人)罗之彬2022年1月13日"],[""],[""]],"node_type":"table","parent":2957,"children":[],"para_type":"table","pageno":164,"layout_index":3,"box":[46,135,496,636]}
- {"node_id":2959,"text":"今格","node_type":"text","parent":2957,"children":[],"para_type":"text","pageno":164,"layout_index":4,"box":[234,208,50,32]}
- {"node_id":2960,"text":"今格","node_type":"text","parent":2957,"children":[],"para_type":"text","pageno":164,"layout_index":5,"box":[410,207,50,29]}
- {"node_id":2961,"text":"会格","node_type":"text","parent":2957,"children":[],"para_type":"text","pageno":164,"layout_index":6,"box":[236,234,50,25]}
- {"node_id":2962,"text":"会格","node_type":"text","parent":2957,"children":[],"para_type":"text","pageno":164,"layout_index":7,"box":[410,232,49,24]}
- {"node_id":2963,"text":"全格","node_type":"text","parent":2957,"children":[],"para_type":"text","pageno":164,"layout_index":8,"box":[236,254,57,27]}
- {"node_id":2964,"text":"四川省建设厅制","node_type":"text","parent":2957,"children":[],"para_type":"text","pageno":164,"layout_index":9,"box":[450,779,67,10]}
- {"node_id":2965,"text":"268","node_type":"text","parent":2957,"children":[],"para_type":"text","pageno":164,"layout_index":10,"box":[409,790,77,22]}
- {"node_id":2966,"text":"SG-024","node_type":"text","parent":2957,"children":[],"para_type":"text","pageno":165,"layout_index":0,"box":[489,41,41,9]}
- {"node_id":2967,"text":"ZAJD ","node_type":"text","parent":2957,"children":[],"para_type":"text","pageno":165,"layout_index":1,"box":[501,72,23,7]}
- {"node_id":2968,"text":"硅晶石地坪分项工程质量验收记录","node_type":"title","parent":0,"children":[2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995],"para_type":"title_1","pageno":165,"layout_index":2,"box":[184,93,212,15]}
- {"node_id":2969,"text":"工程名称","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":3,"box":[61,142,35,9]}
- {"node_id":2970,"text":"光伏硅材料制造技改项目(二期高纯硅项目)","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":4,"box":[116,138,84,17]}
- {"node_id":2971,"text":"结构类型","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":5,"box":[230,141,37,9]}
- {"node_id":2972,"text":"硅晶石地坪.白双龙","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":6,"box":[290,135,71,34]}
- {"node_id":2973,"text":"检验批数","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":7,"box":[390,139,36,9]}
- {"node_id":2974,"text":"上海绰琪新型建材科技有限公司","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":8,"box":[117,157,83,18]}
- {"node_id":2975,"text":"项目负责人","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":9,"box":[226,160,45,9]}
- {"node_id":2976,"text":"项目技术负责人","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":10,"box":[376,158,64,10]}
- {"node_id":2977,"text":"冯兴米","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":11,"box":[480,158,27,9]}
- {"node_id":2978,"text":"施工单位","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":12,"box":[61,162,36,9]}
- {"node_id":2979,"text":"分包单位","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":13,"box":[61,182,35,9]}
- {"node_id":2980,"text":"分包单位负责人","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":14,"box":[217,181,63,9]}
- {"node_id":2981,"text":"分包项目负责人","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":15,"box":[377,179,63,10]}
- {"node_id":2982,"text":"检验批部位、区段","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":16,"box":[106,201,71,10]}
- {"node_id":2983,"text":"施工单位检查评定记录","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":17,"box":[244,200,90,9]}
- {"node_id":2984,"text":"监理(建设)单位验收记录","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":18,"box":[403,198,109,9]}
- {"node_id":2985,"text":"序号","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":19,"box":[52,202,17,9]}
- {"node_id":2986,"text":"1","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":20,"box":[58,222,6,9]}
- {"node_id":2987,"text":"805A与804A连廊","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":21,"box":[79,217,94,22]}
- {"node_id":2988,"text":"余格","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":22,"box":[248,209,49,30]}
- {"node_id":2989,"text":"格","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":23,"box":[403,205,47,34]}
- {"node_id":2990,"text":"2","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":24,"box":[58,243,4,8]}
- {"node_id":2991,"text":"805A与804B连廊","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":25,"box":[79,239,102,20]}
- {"node_id":2992,"text":"格","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":26,"box":[276,233,22,26]}
- {"node_id":2993,"text":"格","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":27,"box":[430,232,21,24]}
- {"node_id":2994,"text":"3","node_type":"text","parent":2968,"children":[],"para_type":"text","pageno":165,"layout_index":28,"box":[58,263,4,7]}
- {"node_id":2995,"text":"8.5A与804C连廊","node_type":"title","parent":2968,"children":[2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029],"para_type":"title_6","pageno":165,"layout_index":29,"box":[78,260,102,20]}
- {"node_id":2996,"text":"今格","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":30,"box":[247,253,53,28]}
- {"node_id":2997,"text":"格","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":31,"box":[431,251,23,27]}
- {"node_id":2998,"text":"4","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":32,"box":[58,283,6,8]}
- {"node_id":2999,"text":"805A与805B连廊","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":33,"box":[78,280,109,22]}
- {"node_id":3000,"text":"格","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":34,"box":[247,274,58,24]}
- {"node_id":3001,"text":"全格:","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":35,"box":[406,274,61,24]}
- {"node_id":3002,"text":"5","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":36,"box":[58,302,6,8]}
- {"node_id":3003,"text":"6","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":37,"box":[58,322,6,8]}
- {"node_id":3004,"text":"7","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":38,"box":[58,342,6,8]}
- {"node_id":3005,"text":"8","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":39,"box":[58,362,6,8]}
- {"node_id":3006,"text":"9","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":40,"box":[58,382,6,8]}
- {"node_id":3007,"text":"10","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":41,"box":[58,401,9,8]}
- {"node_id":3008,"text":"11","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":42,"box":[58,422,9,7]}
- {"node_id":3009,"text":"12","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":43,"box":[58,441,9,7]}
- {"node_id":3010,"text":"13","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":44,"box":[58,461,10,7]}
- {"node_id":3011,"text":"14","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":45,"box":[58,480,11,9]}
- {"node_id":3012,"text":"15","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":46,"box":[58,501,10,7]}
- {"node_id":3013,"text":"16","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":47,"box":[59,521,9,7]}
- {"node_id":3014,"text":"17","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":48,"box":[58,539,11,9]}
- {"node_id":3015,"text":"18","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":49,"box":[60,560,9,7]}
- {"node_id":3016,"text":"19","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":50,"box":[60,580,9,7]}
- {"node_id":3017,"text":"20","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":51,"box":[60,600,9,7]}
- {"node_id":3018,"text":"施工单位检查评定结果","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":52,"box":[67,657,54,18]}
- {"node_id":3019,"text":"符合设计及规范要求,分项工程合格","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":53,"box":[153,646,247,26]}
- {"node_id":3020,"text":"项目专业质量检查员冯兴来注册建造师(质量技术负责人)创卫卫202月B日","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":54,"box":[163,666,378,39]}
- {"node_id":3021,"text":"监理(建设)单位验收结论","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":55,"box":[60,723,70,17]}
- {"node_id":3022,"text":"评定合格、同意验收","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":56,"box":[170,708,172,33]}
- {"node_id":3023,"text":"监理工程师(建设单位项目技术负责人)","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":57,"box":[166,751,165,10]}
- {"node_id":3024,"text":"罗彬","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":58,"box":[328,733,66,41]}
- {"node_id":3025,"text":"2022年1月Be日","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":59,"box":[457,744,84,20]}
- {"node_id":3026,"text":"四川省建设厅制","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":60,"box":[453,779,67,10]}
- {"node_id":3027,"text":"269","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":165,"layout_index":61,"box":[454,790,33,19]}
- {"node_id":3028,"text":"C-075","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":166,"layout_index":0,"box":[501,50,25,9]}
- {"node_id":3029,"text":"整体面层铺设","node_type":"text","parent":2995,"children":[],"para_type":"text","pageno":166,"layout_index":1,"box":[138,87,94,14]}
- {"node_id":3030,"text":"分项工程质量验收记录","node_type":"title","parent":0,"children":[3031,3032,3033,3034,3035],"para_type":"title_1","pageno":166,"layout_index":2,"box":[282,84,157,17]}
- {"node_id":3031,"text":"C03-9-03-","node_type":"text","parent":3030,"children":[],"para_type":"text","pageno":166,"layout_index":3,"box":[434,107,46,9]}
- {"node_id":3032,"text":[["单位(子单位)工程名称","单位(子单位)工程名称","光伏硅材料制造项目(二期5万吨高纯晶硅项目)后处理(01805A)","光伏硅材料制造项目(二期5万吨高纯晶硅项目)后处理(01805A)","光伏硅材料制造项目(二期5万吨高纯晶硅项目)后处理(01805A)","光伏硅材料制造项目(二期5万吨高纯晶硅项目)后处理(01805A)","光伏硅材料制造项目(二期5万吨高纯晶硅项目)后处理(01805A)","分部(子分部)工程名称","分部(子分部)工程名称","建筑装饰装修(建筑地面)","建筑装饰装修(建筑地面)","建筑装饰装修(建筑地面)","建筑装饰装修(建筑地面)"],["分项工程数量1","分项工程数量1","","","","","","检验批数量2","检验批数量2"],["施工单位","施工单位","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","项目负责人","项目负责人","方海涛","项目技术负责人","项目技术负责人","胡居雷"],["分包单位","分包单位","","","","","","分包单位项目负责人","分包单位项目负责人","","分包内容","分包内容"],["序号","检验批名称","检验批名称","检验批名称","检验批容量","部位\/区段","部位\/区段","部位\/区段","施工单位检查结果","施工单位检查结果","施工单位检查结果","监理单位验收意见","监理单位验收意见"],["1","水磨石面层","水磨石面层","水磨石面层","无防水要求:17间","后处理三层","后处理三层","后处理三层","主控项目全部符合要求,一般项目满足规范要求,本检验批符合要求","主控项目全部符合要求,一般项目满足规范要求,本检验批符合要求","主控项目全部符合要求,一般项目满足规范要求,本检验批符合要求"],["2","水磨石面层","水磨石面层","水磨石面层","无防水要求:14间","后处理二层","后处理二层","后处理二层","主控项目全部符合要求,一般项目满足规范要求,本检验批符合要求","主控项目全部符合要求,一般项目满足规范要求,本检验批符合要求","主控项目全部符合要求,一般项目满足规范要求,本检验批符合要求"],[""],[""],[""],[""],[""],[""],[""],[""],[""],[""],[""],[""],["说明:","说明:","说明:","说明:","说明:","说明:","说明:","说明:","说明:","说明:","说明:","说明:","说明:"],["施工单位检查结果","施工单位检查结果","施工单位检查结果","合格项目专业技术负责胡居雪2022年6月30日","合格项目专业技术负责胡居雪2022年6月30日","合格项目专业技术负责胡居雪2022年6月30日","合格项目专业技术负责胡居雪2022年6月30日","合格项目专业技术负责胡居雪2022年6月30日","合格项目专业技术负责胡居雪2022年6月30日","合格项目专业技术负责胡居雪2022年6月30日","合格项目专业技术负责胡居雪2022年6月30日","合格项目专业技术负责胡居雪2022年6月30日","合格项目专业技术负责胡居雪2022年6月30日"],["监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日"],["监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日"],["监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日","合格专业监理工程师:(建设单位项目专业技术负责人)陈少刚2022年6月30日"],[""]],"node_type":"table","parent":3030,"children":[],"para_type":"table","pageno":166,"layout_index":4,"box":[63,122,469,648]}
- {"node_id":3033,"text":"筑业软件:4853485057505655","node_type":"text","parent":3030,"children":[],"para_type":"text","pageno":166,"layout_index":5,"box":[64,788,124,9]}
- {"node_id":3034,"text":"C-075","node_type":"text","parent":3030,"children":[],"para_type":"text","pageno":167,"layout_index":0,"box":[501,51,26,9]}
- {"node_id":3035,"text":"整体面层铺设","node_type":"text","parent":3030,"children":[],"para_type":"text","pageno":167,"layout_index":1,"box":[138,84,96,16]}
- {"node_id":3036,"text":"分项工程质量验收记录","node_type":"title","parent":0,"children":[3037,3038,3039,3040,3041],"para_type":"title_1","pageno":167,"layout_index":2,"box":[282,85,157,15]}
- {"node_id":3037,"text":"C03-9-03-","node_type":"text","parent":3036,"children":[],"para_type":"text","pageno":167,"layout_index":3,"box":[434,107,46,9]}
- {"node_id":3038,"text":[["单位(子单位)工程名称","单位(子单位)工程名称","光伏硅材料制造项目(二期5万吨高纯晶硅项目)还原A(01804A)","光伏硅材料制造项目(二期5万吨高纯晶硅项目)还原A(01804A)","光伏硅材料制造项目(二期5万吨高纯晶硅项目)还原A(01804A)","光伏硅材料制造项目(二期5万吨高纯晶硅项目)还原A(01804A)","分部(子分部)工程名称","分部(子分部)工程名称","建筑装饰装修(建筑地面)","建筑装饰装修(建筑地面)","建筑装饰装修(建筑地面)","建筑装饰装修(建筑地面)"],["分项工程数量","分项工程数量","1","1","1","1","检验批数量","检验批数量","1","1","1","1"],["施工单位","施工单位","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","项目负责人","项目负责人","方海涛","项目技术负责人","项目技术负责人","胡居雷"],["分包单位","分包单位","\/","\/","\/","\/","分包单位项目负责人","分包单位项目负责人","","分包内容","分包内容"],["序号","检验批名称","检验批名称","检验批名称","检验批容量","部位\/区段","部位\/区段","施工单位检查结果","施工单位检查结果","施工单位检查结果","监理单位验收意见","监理单位验收意见"],["1","水磨石面层","水磨石面层","水磨石面层","无防水要求:3间","还原A三层大厅","还原A三层大厅","主控项目全部符合要求,一般项目满足规范要求,本检验批符合要求","主控项目全部符合要求,一般项目满足规范要求,本检验批符合要求","主控项目全部符合要求,一般项目满足规范要求,本检验批符合要求"],[""],[""],[""],[""],[""],[""],[""],[""],[""],[""],[""],[""],[""],["说明:","说明:","说明:","说明:","说明:","说明:","说明:","说明:","说明:","说明:","说明:","说明:"],["施工单位检查结果","施工单位检查结果","施工单位检查结果","合格项目专业技术负责人:胡居雷2022年6月3日","合格项目专业技术负责人:胡居雷2022年6月3日","合格项目专业技术负责人:胡居雷2022年6月3日","合格项目专业技术负责人:胡居雷2022年6月3日","合格项目专业技术负责人:胡居雷2022年6月3日","合格项目专业技术负责人:胡居雷2022年6月3日","合格项目专业技术负责人:胡居雷2022年6月3日","合格项目专业技术负责人:胡居雷2022年6月3日","合格项目专业技术负责人:胡居雷2022年6月3日"],["监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","合格专业监理工程师(建设单位项目专业技术负责人)陈刚227年6月0日","合格专业监理工程师(建设单位项目专业技术负责人)陈刚227年6月0日","合格专业监理工程师(建设单位项目专业技术负责人)陈刚227年6月0日","合格专业监理工程师(建设单位项目专业技术负责人)陈刚227年6月0日","合格专业监理工程师(建设单位项目专业技术负责人)陈刚227年6月0日","合格专业监理工程师(建设单位项目专业技术负责人)陈刚227年6月0日","合格专业监理工程师(建设单位项目专业技术负责人)陈刚227年6月0日","合格专业监理工程师(建设单位项目专业技术负责人)陈刚227年6月0日","合格专业监理工程师(建设单位项目专业技术负责人)陈刚227年6月0日"],[""]],"node_type":"table","parent":3036,"children":[],"para_type":"table","pageno":167,"layout_index":4,"box":[60,120,469,648]}
- {"node_id":3039,"text":"筑业软件:4853485057505655","node_type":"text","parent":3036,"children":[],"para_type":"text","pageno":167,"layout_index":5,"box":[59,784,123,11]}
- {"node_id":3040,"text":"C-075","node_type":"text","parent":3036,"children":[],"para_type":"text","pageno":168,"layout_index":0,"box":[508,53,26,8]}
- {"node_id":3041,"text":"整体面层铺设","node_type":"text","parent":3036,"children":[],"para_type":"text","pageno":168,"layout_index":1,"box":[145,83,96,18]}
- {"node_id":3042,"text":"分项工程质量验收记录","node_type":"title","parent":0,"children":[3043,3044,3045,3046,3047],"para_type":"title_1","pageno":168,"layout_index":2,"box":[289,86,157,14]}
- {"node_id":3043,"text":"C03-9-03-","node_type":"text","parent":3042,"children":[],"para_type":"text","pageno":168,"layout_index":3,"box":[441,108,45,9]}
- {"node_id":3044,"text":[["单位(子单位)工程名称","单位(子单位)工程名称","光伏硅材料制造项目(二期5万吨高纯晶硅项目)还原B(01804B)","光伏硅材料制造项目(二期5万吨高纯晶硅项目)还原B(01804B)","光伏硅材料制造项目(二期5万吨高纯晶硅项目)还原B(01804B)","光伏硅材料制造项目(二期5万吨高纯晶硅项目)还原B(01804B)","光伏硅材料制造项目(二期5万吨高纯晶硅项目)还原B(01804B)","分部(子分部)工程名称","分部(子分部)工程名称","建筑装饰装修(建筑地面)","建筑装饰装修(建筑地面)","建筑装饰装修(建筑地面)","建筑装饰装修(建筑地面)"],["分项工程数量","分项工程数量","1","1","1","1","1","检验批数量","检验批数量","1","1","1","1"],["施工单位","施工单位","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","项目负责人","项目负责人","方海涛","项目技术负责人","项目技术负责人","胡居雷"],["施工单位","施工单位","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","项目负责人","项目负责人","方海涛","项目技术负责人","项目技术负责人","胡居雷"],["分包单位","分包单位","","","","","","分包单位项目负责人","分包单位项目负责人","","分包内容","分包内容"],["序号","检验批名称","检验批名称","检验批名称","检验批容量","部位\/区段","部位\/区段","部位\/区段","施工单位检查结果","施工单位检查结果","施工单位检查结果","监理单位验收意见","监理单位验收意见"],["1","水磨石面层","水磨石面层","水磨石面层","无防水要求:3间","还原B三层大厅","还原B三层大厅","还原B三层大厅","主控项目全部符合要求,一般项目满足规范要求,本检验批符合要求","主控项目全部符合要求,一般项目满足规范要求,本检验批符合要求","主控项目全部符合要求,一般项目满足规范要求,本检验批符合要求"],[""],[""],[""],[""],[""],[""],[""],[""],[""],[""],[""],[""],[""],["说明:","说明:","说明:","说明:","说明:","说明:","说明:","说明:","说明:","说明:","说明:","说明:","说明:"],["施工单位检查结果","施工单位检查结果","施工单位检查结果","合格项目专业技术负责人:胡居雪2022年1月30日","合格项目专业技术负责人:胡居雪2022年1月30日","合格项目专业技术负责人:胡居雪2022年1月30日","合格项目专业技术负责人:胡居雪2022年1月30日","合格项目专业技术负责人:胡居雪2022年1月30日","合格项目专业技术负责人:胡居雪2022年1月30日","合格项目专业技术负责人:胡居雪2022年1月30日","合格项目专业技术负责人:胡居雪2022年1月30日","合格项目专业技术负责人:胡居雪2022年1月30日","合格项目专业技术负责人:胡居雪2022年1月30日"],["监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","专业监理工程师:合格(建设单位项目专业技术负责人)陈士刚227年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈士刚227年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈士刚227年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈士刚227年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈士刚227年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈士刚227年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈士刚227年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈士刚227年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈士刚227年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈士刚227年6月30日"],["监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","专业监理工程师:合格(建设单位项目专业技术负责人)陈士刚227年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈士刚227年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈士刚227年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈士刚227年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈士刚227年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈士刚227年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈士刚227年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈士刚227年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈士刚227年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈士刚227年6月30日"],[""]],"node_type":"table","parent":3042,"children":[],"para_type":"table","pageno":168,"layout_index":4,"box":[64,122,469,648]}
- {"node_id":3045,"text":"筑业软件:4853485057505655","node_type":"text","parent":3042,"children":[],"para_type":"text","pageno":168,"layout_index":5,"box":[60,782,122,12]}
- {"node_id":3046,"text":"C-075","node_type":"text","parent":3042,"children":[],"para_type":"text","pageno":169,"layout_index":0,"box":[508,54,26,8]}
- {"node_id":3047,"text":"整体面层铺设","node_type":"text","parent":3042,"children":[],"para_type":"text","pageno":169,"layout_index":1,"box":[144,86,96,16]}
- {"node_id":3048,"text":"分项工程质量验收记录","node_type":"title","parent":0,"children":[3049,3050,3051],"para_type":"title_1","pageno":169,"layout_index":2,"box":[289,87,157,14]}
- {"node_id":3049,"text":"C03-9-03-","node_type":"text","parent":3048,"children":[],"para_type":"text","pageno":169,"layout_index":3,"box":[440,110,46,8]}
- {"node_id":3050,"text":[["单位(子单位)工程名称","单位(子单位)工程名称","光伏硅材料制造项目(二期5万吨高纯晶硅项目)还原C(01804C)","光伏硅材料制造项目(二期5万吨高纯晶硅项目)还原C(01804C)","光伏硅材料制造项目(二期5万吨高纯晶硅项目)还原C(01804C)","光伏硅材料制造项目(二期5万吨高纯晶硅项目)还原C(01804C)","分部(子分部)工程名称","分部(子分部)工程名称","建筑装饰装修(建筑地面)","建筑装饰装修(建筑地面)","建筑装饰装修(建筑地面)","建筑装饰装修(建筑地面)"],["分项工程数量","分项工程数量","1","1","1","1","检验批数量","检验批数量","1","1","1","1"],["施工单位","施工单位","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","上海绰琪新型建材科技有限公司","项目负责人","项目负责人","方海涛","项目技术负责人","项目技术负责人","胡居雷"],["分包单位","分包单位","","","","","分包单位项目负责人","分包单位项目负责人","","分包内容","分包内容"],["序号","检验批名称","检验批名称","检验批名称","检验批容量","部位\/区段","部位\/区段","施工单位检查结果","施工单位检查结果","施工单位检查结果","监理单位验收意见","监理单位验收意见"],["1","水磨石面层","水磨石面层","水磨石面层","无防水要求:3问","还原C三层大厅","还原C三层大厅","主控项目全部符合要求,一般项目满足规范要求,本检验批符合要求","主控项目全部符合要求,一般项目满足规范要求,本检验批符合要求","主控项目全部符合要求,一般项目满足规范要求,本检验批符合要求"],[""],[""],[""],[""],[""],[""],[""],[""],[""],[""],[""],[""],[""],["说明:","说明:","说明:","说明:","说明:","说明:","说明:","说明:","说明:","说明:","说明:","说明:"],["施工单位检查结果","施工单位检查结果","施工单位检查结果","合格项目专业技术负责人:胡雪2022年6月30日日","合格项目专业技术负责人:胡雪2022年6月30日日","合格项目专业技术负责人:胡雪2022年6月30日日","合格项目专业技术负责人:胡雪2022年6月30日日","合格项目专业技术负责人:胡雪2022年6月30日日","合格项目专业技术负责人:胡雪2022年6月30日日","合格项目专业技术负责人:胡雪2022年6月30日日","合格项目专业技术负责人:胡雪2022年6月30日日","合格项目专业技术负责人:胡雪2022年6月30日日"],["监理(建设)单位验收结论","监理(建设)单位验收结论","监理(建设)单位验收结论","专业监理工程师:合格(建设单位项目专业技术负责人)陈刚2022年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈刚2022年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈刚2022年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈刚2022年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈刚2022年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈刚2022年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈刚2022年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈刚2022年6月30日","专业监理工程师:合格(建设单位项目专业技术负责人)陈刚2022年6月30日"],[""]],"node_type":"table","parent":3048,"children":[],"para_type":"table","pageno":169,"layout_index":4,"box":[65,124,470,648]}
- {"node_id":3051,"text":"筑业软件:4853485057505655","node_type":"text","parent":3048,"children":[],"para_type":"text","pageno":169,"layout_index":5,"box":[64,787,121,10]}
- {"node_id":3052,"text":"三峡左岸及地下电站地坪整治招标","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":170,"layout_index":0,"box":[117,49,361,26]}
- {"node_id":3053,"text":"投标文件","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":170,"layout_index":1,"box":[177,178,240,66]}
- {"node_id":3054,"text":"(技术标)","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":170,"layout_index":2,"box":[207,291,180,39]}
- {"node_id":3055,"text":"(无机磨石施工技术组织设计)","node_type":"title","parent":0,"children":[3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066],"para_type":"title_1","pageno":170,"layout_index":3,"box":[129,359,336,26]}
- {"node_id":3056,"text":"、","node_type":"text","parent":3055,"children":[],"para_type":"text","pageno":170,"layout_index":4,"box":[221,615,14,15]}
- {"node_id":3057,"text":"投标人:上海绰琪新型建材科技有限公司(企业CA电子印章)","node_type":"text","parent":3055,"children":[],"para_type":"text","pageno":170,"layout_index":5,"box":[139,647,394,15]}
- {"node_id":3058,"text":"法定代表人:","node_type":"text","parent":3055,"children":[],"para_type":"text","pageno":170,"layout_index":6,"box":[136,674,84,15]}
- {"node_id":3059,"text":"朱涛","node_type":"text","parent":3055,"children":[],"para_type":"text","pageno":170,"layout_index":7,"box":[241,674,28,15]}
- {"node_id":3060,"text":"(法定代表人CA电子印章)","node_type":"text","parent":3055,"children":[],"para_type":"text","pageno":170,"layout_index":8,"box":[318,674,169,15]}
- {"node_id":3061,"text":"2022","node_type":"text","parent":3055,"children":[],"para_type":"text","pageno":170,"layout_index":9,"box":[237,702,29,15]}
- {"node_id":3062,"text":"年","node_type":"text","parent":3055,"children":[],"para_type":"text","pageno":170,"layout_index":10,"box":[280,702,14,15]}
- {"node_id":3063,"text":"9","node_type":"text","parent":3055,"children":[],"para_type":"text","pageno":170,"layout_index":11,"box":[308,702,7,15]}
- {"node_id":3064,"text":"月","node_type":"text","parent":3055,"children":[],"para_type":"text","pageno":170,"layout_index":12,"box":[329,702,14,15]}
- {"node_id":3065,"text":"3","node_type":"text","parent":3055,"children":[],"para_type":"text","pageno":170,"layout_index":13,"box":[357,702,7,15]}
- {"node_id":3066,"text":"日","node_type":"text","parent":3055,"children":[],"para_type":"text","pageno":170,"layout_index":14,"box":[378,702,14,15]}
- {"node_id":3067,"text":"施工组织设计要求","node_type":"title","parent":0,"children":[3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3088,3090,3094,3107],"para_type":"title_1","pageno":171,"layout_index":0,"box":[201,49,193,26]}
- {"node_id":3068,"text":"1.投标人应根据招标文件和对现场的勘察情况,采用文字并结合图表形式,参考以下要点编制本工程的施工方案:","node_type":"text","parent":3067,"children":[],"para_type":"text","pageno":171,"layout_index":1,"box":[46,99,503,34]}
- {"node_id":3069,"text":"(1)施工组织设计(施工设备配置、选型的合理性;施工进度、强度分析,劳动力计划安排;项目资金使用、保证与分配、封闭管理及奖惩措施;专业队伍配备,拟投入本项目现有人员数量、工种、资格资质证书情况;施工方法、程序、配合环节等。)。","node_type":"text","parent":3067,"children":[],"para_type":"text","pageno":171,"layout_index":2,"box":[46,144,503,59]}
- {"node_id":3070,"text":"(2)无机磨石品牌及质量(根据投标人提供的无机磨石品牌及对应检测报告、产品说明书,以及样品俯视图、剖面图等。)。","node_type":"text","parent":3067,"children":[],"para_type":"text","pageno":171,"layout_index":3,"box":[46,214,509,36]}
- {"node_id":3071,"text":"(3)无机磨石地坪的施工工艺及质量控制(针对本项目特点及现场情况对投标人提供保证质量的技术措施。对无机磨石地坪的主要施工方法、程序的合理性及质量保证措施,对无机磨石抗裂的应对措施,对混凝土找平层及结构缝的主要施工方法、程序的合理性及质量保证措施)。","node_type":"text","parent":3067,"children":[],"para_type":"text","pageno":171,"layout_index":4,"box":[46,260,504,60]}
- {"node_id":3072,"text":"(4)施工安全和文明施工(针对本项目特点及现场情况对投标人提供安全和文明施工的技术措施,环保实施措施,防灾应急措施,对周边已有设施的保护措施、减小施工中的震动对周边已有设施的影响、对施工粉尘的控制措施等。)。","node_type":"text","parent":3067,"children":[],"para_type":"text","pageno":171,"layout_index":5,"box":[46,330,503,60]}
- {"node_id":3073,"text":"(5)组织机构及施工管理人员(项目现场组织机构、职责,项目经理和技术负责人的经历、主持过的工程项目等)。","node_type":"text","parent":3067,"children":[],"para_type":"text","pageno":171,"layout_index":6,"box":[46,400,509,37]}
- {"node_id":3074,"text":"(6)成品保护和工程保修工作的管理措施和承诺;","node_type":"text","parent":3067,"children":[],"para_type":"text","pageno":171,"layout_index":7,"box":[70,447,270,13]}
- {"node_id":3075,"text":"(7)任何可能的紧急情况的处理措施、预案以及抵抗风险(包括工程施工过程中可能遇到的各种风险)的措施;","node_type":"text","parent":3067,"children":[],"para_type":"text","pageno":171,"layout_index":8,"box":[46,470,503,37]}
- {"node_id":3076,"text":"(8)与发包人的配合;","node_type":"text","parent":3067,"children":[],"para_type":"text","pageno":171,"layout_index":9,"box":[70,517,126,13]}
- {"node_id":3077,"text":"(9)招标文件规定的其他内容。","node_type":"text","parent":3067,"children":[],"para_type":"text","pageno":171,"layout_index":10,"box":[70,540,174,13]}
- {"node_id":3078,"text":"2.方案除采用文字表述外可附下列图表,图表及格式要求附后。","node_type":"text","parent":3067,"children":[],"para_type":"text","pageno":171,"layout_index":11,"box":[58,566,342,13]}
- {"node_id":3079,"text":"附件一拟投入本工程的主要施工设备表","node_type":"text","parent":3067,"children":[],"para_type":"text","pageno":171,"layout_index":12,"box":[70,587,216,13]}
- {"node_id":3080,"text":"附件二拟配备本工程的试验和检测仪器设备表","node_type":"text","parent":3067,"children":[],"para_type":"text","pageno":171,"layout_index":13,"box":[70,611,252,13]}
- {"node_id":3081,"text":"附件三劳动力计划表","node_type":"text","parent":3067,"children":[],"para_type":"text","pageno":171,"layout_index":14,"box":[70,634,120,13]}
- {"node_id":3082,"text":"附件四计划开、竣工日期和施工进度网络图","node_type":"text","parent":3067,"children":[],"para_type":"text","pageno":171,"layout_index":15,"box":[70,657,240,13]}
- {"node_id":3083,"text":"目录","node_type":"text","parent":3067,"children":[],"para_type":"text","pageno":172,"layout_index":0,"box":[211,72,108,39]}
- {"node_id":3084,"text":"第一章拟投入施工设备、检测仪器,劳动力计划等第二章施工进度计划表、网格图及现场布置图第三章绰琪公司介绍第四章鑫磨石产品优势及重要案例图片展示第五章项目现场勘察与施工节点解决方案第六章改造现场的防尘、防水、防震保护措施第七章鑫磨石施工技术组织方案第八章确保施工质量措施和标准第九章确保工期技术组织措施第十章确保安全及文明施工措施","node_type":"contents","parent":3067,"children":[],"para_type":"contents","pageno":172,"layout_index":1,"box":[82,213,406,388]}
- {"node_id":3085,"text":"第一章拟投入施工设备、检测仪器,劳动力计划等","node_type":"text","parent":3067,"children":[],"para_type":"text","pageno":173,"layout_index":0,"box":[45,74,415,17]}
- {"node_id":3086,"text":"一、拟投入本工程的主要施工设备表","node_type":"title","parent":3067,"children":[3087],"para_type":"title_3","pageno":173,"layout_index":1,"box":[45,108,193,11]}
- {"node_id":3087,"text":[["序号","设备名称","型号规格","数量","国别产地","制造年份","额定功率(KW)","生产能力","用于施工部位","备注"],["1","铣刨机","雅牧","2","中国","2020","5","500平米","地面"],["2","重型打磨机","850","6","中国","2021","8","2000平米","地面"],["3","打磨机","方头","2","中国","2020","8","1000平米","地面"],["4","角磨机","150\/180","5","中国","2022","1","200平米","地面"],["5","角磨机吸尘罩","配套","8","中国","2022","\/","\/","地面"],["6","小吸尘器","配套","3","中国","2021","0.5","500平米","地面"],["7","吸尘管","配套","8","中国","2020","\/","\/","地面"],["8","大吸尘器","吸尘吸水","2","中国","2021","2","1000平米","地面"],["9","抛光机","高抛","2","中国","2021","2","1000平米","地面"],["10","抛光机","石材翻新机","2","中国","2020","2","1000平米","地面"],["11","抛光机","手持","1","中国","2020","1","500平米","地面"],["12","吸尘器","雅牧2头","5","中国","2021","2","1000平米","地面"],["13","喷砂机","柏瑞泰克","2","中国","2020","8","1000平米","地面"],["14","搅拌机","敞ロ","2","中国","2021","10","50吨","材料搅拌"],["15","搅拌器","水钻","4","中国","2021","5","5吨","材料搅拌"],["16","手推车","电瓶","4","中国","2021","\/","500kg","材料运输"],["17","红外线","高精度100米","3","中国","2021","\/","\/","标高"],["18","配电箱","防爆插头","15","中国","2020","\/","1","通电"],["19","电锤","东城","6","中国","2021","2","","地面"],["20","切割机","东城","4","中国","2022","2","","地面"],[""],[""]],"node_type":"table","parent":3086,"children":[],"para_type":"table","pageno":173,"layout_index":2,"box":[77,130,439,572]}
- {"node_id":3088,"text":"二、拟配备本工程的试验和检测仪器设备表","node_type":"title","parent":3067,"children":[3089],"para_type":"title_3","pageno":174,"layout_index":0,"box":[46,47,228,13]}
- {"node_id":3089,"text":[["序号","仪器设备名称","型号规格","数量","国别产地","制造年份","已使用台时数","用途","备注"],["1 ","平整度靠尺","","6 ","中国","2022 ","","平整度检测"],["2 ","拉拔仪","","1 ","中国","2020 ","","混凝土强度"],["3 ","水平仪","","6 ","中国","2022 ","","平整度"],["4 ","邵氏硬度仪","","1 ","中国","2020 ","","硬度检测"],["5 ","温湿度计","","2 ","中国","2022 ","","温湿度测试"],["6 ","含水率测试仪","","1 ","中国","2020 ","","含水率检测"],["7 ","激光测距仪","","6 ","中国","2020 ","","测距"],["8 ","光泽度计","","2 ","中国","2020 ","","光泽度检测"],[""],[""],[""]],"node_type":"table","parent":3088,"children":[],"para_type":"table","pageno":174,"layout_index":1,"box":[77,68,439,255]}
- {"node_id":3090,"text":"三、劳动力计划表","node_type":"title","parent":3067,"children":[3091,3092,3093],"para_type":"title_3","pageno":174,"layout_index":2,"box":[46,347,96,13]}
- {"node_id":3091,"text":"单位:人","node_type":"text","parent":3090,"children":[],"para_type":"text","pageno":174,"layout_index":3,"box":[336,370,48,13]}
- {"node_id":3092,"text":[["工种","按工程施工阶段投入劳动力情况","按工程施工阶段投入劳动力情况","按工程施工阶段投入劳动力情况","按工程施工阶段投入劳动力情况","按工程施工阶段投入劳动力情况","按工程施工阶段投入劳动力情况","按工程施工阶段投入劳动力情况"],["瓷砖拆除","基层清理铣刨","支模打灰饼","抗裂砂浆摊铺","基层抛丸清理","面层摊铺处理","合计"],["技术工","2 ","3 ","3 ","6 ","3 ","10 ","27 "],["小工","10 ","10 ","5 ","5 ","10 ","10 ","50 "],["水电工","","","","","","","4 "],["设备维修","","","","","","","2 "],["安全","","","","","","","3 "],["自检","","","","","","","1 "],["生产管理","","","","","","","2 "],["协调,文案","","","","","","","1 "],["技术深化","","","","","","","1 "],["合计","","","","","","","91 "],[""],[""]],"node_type":"table","parent":3090,"children":[],"para_type":"table","pageno":174,"layout_index":4,"box":[86,384,420,360]}
- {"node_id":3093,"text":"备注:以上为常规施工的一个流程班组,如赶工期可以增加施工班组数量。","node_type":"text","parent":3090,"children":[],"para_type":"text","pageno":174,"layout_index":5,"box":[82,767,396,13]}
- {"node_id":3094,"text":"第二章施工进度计划表、网格图及现场布置图","node_type":"title","parent":3067,"children":[3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106],"para_type":"title_2","pageno":175,"layout_index":0,"box":[45,48,379,17]}
- {"node_id":3095,"text":"附件四:计划开、竣工日期和施工进度网络图","node_type":"text","parent":3094,"children":[],"para_type":"text","pageno":175,"layout_index":1,"box":[46,102,239,11]}
- {"node_id":3096,"text":"1.投标人应递交施工进度网络图或施工进度表,说明按招标文件要求的计划工期进行施工的各个关键日期。","node_type":"text","parent":3094,"children":[],"para_type":"text","pageno":175,"layout_index":2,"box":[70,126,477,34]}
- {"node_id":3097,"text":"2.施工进度表可采用网络图和(或)横道图表示。","node_type":"text","parent":3094,"children":[],"para_type":"text","pageno":175,"layout_index":3,"box":[69,173,263,10]}
- {"node_id":3098,"text":[["序号","施工项目名称","计划开始时间","计划完成时间","用款计划"],["1","施工准备","2022-10-20","2022-11-1","预付款到账"],["2","部分施工设备及管理人员进场,围挡保护","2022-11-1","2022-11-5"],["3","瓷砖拆除,基面清理基层铣刨,垃圾清运","2022-11-5","2023-2-5","申请首笔进度款"],["4","打灰饼、支模,植筋","2023-2-5","2023-3-15"],["5","抗裂砂浆找平层浇筑C25混凝土同步施工","2023-3-15","2023-6-25","申请第二批次进度款"],["6","抛丸基层,清运垃圾洒水润湿、吸尘吸水预制磨石安装","2023-6-25","2023-8-5"],["7","图形分隔条安装","2023-7-15","2023-8-15"],["8","成品地面结构缝安装不锈钢踢脚线安装","2023-8-15","2023-10-15"],["9","墙面零星抹灰墙面漆恢复","2023-10-15","2023-12-15"],["10","磨石面层摊铺","2023-11-15","2024-2-15","完工后申请工程款"],["11","磨石面层处理","2024-2-15","2024-5-15"],["12","自检修补","2024-5-15","2024-7-31"],["13","防护覆盖物拆除,恢复原样,竣工验收","2024-7-31","2024-9-30","申请97%工程款"],["14","预留机动时间,因为疫情,节假日等原因","2024-9-30","2024-12-31"],[""]],"node_type":"table","parent":3094,"children":[],"para_type":"table","pageno":175,"layout_index":4,"box":[94,211,424,523]}
- {"node_id":3099,"text":"以上实际时间节点要根据现场实际情况,进入现场根据现场及甲方要求制定施工区域平铺图,和详细施工时间计划","node_type":"text","parent":3094,"children":[],"para_type":"text","pageno":175,"layout_index":5,"box":[69,750,483,34]}
- {"node_id":3100,"text":"施工现场布置","node_type":"text","parent":3094,"children":[],"para_type":"text","pageno":176,"layout_index":0,"box":[46,72,95,17]}
- {"node_id":3101,"text":"1. 人员住宿在坝区以外,每天施工人员坐专车进入施工现场。","node_type":"text","parent":3094,"children":[],"para_type":"text","pageno":176,"layout_index":1,"box":[46,109,381,17]}
- {"node_id":3102,"text":"2. 人员就餐,由专人负责坝区以外带入在甲方指定区域就餐,现场杜绝遗留垃圾。","node_type":"text","parent":3094,"children":[],"para_type":"text","pageno":176,"layout_index":2,"box":[46,142,507,17]}
- {"node_id":3103,"text":"3. 材料整齐堆放甲方指定区域,做好防潮,防火。","node_type":"text","parent":3094,"children":[],"para_type":"text","pageno":176,"layout_index":3,"box":[46,175,310,17]}
- {"node_id":3104,"text":"4. 拆除垃圾堆放在甲方指定临时堆放区(主变压器楼层指定区域)做到当日清除,由专业运输车辆运输至瓦窑坪村垃圾堆场等待处理,杜绝坝区内外污染。","node_type":"text","parent":3094,"children":[],"para_type":"text","pageno":176,"layout_index":4,"box":[46,209,507,42]}
- {"node_id":3105,"text":"5. ","node_type":"text","parent":3094,"children":[],"para_type":"text","pageno":176,"layout_index":5,"box":[46,271,16,15]}
- {"node_id":3106,"text":"所有施工垃圾整理,采用专业密封运输车辆运至瓦窑平村垃圾堆场做无害处理。","node_type":"text","parent":3094,"children":[],"para_type":"text","pageno":176,"layout_index":6,"box":[61,269,492,15]}
- {"node_id":3107,"text":"第三章绰琪企业简介","node_type":"title","parent":3067,"children":[3108,3113],"para_type":"title_2","pageno":177,"layout_index":0,"box":[192,48,181,19]}
- {"node_id":3108,"text":"一、公司介绍:","node_type":"title","parent":3107,"children":[3109,3110,3111,3112],"para_type":"title_3","pageno":177,"layout_index":1,"box":[97,100,73,11]}
- {"node_id":3109,"text":"上海绰琪新型建材科技有限公司是集研发、生产、施工为一体的新型建材企业,专注无机环保绿色建材,A1级防火,施工便捷;","node_type":"text","parent":3108,"children":[],"para_type":"text","pageno":177,"layout_index":2,"box":[117,127,379,24]}
- {"node_id":3110,"text":"总公司部位于世界经济金融之都一上海,生产基地位于中国水晶之都的江苏东海,上海绰琪致力成为健康建材领域创新领跑者,生产低收缩不开裂辅助材料、无机硅晶石地材、装配式建筑砂浆材料,以及所有磨石材料的骨料等,兼顾其他环氧地坪,聚氨酯地坪,并提供复杂地坪整体解决方案。","node_type":"text","parent":3108,"children":[],"para_type":"text","pageno":177,"layout_index":3,"box":[121,160,381,52]}
- {"node_id":3111,"text":"","node_type":"image","parent":3108,"children":[],"para_type":"image","pageno":177,"layout_index":4,"box":[102,432,187,249]}
- {"node_id":3112,"text":"","node_type":"image","parent":3108,"children":[],"para_type":"image","pageno":177,"layout_index":5,"box":[312,432,197,249]}
- {"node_id":3113,"text":"二、企业LOGO","node_type":"title","parent":3107,"children":[],"para_type":"title_3","pageno":178,"layout_index":0,"box":[82,126,79,10]}
- {"node_id":3114,"text":"绰琪鑫磨石","node_type":"title","parent":0,"children":[3115],"para_type":"title_1","pageno":178,"layout_index":1,"box":[262,280,124,24]}
- {"node_id":3115,"text":"三、企业宣传标语:","node_type":"title","parent":3114,"children":[3116],"para_type":"title_3","pageno":178,"layout_index":2,"box":[82,351,88,11]}
- {"node_id":3116,"text":"从有机到无机为梦想更为健康","node_type":"text","parent":3115,"children":[],"para_type":"text","pageno":178,"layout_index":3,"box":[130,396,214,16]}
- {"node_id":3117,"text":"绰琪建材","node_type":"title","parent":0,"children":[3118],"para_type":"title_1","pageno":178,"layout_index":4,"box":[262,423,83,17]}
- {"node_id":3118,"text":"四、产品或工程案列","node_type":"title","parent":3117,"children":[3119,3138,3161],"para_type":"title_3","pageno":178,"layout_index":5,"box":[73,468,95,11]}
- {"node_id":3119,"text":"1、绰琪鑫磨石主打产品:","node_type":"title","parent":3118,"children":[3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137],"para_type":"title_5","pageno":178,"layout_index":6,"box":[85,505,114,12]}
- {"node_id":3120,"text":"绰琪硅晶石","node_type":"text","parent":3119,"children":[],"para_type":"text","pageno":178,"layout_index":7,"box":[142,560,70,15]}
- {"node_id":3121,"text":"绰琪硅晶石","node_type":"text","parent":3119,"children":[],"para_type":"text","pageno":178,"layout_index":8,"box":[299,560,70,15]}
- {"node_id":3122,"text":"绰琪","node_type":"text","parent":3119,"children":[],"para_type":"text","pageno":178,"layout_index":9,"box":[474,559,31,16]}
- {"node_id":3123,"text":"无机大颗粒ST系列","node_type":"text","parent":3119,"children":[],"para_type":"text","pageno":178,"layout_index":10,"box":[146,579,60,7]}
- {"node_id":3124,"text":"无机小颗粒ET系列","node_type":"text","parent":3119,"children":[],"para_type":"text","pageno":178,"layout_index":11,"box":[305,579,60,7]}
- {"node_id":3125,"text":"CQ300修补液","node_type":"text","parent":3119,"children":[],"para_type":"text","pageno":178,"layout_index":12,"box":[469,579,39,7]}
- {"node_id":3126,"text":"绰琪","node_type":"text","parent":3119,"children":[],"para_type":"text","pageno":178,"layout_index":13,"box":[161,638,31,17]}
- {"node_id":3127,"text":"绰琪","node_type":"text","parent":3119,"children":[],"para_type":"text","pageno":178,"layout_index":14,"box":[318,638,30,16]}
- {"node_id":3128,"text":"绰琪","node_type":"text","parent":3119,"children":[],"para_type":"text","pageno":178,"layout_index":15,"box":[473,638,31,16]}
- {"node_id":3129,"text":"CQ400润色剂","node_type":"text","parent":3119,"children":[],"para_type":"text","pageno":178,"layout_index":16,"box":[156,658,40,7]}
- {"node_id":3130,"text":"CQ500抛光液","node_type":"text","parent":3119,"children":[],"para_type":"text","pageno":178,"layout_index":17,"box":[314,657,38,7]}
- {"node_id":3131,"text":"CQ600保护剂","node_type":"text","parent":3119,"children":[],"para_type":"text","pageno":178,"layout_index":18,"box":[468,657,39,7]}
- {"node_id":3132,"text":"绰琪","node_type":"text","parent":3119,"children":[],"para_type":"text","pageno":178,"layout_index":19,"box":[161,713,31,16]}
- {"node_id":3133,"text":"绰琪","node_type":"text","parent":3119,"children":[],"para_type":"text","pageno":178,"layout_index":20,"box":[318,714,31,17]}
- {"node_id":3134,"text":"绰琪","node_type":"text","parent":3119,"children":[],"para_type":"text","pageno":178,"layout_index":21,"box":[472,714,31,16]}
- {"node_id":3135,"text":"无机硅纳米砂浆系列","node_type":"text","parent":3119,"children":[],"para_type":"text","pageno":178,"layout_index":22,"box":[144,732,64,8]}
- {"node_id":3136,"text":"抗开裂水泥","node_type":"text","parent":3119,"children":[],"para_type":"text","pageno":178,"layout_index":23,"box":[315,733,37,9]}
- {"node_id":3137,"text":"特制骨料","node_type":"text","parent":3119,"children":[],"para_type":"text","pageno":178,"layout_index":24,"box":[473,733,30,9]}
- {"node_id":3138,"text":"2、ST\/ET系列鑫磨石骨料精选:","node_type":"title","parent":3118,"children":[3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160],"para_type":"title_5","pageno":179,"layout_index":0,"box":[62,80,138,10]}
- {"node_id":3139,"text":"ST大颗粒精选系列","node_type":"text","parent":3138,"children":[],"para_type":"text","pageno":179,"layout_index":1,"box":[76,118,129,14]}
- {"node_id":3140,"text":"ST-810-2","node_type":"text","parent":3138,"children":[],"para_type":"text","pageno":179,"layout_index":2,"box":[96,192,26,6]}
- {"node_id":3141,"text":"ST-BN10 ","node_type":"text","parent":3138,"children":[],"para_type":"text","pageno":179,"layout_index":3,"box":[190,193,16,4]}
- {"node_id":3142,"text":"ST-BU10-2 ","node_type":"text","parent":3138,"children":[],"para_type":"text","pageno":179,"layout_index":4,"box":[283,194,20,3]}
- {"node_id":3143,"text":"ST-GB10 ","node_type":"text","parent":3138,"children":[],"para_type":"text","pageno":179,"layout_index":5,"box":[375,194,16,2]}
- {"node_id":3144,"text":"ST-Y1 ","node_type":"text","parent":3138,"children":[],"para_type":"text","pageno":179,"layout_index":6,"box":[468,194,12,3]}
- {"node_id":3145,"text":"ST-w3 ","node_type":"text","parent":3138,"children":[],"para_type":"text","pageno":179,"layout_index":7,"box":[98,266,12,3]}
- {"node_id":3146,"text":"ST-W2 ","node_type":"text","parent":3138,"children":[],"para_type":"text","pageno":179,"layout_index":8,"box":[190,266,12,3]}
- {"node_id":3147,"text":"ST-R5 ","node_type":"text","parent":3138,"children":[],"para_type":"text","pageno":179,"layout_index":9,"box":[282,266,12,3]}
- {"node_id":3148,"text":"ST-GN10 ","node_type":"text","parent":3138,"children":[],"para_type":"text","pageno":179,"layout_index":10,"box":[375,266,16,3]}
- {"node_id":3149,"text":"ST-W66 ","node_type":"text","parent":3138,"children":[],"para_type":"text","pageno":179,"layout_index":11,"box":[467,266,14,3]}
- {"node_id":3150,"text":"ST小颗粒精选系列","node_type":"text","parent":3138,"children":[],"para_type":"text","pageno":179,"layout_index":12,"box":[76,280,129,14]}
- {"node_id":3151,"text":"ET-G834 ","node_type":"text","parent":3138,"children":[],"para_type":"text","pageno":179,"layout_index":13,"box":[98,357,16,2]}
- {"node_id":3152,"text":"ET-G840 ","node_type":"text","parent":3138,"children":[],"para_type":"text","pageno":179,"layout_index":14,"box":[190,356,16,3]}
- {"node_id":3153,"text":"ET-GB66 ","node_type":"text","parent":3138,"children":[],"para_type":"text","pageno":179,"layout_index":15,"box":[282,356,16,3]}
- {"node_id":3154,"text":"ET-MH1 ","node_type":"text","parent":3138,"children":[],"para_type":"text","pageno":179,"layout_index":16,"box":[372,356,14,3]}
- {"node_id":3155,"text":"ET-Y1 ","node_type":"text","parent":3138,"children":[],"para_type":"text","pageno":179,"layout_index":17,"box":[464,357,12,3]}
- {"node_id":3156,"text":"ET-W45 ","node_type":"text","parent":3138,"children":[],"para_type":"text","pageno":179,"layout_index":18,"box":[98,431,14,3]}
- {"node_id":3157,"text":"ET-w42 ","node_type":"text","parent":3138,"children":[],"para_type":"text","pageno":179,"layout_index":19,"box":[192,431,14,3]}
- {"node_id":3158,"text":"ET-w12 ","node_type":"text","parent":3138,"children":[],"para_type":"text","pageno":179,"layout_index":20,"box":[283,431,14,3]}
- {"node_id":3159,"text":"ET-W8 ","node_type":"text","parent":3138,"children":[],"para_type":"text","pageno":179,"layout_index":21,"box":[374,431,12,3]}
- {"node_id":3160,"text":"ET-GB11 ","node_type":"text","parent":3138,"children":[],"para_type":"text","pageno":179,"layout_index":22,"box":[466,434,16,3]}
- {"node_id":3161,"text":"3、天然硅晶石","node_type":"title","parent":3118,"children":[3162,3163,3164],"para_type":"title_5","pageno":179,"layout_index":23,"box":[62,461,69,10]}
- {"node_id":3162,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3161,"children":[],"para_type":"head_tail","pageno":180,"layout_index":0,"box":[78,46,147,11]}
- {"node_id":3163,"text":"经典项目案例展示","node_type":"text","parent":3161,"children":[],"para_type":"text","pageno":180,"layout_index":1,"box":[68,78,96,13]}
- {"node_id":3164,"text":"","node_type":"image","parent":3161,"children":[],"para_type":"image","pageno":180,"layout_index":2,"box":[75,108,450,309]}
- {"node_id":3165,"text":"嘉兴高铁站北候车厅","node_type":"title","parent":0,"children":[3166],"para_type":"title_1","pageno":180,"layout_index":3,"box":[246,437,108,13]}
- {"node_id":3166,"text":"","node_type":"image","parent":3165,"children":[],"para_type":"image","pageno":180,"layout_index":4,"box":[78,468,442,262]}
- {"node_id":3167,"text":"广州泰和肿瘤医院","node_type":"title","parent":0,"children":[3168],"para_type":"title_1","pageno":180,"layout_index":5,"box":[252,750,96,13]}
- {"node_id":3168,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3167,"children":[],"para_type":"head_tail","pageno":181,"layout_index":0,"box":[79,46,144,10]}
- {"node_id":3169,"text":"上海信宜制药工厂","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":181,"layout_index":1,"box":[223,451,96,13]}
- {"node_id":3170,"text":"山东菏泽市民文化中心","node_type":"title","parent":0,"children":[3171,3172],"para_type":"title_1","pageno":181,"layout_index":2,"box":[248,760,104,10]}
- {"node_id":3171,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3170,"children":[],"para_type":"head_tail","pageno":182,"layout_index":0,"box":[78,46,147,11]}
- {"node_id":3172,"text":"","node_type":"image","parent":3170,"children":[],"para_type":"image","pageno":182,"layout_index":1,"box":[92,68,415,266]}
- {"node_id":3173,"text":"上海宝马4S 店展厅","node_type":"title","parent":0,"children":[3174],"para_type":"title_1","pageno":182,"layout_index":2,"box":[256,342,88,11]}
- {"node_id":3174,"text":"","node_type":"image","parent":3173,"children":[],"para_type":"image","pageno":182,"layout_index":3,"box":[102,410,395,296]}
- {"node_id":3175,"text":"四川永祥新能源公司","node_type":"title","parent":0,"children":[3176,3177,3196],"para_type":"title_1","pageno":182,"layout_index":4,"box":[253,715,94,11]}
- {"node_id":3176,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3175,"children":[],"para_type":"head_tail","pageno":183,"layout_index":0,"box":[79,46,144,10]}
- {"node_id":3177,"text":"第四章鑫磨石优势分析","node_type":"title","parent":3175,"children":[3178],"para_type":"title_2","pageno":183,"layout_index":1,"box":[232,69,190,18]}
- {"node_id":3178,"text":"4、绰琪鑫磨石优势分析和盘点","node_type":"title","parent":3177,"children":[3179,3187],"para_type":"title_5","pageno":183,"layout_index":2,"box":[83,110,190,14]}
- {"node_id":3179,"text":"4.1绰琪鑫磨石优势分析","node_type":"title","parent":3178,"children":[3180,3181,3182,3183,3184,3185,3186],"para_type":"title_6","pageno":183,"layout_index":3,"box":[83,137,152,14]}
- {"node_id":3180,"text":"绰琪硅晶石大于80Mpa传统无机地材20-25Mpa","node_type":"text","parent":3179,"children":[],"para_type":"text","pageno":183,"layout_index":4,"box":[186,206,70,19]}
- {"node_id":3181,"text":"绰琪硅晶石5-6级传统无机地材3-4级莫氏硬度","node_type":"text","parent":3179,"children":[],"para_type":"text","pageno":183,"layout_index":5,"box":[277,198,60,30]}
- {"node_id":3182,"text":"绰琪硅晶石0.3%传统无机地材2-3%吸水性","node_type":"text","parent":3179,"children":[],"para_type":"text","pageno":183,"layout_index":6,"box":[368,208,57,29]}
- {"node_id":3183,"text":"抗压强度","node_type":"text","parent":3179,"children":[],"para_type":"text","pageno":183,"layout_index":7,"box":[188,229,37,8]}
- {"node_id":3184,"text":"绰琪硅晶石大于15Mpa","node_type":"text","parent":3179,"children":[],"para_type":"text","pageno":183,"layout_index":8,"box":[92,235,68,6]}
- {"node_id":3185,"text":"传统无机地材4.5Mpa-5mpa","node_type":"text","parent":3179,"children":[],"para_type":"text","pageno":183,"layout_index":9,"box":[93,246,80,6]}
- {"node_id":3186,"text":"抗折强度","node_type":"text","parent":3179,"children":[],"para_type":"text","pageno":183,"layout_index":10,"box":[94,256,36,9]}
- {"node_id":3187,"text":"4.2绰琪鑫磨石优势盘点","node_type":"title","parent":3178,"children":[3188,3189,3190,3191,3192,3193,3194,3195],"para_type":"title_6","pageno":183,"layout_index":11,"box":[58,396,152,14]}
- {"node_id":3188,"text":"绰琪硅晶石VOC排放0.008干缩率万分之3.5内外照射小于0.1其他","node_type":"text","parent":3187,"children":[],"para_type":"text","pageno":183,"layout_index":12,"box":[452,214,54,53]}
- {"node_id":3189,"text":"4.2.1绿色环保,A级防火;材料、施工、使用,健康安全,符合国际设计理念。","node_type":"text","parent":3187,"children":[],"para_type":"text","pageno":183,"layout_index":13,"box":[55,441,419,11]}
- {"node_id":3190,"text":"4.2.2施工周期短,材料易摊铺,平整度高;材料自带流平性,低收缩,强度上来快,可以交叉施工,缩短工期。","node_type":"text","parent":3187,"children":[],"para_type":"text","pageno":183,"layout_index":14,"box":[54,472,475,42]}
- {"node_id":3191,"text":"4.2.3鑫磨石体系性价比较高;产品性能卓越,远超水磨石,参数处于碾压态势。","node_type":"text","parent":3187,"children":[],"para_type":"text","pageno":183,"layout_index":15,"box":[55,534,419,11]}
- {"node_id":3192,"text":"4.2.4抗开裂性能卓越;因为添加乳液,具有优异粘结性,低收缩,抗裂少空鼓。","node_type":"text","parent":3187,"children":[],"para_type":"text","pageno":183,"layout_index":16,"box":[55,566,419,11]}
- {"node_id":3193,"text":"4.2.5超耐磨、抗划伤和抗污性能。鑫磨石面层经过渗透、结晶和抗污等多道工序处理,性能提升。","node_type":"text","parent":3187,"children":[],"para_type":"text","pageno":183,"layout_index":17,"box":[55,597,474,43]}
- {"node_id":3194,"text":"4.2.6鑫磨石体系具有丰富的骨料和颜色,可以打造出高难度图案组合,满足设计师的创意需求。","node_type":"text","parent":3187,"children":[],"para_type":"text","pageno":183,"layout_index":18,"box":[55,659,475,43]}
- {"node_id":3195,"text":"4.2.7鑫磨石3D解决方案。地面和异形体可以现浇磨石,立面、顶面和楼梯可以预制磨石,形成三维立体设计效果,具有超强视觉冲击。","node_type":"text","parent":3187,"children":[],"para_type":"text","pageno":183,"layout_index":19,"box":[55,721,475,43]}
- {"node_id":3196,"text":"第五章项目现场勘察和施工节点解决方案","node_type":"title","parent":3175,"children":[3197,3207],"para_type":"title_2","pageno":184,"layout_index":0,"box":[140,48,334,17]}
- {"node_id":3197,"text":"1、现场已经开裂伸缩缝解决方案","node_type":"title","parent":3196,"children":[3198,3199,3200,3201,3202,3203,3204,3205,3206],"para_type":"title_5","pageno":184,"layout_index":1,"box":[76,82,174,12]}
- {"node_id":3198,"text":"以上是现场伸缩缝,分仓缝","node_type":"text","parent":3197,"children":[],"para_type":"text","pageno":184,"layout_index":2,"box":[240,266,125,10]}
- {"node_id":3199,"text":"为了解决板块过大,地坪形体改变产生应力,或者震动导致变形产生应力释放而预留的伸缩空间。做磨石工艺处理施工方案如下图:","node_type":"text","parent":3197,"children":[],"para_type":"text","pageno":184,"layout_index":3,"box":[82,286,444,30]}
- {"node_id":3200,"text":"伸缩缝,弹性材料填充","node_type":"text","parent":3197,"children":[],"para_type":"text","pageno":184,"layout_index":4,"box":[332,332,96,10]}
- {"node_id":3201,"text":"实心金属条","node_type":"text","parent":3197,"children":[],"para_type":"text","pageno":184,"layout_index":5,"box":[165,354,53,11]}
- {"node_id":3202,"text":"实心铝条","node_type":"text","parent":3197,"children":[],"para_type":"text","pageno":184,"layout_index":6,"box":[330,354,42,11]}
- {"node_id":3203,"text":"磨石垫层","node_type":"text","parent":3197,"children":[],"para_type":"text","pageno":184,"layout_index":7,"box":[167,376,43,11]}
- {"node_id":3204,"text":"水磨石面层","node_type":"text","parent":3197,"children":[],"para_type":"text","pageno":184,"layout_index":8,"box":[331,376,51,10]}
- {"node_id":3205,"text":"磨石垫层与面层伸缩缝通缝切割","node_type":"text","parent":3197,"children":[],"para_type":"text","pageno":184,"layout_index":9,"box":[321,401,145,10]}
- {"node_id":3206,"text":"A","node_type":"text","parent":3197,"children":[],"para_type":"text","pageno":184,"layout_index":10,"box":[193,497,6,6]}
- {"node_id":3207,"text":"2、落地设备保护和施工工艺","node_type":"title","parent":3196,"children":[3208,3209,3210,3211,3212,3213,3214,3215],"para_type":"title_5","pageno":184,"layout_index":11,"box":[63,553,151,11]}
- {"node_id":3208,"text":"当心触电","node_type":"text","parent":3207,"children":[],"para_type":"text","pageno":184,"layout_index":12,"box":[356,581,17,9]}
- {"node_id":3209,"text":"以上是落地设备,为了避免施工设备刮擦碰创现场无法搬离机组设备,采用木板隔离法,同时为了避免拆除原来瓷砖基础震动,以及拆除过程中导致设备基础出现松动,对设备破坏。拆除之前沿着保护木板外围切割分离后再做拆除如下图:","node_type":"text","parent":3207,"children":[],"para_type":"text","pageno":184,"layout_index":13,"box":[82,716,471,52]}
- {"node_id":3210,"text":"15","node_type":"head_tail","parent":3207,"children":[],"para_type":"head_tail","pageno":184,"layout_index":14,"box":[288,799,18,16]}
- {"node_id":3211,"text":"延设备边设置40cm高保护板预留1cm原地面进行切割","node_type":"text","parent":3207,"children":[],"para_type":"text","pageno":185,"layout_index":0,"box":[266,126,107,14]}
- {"node_id":3212,"text":"磨石面层","node_type":"text","parent":3207,"children":[],"para_type":"text","pageno":185,"layout_index":1,"box":[420,122,35,7]}
- {"node_id":3213,"text":"磨石抗裂垫层","node_type":"text","parent":3207,"children":[],"para_type":"text","pageno":185,"layout_index":2,"box":[415,135,53,7]}
- {"node_id":3214,"text":"5mm金属分割条","node_type":"text","parent":3207,"children":[],"para_type":"text","pageno":185,"layout_index":3,"box":[265,148,59,6]}
- {"node_id":3215,"text":"结构层","node_type":"text","parent":3207,"children":[],"para_type":"text","pageno":185,"layout_index":4,"box":[418,146,30,10]}
- {"node_id":3216,"text":"落地设备施工节点","node_type":"title","parent":0,"children":[3217],"para_type":"title_1","pageno":185,"layout_index":5,"box":[254,219,73,7]}
- {"node_id":3217,"text":"3、现场有悬空设备施工工艺和解决方案","node_type":"title","parent":3216,"children":[3218,3219,3220,3221,3222,3223,3224],"para_type":"title_5","pageno":185,"layout_index":6,"box":[82,241,184,10]}
- {"node_id":3218,"text":"以上是局部悬空设备,基座支撑部位与地面连接,建议沿着投影线外侧切割断开后再拆除地面,否则导致地面松动,支撑点移位导致设备失去平衡,在震动情况下设备造成破坏。投影内测建议原有基础不做拆除,表面做磨石一样颜色聚氨酯,和磨石用金属条分开如下图:","node_type":"text","parent":3217,"children":[],"para_type":"text","pageno":185,"layout_index":7,"box":[82,487,471,50]}
- {"node_id":3219,"text":"场内设备","node_type":"text","parent":3217,"children":[],"para_type":"text","pageno":185,"layout_index":8,"box":[274,586,36,10]}
- {"node_id":3220,"text":"原地面面层","node_type":"text","parent":3217,"children":[],"para_type":"text","pageno":185,"layout_index":9,"box":[275,641,43,11]}
- {"node_id":3221,"text":"磨石面层","node_type":"text","parent":3217,"children":[],"para_type":"text","pageno":185,"layout_index":10,"box":[420,626,35,10]}
- {"node_id":3222,"text":"磨石抗裂垫层","node_type":"text","parent":3217,"children":[],"para_type":"text","pageno":185,"layout_index":11,"box":[416,644,52,9]}
- {"node_id":3223,"text":"5mm金属分割条","node_type":"text","parent":3217,"children":[],"para_type":"text","pageno":185,"layout_index":12,"box":[274,660,56,9]}
- {"node_id":3224,"text":"结构层","node_type":"text","parent":3217,"children":[],"para_type":"text","pageno":185,"layout_index":13,"box":[420,660,28,11]}
- {"node_id":3225,"text":"悬挂设备施工节点","node_type":"title","parent":0,"children":[3226,3227],"para_type":"title_1","pageno":185,"layout_index":14,"box":[264,756,68,10]}
- {"node_id":3226,"text":"16","node_type":"head_tail","parent":3225,"children":[],"para_type":"head_tail","pageno":185,"layout_index":15,"box":[288,800,18,14]}
- {"node_id":3227,"text":"4、老旧踢脚线拆除及磨石施工工艺","node_type":"title","parent":3225,"children":[3228,3229,3230,3231,3232,3233,3234,3235,3236],"para_type":"title_5","pageno":186,"layout_index":0,"box":[92,46,163,10]}
- {"node_id":3228,"text":"以上是现场待拆除踢脚线,拆除后做法如下图","node_type":"text","parent":3227,"children":[],"para_type":"text","pageno":186,"layout_index":1,"box":[103,234,213,10]}
- {"node_id":3229,"text":"原墙体","node_type":"text","parent":3227,"children":[],"para_type":"text","pageno":186,"layout_index":2,"box":[216,324,25,8]}
- {"node_id":3230,"text":"金属踢脚线","node_type":"text","parent":3227,"children":[],"para_type":"text","pageno":186,"layout_index":3,"box":[216,342,41,7]}
- {"node_id":3231,"text":"磨石面层","node_type":"text","parent":3227,"children":[],"para_type":"text","pageno":186,"layout_index":4,"box":[417,341,33,7]}
- {"node_id":3232,"text":"原地面面层","node_type":"text","parent":3227,"children":[],"para_type":"text","pageno":186,"layout_index":5,"box":[278,351,42,9]}
- {"node_id":3233,"text":"磨石抗裂垫层","node_type":"text","parent":3227,"children":[],"para_type":"text","pageno":186,"layout_index":6,"box":[414,354,48,7]}
- {"node_id":3234,"text":"踢脚线基层","node_type":"text","parent":3227,"children":[],"para_type":"text","pageno":186,"layout_index":7,"box":[212,361,41,7]}
- {"node_id":3235,"text":"5mm金属分割条","node_type":"text","parent":3227,"children":[],"para_type":"text","pageno":186,"layout_index":8,"box":[278,365,54,7]}
- {"node_id":3236,"text":"结构层","node_type":"text","parent":3227,"children":[],"para_type":"text","pageno":186,"layout_index":9,"box":[417,366,25,7]}
- {"node_id":3237,"text":"踢脚线施工节点","node_type":"title","parent":0,"children":[],"para_type":"title_1","pageno":186,"layout_index":10,"box":[268,435,58,7]}
- {"node_id":3238,"text":"安装后成品踢脚线效果","node_type":"title","parent":0,"children":[3239,3240],"para_type":"title_1","pageno":186,"layout_index":11,"box":[217,636,119,12]}
- {"node_id":3239,"text":"17","node_type":"head_tail","parent":3238,"children":[],"para_type":"head_tail","pageno":186,"layout_index":12,"box":[287,799,19,16]}
- {"node_id":3240,"text":"5、现场圆形管道周边处理及解决方案","node_type":"title","parent":3238,"children":[3241,3242,3243,3244],"para_type":"title_5","pageno":187,"layout_index":0,"box":[92,73,173,10]}
- {"node_id":3241,"text":"以上是现场管道周边处理方案,在管道周围面层磨石用3毫米金属条隔离,这样不仅解决震动对地面破坏同时美观,如下图所示:","node_type":"text","parent":3240,"children":[],"para_type":"text","pageno":187,"layout_index":1,"box":[92,272,461,31]}
- {"node_id":3242,"text":"磨石地面满层","node_type":"text","parent":3240,"children":[],"para_type":"text","pageno":187,"layout_index":2,"box":[195,315,78,7]}
- {"node_id":3243,"text":"1cm厚不锈钢圆形护边条","node_type":"text","parent":3240,"children":[],"para_type":"text","pageno":187,"layout_index":3,"box":[193,323,135,7]}
- {"node_id":3244,"text":"管道","node_type":"text","parent":3240,"children":[],"para_type":"text","pageno":187,"layout_index":4,"box":[196,333,25,7]}
- {"node_id":3245,"text":"穿楼板管道施工节点","node_type":"title","parent":0,"children":[3246],"para_type":"title_1","pageno":187,"layout_index":5,"box":[282,488,82,7]}
- {"node_id":3246,"text":"6、悬空管道施工工艺及解决方案","node_type":"title","parent":3245,"children":[3247,3248,3249],"para_type":"title_5","pageno":187,"layout_index":6,"box":[64,538,173,12]}
- {"node_id":3247,"text":"以上是现场悬空设备,由于大多是管道和精密仪器,而且支撑固定点都在地面上,如果拆除会造成支撑点松动,而且空间狭小无法打磨和破拆设备使用,建议沿着投影外线切割,投影线以内做磨石同样颜色聚氨酯地坪,投影线以外做磨石地坪(如果拆除设备下面基础支撑点松动变形对设备没有影响,也可以设备下","node_type":"text","parent":3246,"children":[],"para_type":"text","pageno":187,"layout_index":7,"box":[71,730,482,51]}
- {"node_id":3248,"text":"18","node_type":"head_tail","parent":3246,"children":[],"para_type":"head_tail","pageno":187,"layout_index":8,"box":[288,799,19,16]}
- {"node_id":3249,"text":"面地面采用预制磨石板)施工图如下:","node_type":"head_tail","parent":3246,"children":[],"para_type":"head_tail","pageno":188,"layout_index":0,"box":[72,46,170,10]}
- {"node_id":3250,"text":"场内设备","node_type":"title","parent":0,"children":[3251,3252,3253,3254,3255],"para_type":"title_1","pageno":188,"layout_index":1,"box":[284,104,35,10]}
- {"node_id":3251,"text":"磨石面层","node_type":"text","parent":3250,"children":[],"para_type":"text","pageno":188,"layout_index":2,"box":[383,143,34,9]}
- {"node_id":3252,"text":"原地面面层","node_type":"text","parent":3250,"children":[],"para_type":"text","pageno":188,"layout_index":3,"box":[284,157,42,10]}
- {"node_id":3253,"text":"磨石抗裂垫层","node_type":"text","parent":3250,"children":[],"para_type":"text","pageno":188,"layout_index":4,"box":[379,160,51,10]}
- {"node_id":3254,"text":"5mm金属分割条","node_type":"text","parent":3250,"children":[],"para_type":"text","pageno":188,"layout_index":5,"box":[283,175,56,11]}
- {"node_id":3255,"text":"结构层","node_type":"text","parent":3250,"children":[],"para_type":"text","pageno":188,"layout_index":6,"box":[382,176,27,10]}
- {"node_id":3256,"text":"连廊管道下地面施工节点","node_type":"title","parent":0,"children":[3257],"para_type":"title_1","pageno":188,"layout_index":7,"box":[274,271,92,9]}
- {"node_id":3257,"text":"7、现场排水沟施工工艺及解决方案","node_type":"title","parent":3256,"children":[3258,3259,3260,3261,3262,3263,3264],"para_type":"title_5","pageno":188,"layout_index":8,"box":[70,318,187,12]}
- {"node_id":3258,"text":"以上是现场排水沟状态,磨石地面排水沟施工做法如下图:","node_type":"text","parent":3257,"children":[],"para_type":"text","pageno":188,"layout_index":9,"box":[82,529,265,10]}
- {"node_id":3259,"text":"原结构楼板","node_type":"text","parent":3257,"children":[],"para_type":"text","pageno":188,"layout_index":10,"box":[414,578,39,12]}
- {"node_id":3260,"text":"地沟盖板","node_type":"text","parent":3257,"children":[],"para_type":"text","pageno":188,"layout_index":11,"box":[280,592,32,12]}
- {"node_id":3261,"text":"碳钢角铁,表面做除锈处理","node_type":"text","parent":3257,"children":[],"para_type":"text","pageno":188,"layout_index":12,"box":[344,596,88,12]}
- {"node_id":3262,"text":"磨石面层","node_type":"text","parent":3257,"children":[],"para_type":"text","pageno":188,"layout_index":13,"box":[440,600,31,10]}
- {"node_id":3263,"text":"地面连接件","node_type":"text","parent":3257,"children":[],"para_type":"text","pageno":188,"layout_index":14,"box":[245,618,24,6]}
- {"node_id":3264,"text":"磨石抗裂垫层","node_type":"text","parent":3257,"children":[],"para_type":"text","pageno":188,"layout_index":15,"box":[441,612,43,10]}
- {"node_id":3265,"text":"地沟施工节点","node_type":"title","parent":0,"children":[3266,3267],"para_type":"title_1","pageno":188,"layout_index":16,"box":[287,710,45,11]}
- {"node_id":3266,"text":"19","node_type":"head_tail","parent":3265,"children":[],"para_type":"head_tail","pageno":188,"layout_index":17,"box":[288,799,19,16]}
- {"node_id":3267,"text":"8、其他重要施工节点图","node_type":"title","parent":3265,"children":[3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312],"para_type":"title_5","pageno":189,"layout_index":0,"box":[60,83,111,10]}
- {"node_id":3268,"text":"以下是磨石与现场电梯口,磨石与瓷砖衔接,磨石与石材衔接,磨石与现场混凝土衔接具体施工做法示意图:","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":1,"box":[70,104,483,32]}
- {"node_id":3269,"text":"电梯厅","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":2,"box":[126,178,20,6]}
- {"node_id":3270,"text":"鑫磨石","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":3,"box":[199,214,17,6]}
- {"node_id":3271,"text":"走道","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":4,"box":[128,310,18,9]}
- {"node_id":3272,"text":"餐厅","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":5,"box":[223,310,15,9]}
- {"node_id":3273,"text":"电梯门套看线","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":6,"box":[173,187,35,6]}
- {"node_id":3274,"text":"电梯门(示意)","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":7,"box":[178,196,38,6]}
- {"node_id":3275,"text":"定制MT-02深色金属分隔条,T=5mm","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":8,"box":[133,204,82,6]}
- {"node_id":3276,"text":"电梯厅电梯门洞地面交接关系","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":9,"box":[158,264,116,9]}
- {"node_id":3277,"text":"走廊","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":10,"box":[344,174,15,7]}
- {"node_id":3278,"text":"轿厢","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":11,"box":[262,177,16,7]}
- {"node_id":3279,"text":"±0.000","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":12,"box":[342,216,21,6]}
- {"node_id":3280,"text":"走廊","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":13,"box":[347,312,14,9]}
- {"node_id":3281,"text":"门套看线","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":14,"box":[442,186,26,7]}
- {"node_id":3282,"text":"定制MT-02深色金属分隔条,T-5mmST-02灰色大理石","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":15,"box":[318,196,90,14]}
- {"node_id":3283,"text":"CA-02深色编织地毯自流平","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":16,"box":[443,196,54,14]}
- {"node_id":3284,"text":"办公区地面地毯与大理石交接","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":17,"box":[365,267,129,10]}
- {"node_id":3285,"text":"鑫磨石","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":18,"box":[369,329,17,6]}
- {"node_id":3286,"text":"定制MT-02深色金属分隔条,T=5mmCT-02灰色仿水磨石地砖","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":19,"box":[412,328,85,14]}
- {"node_id":3287,"text":"办公室","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":20,"box":[464,174,20,7]}
- {"node_id":3288,"text":"±0.000","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":21,"box":[463,216,22,6]}
- {"node_id":3289,"text":"门套看线","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":22,"box":[412,314,25,6]}
- {"node_id":3290,"text":"卫生间","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":23,"box":[448,312,19,9]}
- {"node_id":3291,"text":"防水","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":24,"box":[427,344,19,6]}
- {"node_id":3292,"text":"0.010","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":25,"box":[454,348,16,6]}
- {"node_id":3293,"text":"定制MT-02深色金属分隔条,T=5mmWF-01浅色实木地板","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":26,"box":[198,327,92,15]}
- {"node_id":3294,"text":"鑫磨石","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":27,"box":[138,343,20,7]}
- {"node_id":3295,"text":"r一","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":28,"box":[204,345,7,4]}
- {"node_id":3296,"text":"防潮垫","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":29,"box":[211,344,20,6]}
- {"node_id":3297,"text":"±0.000","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":30,"box":[345,345,19,6]}
- {"node_id":3298,"text":"具","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":31,"box":[397,340,4,8]}
- {"node_id":3299,"text":"±0.000","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":32,"box":[128,361,20,6]}
- {"node_id":3300,"text":"ft","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":33,"box":[172,356,6,13]}
- {"node_id":3301,"text":"±0.000","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":34,"box":[222,361,21,6]}
- {"node_id":3302,"text":"鑫水磨石与木地板交接","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":35,"box":[174,421,102,12]}
- {"node_id":3303,"text":"走廊","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":36,"box":[183,555,24,13]}
- {"node_id":3304,"text":"定制MT-02深色金属分隔条,T-5mmST-02灰色大理石","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":37,"box":[136,594,159,25]}
- {"node_id":3305,"text":"±0.000","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":38,"box":[180,630,34,10]}
- {"node_id":3306,"text":"成的的","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":39,"box":[340,354,71,7]}
- {"node_id":3307,"text":"鑫磨石与卫生间地砖交接","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":40,"box":[390,424,101,10]}
- {"node_id":3308,"text":"办公室","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":41,"box":[394,555,34,12]}
- {"node_id":3309,"text":"门套看线","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":42,"box":[356,577,44,11]}
- {"node_id":3310,"text":"CA-02深色编织地毯自流平","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":43,"box":[357,594,93,23]}
- {"node_id":3311,"text":"±0.000","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":44,"box":[395,630,34,9]}
- {"node_id":3312,"text":"0","node_type":"text","parent":3267,"children":[],"para_type":"text","pageno":189,"layout_index":45,"box":[186,696,5,5]}
- {"node_id":3313,"text":"办公区地面地毯与大理石交接","node_type":"title","parent":0,"children":[3314,3315,3316,3317,3318,3319,3320,3321],"para_type":"title_1","pageno":189,"layout_index":46,"box":[218,718,227,18]}
- {"node_id":3314,"text":"20","node_type":"head_tail","parent":3313,"children":[],"para_type":"head_tail","pageno":189,"layout_index":47,"box":[287,800,18,14]}
- {"node_id":3315,"text":"室内","node_type":"text","parent":3313,"children":[],"para_type":"text","pageno":190,"layout_index":0,"box":[145,111,22,11]}
- {"node_id":3316,"text":"室外","node_type":"text","parent":3313,"children":[],"para_type":"text","pageno":190,"layout_index":1,"box":[352,111,24,13]}
- {"node_id":3317,"text":"幕墙门看线","node_type":"text","parent":3313,"children":[],"para_type":"text","pageno":190,"layout_index":2,"box":[302,129,53,9]}
- {"node_id":3318,"text":"鑫磨石","node_type":"text","parent":3313,"children":[],"para_type":"text","pageno":190,"layout_index":3,"box":[302,143,32,9]}
- {"node_id":3319,"text":"定制MT-02深色金属分隔条,T=5mm","node_type":"text","parent":3313,"children":[],"para_type":"text","pageno":190,"layout_index":4,"box":[302,154,154,9]}
- {"node_id":3320,"text":"室外铺装,详见景观标高","node_type":"text","parent":3313,"children":[],"para_type":"text","pageno":190,"layout_index":5,"box":[312,170,111,9]}
- {"node_id":3321,"text":"±0.000","node_type":"text","parent":3313,"children":[],"para_type":"text","pageno":190,"layout_index":6,"box":[140,178,33,8]}
- {"node_id":3322,"text":"入口大厅与室外地面交接关系","node_type":"title","parent":0,"children":[3323,3324,3356,3357],"para_type":"title_1","pageno":190,"layout_index":7,"box":[202,273,220,16]}
- {"node_id":3323,"text":"21","node_type":"head_tail","parent":3322,"children":[],"para_type":"head_tail","pageno":190,"layout_index":8,"box":[287,800,18,14]}
- {"node_id":3324,"text":"第六章改造现场的设备设施防尘、防水、防震措施","node_type":"title","parent":3322,"children":[3325,3332,3341,3348,3351],"para_type":"title_2","pageno":191,"layout_index":0,"box":[61,66,406,17]}
- {"node_id":3325,"text":"1、围挡保护隔离:","node_type":"title","parent":3324,"children":[3326,3327,3328,3329,3330,3331],"para_type":"title_5","pageno":191,"layout_index":1,"box":[65,123,95,13]}
- {"node_id":3326,"text":"施工区域使用彩条布围挡,并设置禁行标志牌和警示绕行通知,把施工区域与非施工区域隔离开,免得相互干扰。","node_type":"text","parent":3325,"children":[],"para_type":"text","pageno":191,"layout_index":2,"box":[66,148,487,30]}
- {"node_id":3327,"text":"道路封闭","node_type":"text","parent":3325,"children":[],"para_type":"text","pageno":191,"layout_index":3,"box":[431,208,91,22]}
- {"node_id":3328,"text":"正在","node_type":"text","parent":3325,"children":[],"para_type":"text","pageno":191,"layout_index":4,"box":[286,224,41,24]}
- {"node_id":3329,"text":"前方施工敬请绕行","node_type":"text","parent":3325,"children":[],"para_type":"text","pageno":191,"layout_index":5,"box":[380,296,89,48]}
- {"node_id":3330,"text":"彩条布围挡保护","node_type":"text","parent":3325,"children":[],"para_type":"text","pageno":191,"layout_index":6,"box":[134,361,74,11]}
- {"node_id":3331,"text":"警示牌","node_type":"text","parent":3325,"children":[],"para_type":"text","pageno":191,"layout_index":7,"box":[434,361,33,12]}
- {"node_id":3332,"text":"2、施工区域内机器设备的防尘保护措施","node_type":"title","parent":3324,"children":[3333,3334,3335,3336,3337,3338,3339,3340],"para_type":"title_5","pageno":191,"layout_index":8,"box":[65,407,211,11]}
- {"node_id":3333,"text":"(1)使用塑料薄膜把施工区域内重要设备设施缠绕保护起来,并用胶带固定住,免得灰尘和泥浆进入,影响设备设施性能。(设备处于未工作状态)","node_type":"text","parent":3332,"children":[],"para_type":"text","pageno":191,"layout_index":9,"box":[71,430,475,30]}
- {"node_id":3334,"text":"(2)多使用带有吸尘器的磨机进行打磨,便于回收灰尘。","node_type":"text","parent":3332,"children":[],"para_type":"text","pageno":191,"layout_index":10,"box":[76,476,257,12]}
- {"node_id":3335,"text":"(3)在打磨产生扬尘前,洒水润湿地面,减少扬尘。","node_type":"text","parent":3332,"children":[],"para_type":"text","pageno":191,"layout_index":11,"box":[77,504,234,10]}
- {"node_id":3336,"text":"福","node_type":"text","parent":3332,"children":[],"para_type":"text","pageno":191,"layout_index":12,"box":[105,666,12,9]}
- {"node_id":3337,"text":"MIXo ","node_type":"text","parent":3332,"children":[],"para_type":"text","pageno":191,"layout_index":13,"box":[86,694,22,5]}
- {"node_id":3338,"text":"SHOT ON MMIX2 ","node_type":"text","parent":3332,"children":[],"para_type":"text","pageno":191,"layout_index":14,"box":[85,702,32,4]}
- {"node_id":3339,"text":"2018\/5\/1611:42","node_type":"text","parent":3332,"children":[],"para_type":"text","pageno":191,"layout_index":15,"box":[250,702,47,6]}
- {"node_id":3340,"text":"22","node_type":"head_tail","parent":3332,"children":[],"para_type":"head_tail","pageno":191,"layout_index":16,"box":[287,800,18,14]}
- {"node_id":3341,"text":"3、防水措施","node_type":"title","parent":3324,"children":[3342,3343,3344,3345,3346,3347],"para_type":"title_5","pageno":192,"layout_index":0,"box":[65,46,67,12]}
- {"node_id":3342,"text":"因为无机磨石施工少量使用水磨,在用水打磨过程中,安排工人及时吸尘吸水,不让水有淤积,防止倒灌入设备区域,影响设备使用。另外,在插槽、插座和设备基础附近,使用缠绕膜封堵和覆盖住,防止水流入。","node_type":"text","parent":3341,"children":[],"para_type":"text","pageno":192,"layout_index":1,"box":[64,76,489,52]}
- {"node_id":3343,"text":"消火栓","node_type":"text","parent":3341,"children":[],"para_type":"text","pageno":192,"layout_index":2,"box":[412,212,22,6]}
- {"node_id":3344,"text":"机伦建材","node_type":"text","parent":3341,"children":[],"para_type":"text","pageno":192,"layout_index":3,"box":[388,236,17,3]}
- {"node_id":3345,"text":"目","node_type":"text","parent":3341,"children":[],"para_type":"text","pageno":192,"layout_index":4,"box":[421,247,6,11]}
- {"node_id":3346,"text":"MIX","node_type":"text","parent":3341,"children":[],"para_type":"text","pageno":192,"layout_index":5,"box":[123,364,21,9]}
- {"node_id":3347,"text":"SHOT ON MI MIX2 ","node_type":"text","parent":3341,"children":[],"para_type":"text","pageno":192,"layout_index":6,"box":[125,375,56,5]}
- {"node_id":3348,"text":"4、防震措施","node_type":"title","parent":3324,"children":[3349,3350],"para_type":"title_5","pageno":192,"layout_index":7,"box":[65,424,67,12]}
- {"node_id":3349,"text":"2018\/5\/2216:04","node_type":"text","parent":3348,"children":[],"para_type":"text","pageno":192,"layout_index":8,"box":[393,375,79,7]}
- {"node_id":3350,"text":"在拆除地砖前,使用小型切割机把施工区域与设备区域切割开,隔离震动;其次靠近设备区域施工,尽量使用小功率手工工具,减少震动对设备影响。","node_type":"text","parent":3348,"children":[],"para_type":"text","pageno":192,"layout_index":9,"box":[72,447,481,30]}
- {"node_id":3351,"text":"5、建筑垃圾收集与运输处理","node_type":"title","parent":3324,"children":[3352,3353,3354,3355],"para_type":"title_5","pageno":192,"layout_index":10,"box":[65,512,151,11]}
- {"node_id":3352,"text":"与业主协商好建筑垃圾堆放点,摆放建筑垃圾临时存放点标志,工人把瓷砖、砂浆、灰尘等垃圾,在送往堆放处前,最好打包装袋,便于搬运和管理,减少扬尘。另外,定期组织专车把建筑垃圾运往指定地点,争取做到当天清除。","node_type":"text","parent":3351,"children":[],"para_type":"text","pageno":192,"layout_index":11,"box":[71,536,482,51]}
- {"node_id":3353,"text":"建筑垃圾临时存放点","node_type":"text","parent":3351,"children":[],"para_type":"text","pageno":192,"layout_index":12,"box":[324,644,164,53]}
- {"node_id":3354,"text":"车","node_type":"text","parent":3351,"children":[],"para_type":"text","pageno":192,"layout_index":13,"box":[306,690,4,4]}
- {"node_id":3355,"text":"23","node_type":"head_tail","parent":3351,"children":[],"para_type":"head_tail","pageno":192,"layout_index":14,"box":[287,800,19,14]}
- {"node_id":3356,"text":"第七章鑫磨石施工技术组织方案","node_type":"title","parent":3322,"children":[],"para_type":"title_2","pageno":193,"layout_index":0,"box":[166,74,261,17]}
- {"node_id":3357,"text":"第一节绰琪无机磨石构造层次、施工工艺流程及节点说明","node_type":"title","parent":3322,"children":[3358,3359,3360,3361,3362,3363,3364,3365,3366,3367],"para_type":"title_2","pageno":193,"layout_index":1,"box":[53,114,358,14]}
- {"node_id":3358,"text":"抗渗CQ600","node_type":"text","parent":3357,"children":[],"para_type":"text","pageno":193,"layout_index":2,"box":[412,159,49,7]}
- {"node_id":3359,"text":"结晶CQ500","node_type":"text","parent":3357,"children":[],"para_type":"text","pageno":193,"layout_index":3,"box":[412,169,48,8]}
- {"node_id":3360,"text":"润色CQ400","node_type":"text","parent":3357,"children":[],"para_type":"text","pageno":193,"layout_index":4,"box":[412,181,48,7]}
- {"node_id":3361,"text":"·补孔CQ300","node_type":"text","parent":3357,"children":[],"para_type":"text","pageno":193,"layout_index":5,"box":[412,192,49,6]}
- {"node_id":3362,"text":"金属条","node_type":"text","parent":3357,"children":[],"para_type":"text","pageno":193,"layout_index":6,"box":[99,201,30,10]}
- {"node_id":3363,"text":"硅晶石面层","node_type":"text","parent":3357,"children":[],"para_type":"text","pageno":193,"layout_index":7,"box":[413,203,45,7]}
- {"node_id":3364,"text":"(厚度80-100mm)","node_type":"text","parent":3357,"children":[],"para_type":"text","pageno":193,"layout_index":8,"box":[417,211,43,6]}
- {"node_id":3365,"text":"低收缩不开裂混凝土层","node_type":"text","parent":3357,"children":[],"para_type":"text","pageno":193,"layout_index":9,"box":[412,256,81,7]}
- {"node_id":3366,"text":"(厚度50-100mm)","node_type":"text","parent":3357,"children":[],"para_type":"text","pageno":193,"layout_index":10,"box":[436,266,42,6]}
- {"node_id":3367,"text":"原结构楼板","node_type":"text","parent":3357,"children":[],"para_type":"text","pageno":193,"layout_index":11,"box":[413,308,45,7]}
- {"node_id":3368,"text":"5+1体系无机磨石结构层次","node_type":"title","parent":0,"children":[3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379],"para_type":"title_1","pageno":193,"layout_index":12,"box":[213,389,166,13]}
- {"node_id":3369,"text":"基层铁刨","node_type":"text","parent":3368,"children":[],"para_type":"text","pageno":193,"layout_index":13,"box":[269,470,42,10]}
- {"node_id":3370,"text":"瓷砖拆除砂浆层拆除","node_type":"text","parent":3368,"children":[],"para_type":"text","pageno":193,"layout_index":14,"box":[135,478,52,26]}
- {"node_id":3371,"text":"垃圾清运冲洗\/吸尘\/吸水","node_type":"text","parent":3368,"children":[],"para_type":"text","pageno":193,"layout_index":15,"box":[257,486,66,27]}
- {"node_id":3372,"text":"支模、打灰饼植筋、伸缩缝处理","node_type":"text","parent":3368,"children":[],"para_type":"text","pageno":193,"layout_index":16,"box":[378,478,81,26]}
- {"node_id":3373,"text":"基层铁刨","node_type":"text","parent":3368,"children":[],"para_type":"text","pageno":193,"layout_index":17,"box":[269,561,42,11]}
- {"node_id":3374,"text":"磨石面层摊铺消泡","node_type":"text","parent":3368,"children":[],"para_type":"text","pageno":193,"layout_index":18,"box":[140,569,42,28]}
- {"node_id":3375,"text":"冲洗清理图形分隔条固定","node_type":"text","parent":3368,"children":[],"para_type":"text","pageno":193,"layout_index":19,"box":[255,578,70,27]}
- {"node_id":3376,"text":"浇筑5cm抗裂砂浆找平层","node_type":"text","parent":3368,"children":[],"para_type":"text","pageno":193,"layout_index":20,"box":[378,572,81,22]}
- {"node_id":3377,"text":"磨石面层处理粗磨\/补孔\/抗污抗渗精磨抛光","node_type":"text","parent":3368,"children":[],"para_type":"text","pageno":193,"layout_index":21,"box":[122,654,79,41]}
- {"node_id":3378,"text":"不锈钢踢脚线安装","node_type":"text","parent":3368,"children":[],"para_type":"text","pageno":193,"layout_index":22,"box":[264,662,52,27]}
- {"node_id":3379,"text":"自检修补竣工验收","node_type":"text","parent":3368,"children":[],"para_type":"text","pageno":193,"layout_index":23,"box":[399,662,40,26]}
- {"node_id":3380,"text":"5+1体系无机磨石主要施工工艺流程","node_type":"title","parent":0,"children":[3381,3382,3383,3384,3385,3386],"para_type":"title_1","pageno":193,"layout_index":24,"box":[194,734,223,13]}
- {"node_id":3381,"text":"24","node_type":"head_tail","parent":3380,"children":[],"para_type":"head_tail","pageno":193,"layout_index":25,"box":[287,812,19,14]}
- {"node_id":3382,"text":"无机磨石构成层次和部分节点处理说明","node_type":"text","parent":3380,"children":[],"para_type":"text","pageno":194,"layout_index":0,"box":[104,73,238,14]}
- {"node_id":3383,"text":"1cm无机磨石面层","node_type":"text","parent":3380,"children":[],"para_type":"text","pageno":194,"layout_index":1,"box":[183,130,98,10]}
- {"node_id":3384,"text":"5cm抗裂砂浆层","node_type":"text","parent":3380,"children":[],"para_type":"text","pageno":194,"layout_index":2,"box":[184,148,88,11]}
- {"node_id":3385,"text":"混凝土基层","node_type":"text","parent":3380,"children":[],"para_type":"text","pageno":194,"layout_index":3,"box":[201,164,63,11]}
- {"node_id":3386,"text":"L型铝镁合金分隔条","node_type":"text","parent":3380,"children":[],"para_type":"text","pageno":194,"layout_index":4,"box":[359,192,107,10]}
- {"node_id":3387,"text":"绰琪鑫磨石构造层次","node_type":"title","parent":0,"children":[3388],"para_type":"title_1","pageno":194,"layout_index":5,"box":[210,304,174,15]}
- {"node_id":3388,"text":"1、电梯厅节点","node_type":"title","parent":3387,"children":[3389,3390,3391,3392,3393,3394,3395,3396],"para_type":"title_5","pageno":194,"layout_index":6,"box":[97,336,72,11]}
- {"node_id":3389,"text":"电梯门套看线","node_type":"text","parent":3388,"children":[],"para_type":"text","pageno":194,"layout_index":7,"box":[240,388,39,9]}
- {"node_id":3390,"text":"电梯厅","node_type":"text","parent":3388,"children":[],"para_type":"text","pageno":194,"layout_index":8,"box":[186,394,22,9]}
- {"node_id":3391,"text":"轿厢","node_type":"text","parent":3388,"children":[],"para_type":"text","pageno":194,"layout_index":9,"box":[379,395,15,10]}
- {"node_id":3392,"text":"电梯门示意","node_type":"text","parent":3388,"children":[],"para_type":"text","pageno":194,"layout_index":10,"box":[257,401,33,7]}
- {"node_id":3393,"text":"定制金属分隔条,7=5mm","node_type":"text","parent":3388,"children":[],"para_type":"text","pageno":194,"layout_index":11,"box":[222,412,70,9]}
- {"node_id":3394,"text":"无机磨石面层","node_type":"text","parent":3388,"children":[],"para_type":"text","pageno":194,"layout_index":12,"box":[228,425,39,9]}
- {"node_id":3395,"text":"±0.000","node_type":"text","parent":3388,"children":[],"para_type":"text","pageno":194,"layout_index":13,"box":[188,435,22,8]}
- {"node_id":3396,"text":"8","node_type":"text","parent":3388,"children":[],"para_type":"text","pageno":194,"layout_index":14,"box":[434,440,10,10]}
- {"node_id":3397,"text":"电梯厅电梯门洞地面交接关系","node_type":"title","parent":0,"children":[3398,3399],"para_type":"title_1","pageno":194,"layout_index":15,"box":[224,534,158,13]}
- {"node_id":3398,"text":"25","node_type":"head_tail","parent":3397,"children":[],"para_type":"head_tail","pageno":194,"layout_index":16,"box":[287,812,18,14]}
- {"node_id":3399,"text":"2、与卫生间地砖交接节点","node_type":"title","parent":3397,"children":[],"para_type":"title_5","pageno":195,"layout_index":0,"box":[107,92,137,12]}
- {"node_id":3400,"text":"无机磨石与卫生间地砖交接","node_type":"title","parent":0,"children":[3401,3402,3403,3404,3405,3406,3407,3408,3411,3414,3434],"para_type":"title_1","pageno":195,"layout_index":1,"box":[235,124,175,19]}
- {"node_id":3401,"text":"走廊","node_type":"text","parent":3400,"children":[],"para_type":"text","pageno":195,"layout_index":2,"box":[166,175,19,14]}
- {"node_id":3402,"text":"定制金属分隔条,7=5mm","node_type":"text","parent":3400,"children":[],"para_type":"text","pageno":195,"layout_index":3,"box":[314,180,82,10]}
- {"node_id":3403,"text":"卫生间","node_type":"text","parent":3400,"children":[],"para_type":"text","pageno":195,"layout_index":4,"box":[410,173,26,13]}
- {"node_id":3404,"text":"无机磨石面层","node_type":"text","parent":3400,"children":[],"para_type":"text","pageno":195,"layout_index":5,"box":[204,208,48,11]}
- {"node_id":3405,"text":"防水磨石地砖防水层","node_type":"text","parent":3400,"children":[],"para_type":"text","pageno":195,"layout_index":6,"box":[346,210,82,12]}
- {"node_id":3406,"text":"±0.000","node_type":"text","parent":3400,"children":[],"para_type":"text","pageno":195,"layout_index":7,"box":[151,222,27,11]}
- {"node_id":3407,"text":"-0.010","node_type":"text","parent":3400,"children":[],"para_type":"text","pageno":195,"layout_index":8,"box":[418,222,25,10]}
- {"node_id":3408,"text":"3、柱子的处理方式用金属条做材料分隔","node_type":"title","parent":3400,"children":[3409,3410],"para_type":"title_5","pageno":195,"layout_index":9,"box":[76,403,210,13]}
- {"node_id":3409,"text":"26","node_type":"head_tail","parent":3408,"children":[],"para_type":"head_tail","pageno":195,"layout_index":10,"box":[287,812,19,14]}
- {"node_id":3410,"text":"","node_type":"image","parent":3408,"children":[],"para_type":"image","pageno":196,"layout_index":0,"box":[103,72,378,230]}
- {"node_id":3411,"text":"4、墙边及收口用金属条与墙体分开","node_type":"title","parent":3400,"children":[3412,3413],"para_type":"title_5","pageno":196,"layout_index":1,"box":[54,340,192,15]}
- {"node_id":3412,"text":"","node_type":"image","parent":3411,"children":[],"para_type":"image","pageno":196,"layout_index":2,"box":[119,367,356,247]}
- {"node_id":3413,"text":"27 ","node_type":"head_tail","parent":3411,"children":[],"para_type":"head_tail","pageno":196,"layout_index":3,"box":[290,815,20,16]}
- {"node_id":3414,"text":"5、地面原预留缝处理方式","node_type":"title","parent":3400,"children":[3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433],"para_type":"title_5","pageno":197,"layout_index":0,"box":[52,100,140,11]}
- {"node_id":3415,"text":"1010","node_type":"text","parent":3414,"children":[],"para_type":"text","pageno":197,"layout_index":1,"box":[201,156,18,9]}
- {"node_id":3416,"text":"双向金属条","node_type":"text","parent":3414,"children":[],"para_type":"text","pageno":197,"layout_index":2,"box":[384,149,24,16]}
- {"node_id":3417,"text":"板内上部钢筋","node_type":"text","parent":3414,"children":[],"para_type":"text","pageno":197,"layout_index":3,"box":[139,162,29,7]}
- {"node_id":3418,"text":"楼面","node_type":"text","parent":3414,"children":[],"para_type":"text","pageno":197,"layout_index":4,"box":[97,166,13,8]}
- {"node_id":3419,"text":"412","node_type":"text","parent":3414,"children":[],"para_type":"text","pageno":197,"layout_index":5,"box":[238,163,18,8]}
- {"node_id":3420,"text":"8","node_type":"text","parent":3414,"children":[],"para_type":"text","pageno":197,"layout_index":6,"box":[207,181,4,4]}
- {"node_id":3421,"text":"硅晶石面层","node_type":"text","parent":3414,"children":[],"para_type":"text","pageno":197,"layout_index":7,"box":[360,175,24,13]}
- {"node_id":3422,"text":"6—","node_type":"text","parent":3414,"children":[],"para_type":"text","pageno":197,"layout_index":8,"box":[402,175,9,11]}
- {"node_id":3423,"text":"Bnm ","node_type":"text","parent":3414,"children":[],"para_type":"text","pageno":197,"layout_index":9,"box":[410,176,16,11]}
- {"node_id":3424,"text":"硅","node_type":"text","parent":3414,"children":[],"para_type":"text","pageno":197,"layout_index":10,"box":[437,177,4,9]}
- {"node_id":3425,"text":"桂晶石面层","node_type":"text","parent":3414,"children":[],"para_type":"text","pageno":197,"layout_index":11,"box":[438,174,22,14]}
- {"node_id":3426,"text":"显","node_type":"text","parent":3414,"children":[],"para_type":"text","pageno":197,"layout_index":12,"box":[113,187,10,10]}
- {"node_id":3427,"text":"楼面","node_type":"text","parent":3414,"children":[],"para_type":"text","pageno":197,"layout_index":13,"box":[484,181,13,16]}
- {"node_id":3428,"text":"20mm宽木条","node_type":"text","parent":3414,"children":[],"para_type":"text","pageno":197,"layout_index":14,"box":[234,218,34,6]}
- {"node_id":3429,"text":"此钢梁顶面不设置抗剪栓钉","node_type":"text","parent":3414,"children":[],"para_type":"text","pageno":197,"layout_index":15,"box":[122,223,58,8]}
- {"node_id":3430,"text":"沿楼面板通长设置","node_type":"text","parent":3414,"children":[],"para_type":"text","pageno":197,"layout_index":16,"box":[231,226,38,7]}
- {"node_id":3431,"text":"钢梁","node_type":"text","parent":3414,"children":[],"para_type":"text","pageno":197,"layout_index":17,"box":[178,234,13,9]}
- {"node_id":3432,"text":"A","node_type":"text","parent":3414,"children":[],"para_type":"text","pageno":197,"layout_index":18,"box":[201,290,14,14]}
- {"node_id":3433,"text":"1:10","node_type":"text","parent":3414,"children":[],"para_type":"text","pageno":197,"layout_index":19,"box":[224,292,20,12]}
- {"node_id":3434,"text":"6、结构缝处理","node_type":"title","parent":3400,"children":[3435],"para_type":"title_5","pageno":197,"layout_index":20,"box":[52,354,79,12]}
- {"node_id":3435,"text":"找平层摊铺前,结构缝两侧及地沟边缘等部位安装50×50×3mm镀锌角钢收边条,角钢收边条用Φ10mm钢筋植筋焊接固定于原始混凝土基面,间隔不大于500mm,角钢顶部与地坪表面相平。地坪施工完成后在结构缝上安装成品304不锈钢承重型建筑变形缝装置。","node_type":"text","parent":3434,"children":[],"para_type":"text","pageno":197,"layout_index":21,"box":[53,378,487,57]}
- {"node_id":3436,"text":"图3-1变形缝装置参考效果","node_type":"title","parent":0,"children":[3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451],"para_type":"title_1","pageno":197,"layout_index":22,"box":[243,653,128,10]}
- {"node_id":3437,"text":"28","node_type":"head_tail","parent":3436,"children":[],"para_type":"head_tail","pageno":197,"layout_index":23,"box":[287,812,19,14]}
- {"node_id":3438,"text":"铝合金\/不锈钢面板","node_type":"text","parent":3436,"children":[],"para_type":"text","pageno":198,"layout_index":0,"box":[119,78,123,14]}
- {"node_id":3439,"text":"装饰层","node_type":"text","parent":3436,"children":[],"para_type":"text","pageno":198,"layout_index":1,"box":[118,114,69,17]}
- {"node_id":3440,"text":"填缝胶","node_type":"text","parent":3436,"children":[],"para_type":"text","pageno":198,"layout_index":2,"box":[182,114,47,17]}
- {"node_id":3441,"text":"4","node_type":"text","parent":3436,"children":[],"para_type":"text","pageno":198,"layout_index":3,"box":[125,145,22,21]}
- {"node_id":3442,"text":"铝合金基座","node_type":"text","parent":3436,"children":[],"para_type":"text","pageno":198,"layout_index":4,"box":[117,185,73,16]}
- {"node_id":3443,"text":"不锈钢滑杆@500","node_type":"head_tail","parent":3436,"children":[],"para_type":"head_tail","pageno":198,"layout_index":5,"box":[390,78,111,16]}
- {"node_id":3444,"text":"ES ","node_type":"text","parent":3436,"children":[],"para_type":"text","pageno":198,"layout_index":6,"box":[329,95,16,9]}
- {"node_id":3445,"text":"M6金属胀锚","node_type":"text","parent":3436,"children":[],"para_type":"text","pageno":198,"layout_index":7,"box":[116,242,73,14]}
- {"node_id":3446,"text":"止水带","node_type":"text","parent":3436,"children":[],"para_type":"text","pageno":198,"layout_index":8,"box":[264,242,43,14]}
- {"node_id":3447,"text":"选用阻火带","node_type":"text","parent":3436,"children":[],"para_type":"text","pageno":198,"layout_index":9,"box":[392,234,72,14]}
- {"node_id":3448,"text":"150","node_type":"text","parent":3436,"children":[],"para_type":"text","pageno":198,"layout_index":10,"box":[244,260,21,14]}
- {"node_id":3449,"text":"螺栓@300(交错排列)","node_type":"text","parent":3436,"children":[],"para_type":"text","pageno":198,"layout_index":11,"box":[115,262,68,32]}
- {"node_id":3450,"text":"W","node_type":"text","parent":3436,"children":[],"para_type":"text","pageno":198,"layout_index":12,"box":[330,260,11,13]}
- {"node_id":3451,"text":"按工程设计","node_type":"text","parent":3436,"children":[],"para_type":"text","pageno":198,"layout_index":13,"box":[392,254,72,15]}
- {"node_id":3452,"text":"图3-2变形缝装置参考构造","node_type":"title","parent":0,"children":[3453,3454,3456,3465],"para_type":"title_1","pageno":198,"layout_index":14,"box":[243,315,129,10]}
- {"node_id":3453,"text":"为防止地坪后期开裂,按不大于8m×8m分缝。","node_type":"text","parent":3452,"children":[],"para_type":"text","pageno":198,"layout_index":15,"box":[78,336,237,10]}
- {"node_id":3454,"text":"7、定置管理划线(环氧地坪漆)","node_type":"title","parent":3452,"children":[3455],"para_type":"title_5","pageno":198,"layout_index":16,"box":[53,364,169,11]}
- {"node_id":3455,"text":"将定置管理划线区域打磨平整、清洗干净,坑洞用1:2水泥砂浆掺801胶水找平,麻面处刷掺801胶水泥浆满刮两遍后,涂刷亮黄色环氧地坪漆2底1中2面共5遍。要求表面平整,边缘清晰平直。施工中需保护两侧地坪不被油漆污染。","node_type":"text","parent":3454,"children":[],"para_type":"text","pageno":198,"layout_index":17,"box":[53,388,487,57]}
- {"node_id":3456,"text":"8、成品不锈钢踢脚线制安","node_type":"title","parent":3452,"children":[3457,3458,3459,3460,3461,3462,3463,3464],"para_type":"title_5","pageno":198,"layout_index":18,"box":[52,464,140,11]}
- {"node_id":3457,"text":"使用成品哑光拉丝304不锈钢踢脚线,高度15cm,专用卡扣固定,每米设置不少于两个卡扣。","node_type":"text","parent":3456,"children":[],"para_type":"text","pageno":198,"layout_index":19,"box":[52,487,488,35]}
- {"node_id":3458,"text":"不锈钢面板","node_type":"text","parent":3456,"children":[],"para_type":"text","pageno":198,"layout_index":20,"box":[398,608,26,6]}
- {"node_id":3459,"text":"PVC内衬","node_type":"text","parent":3456,"children":[],"para_type":"text","pageno":198,"layout_index":21,"box":[471,610,17,4]}
- {"node_id":3460,"text":"ABS转角卡扣配件","node_type":"text","parent":3456,"children":[],"para_type":"text","pageno":198,"layout_index":22,"box":[387,692,36,4]}
- {"node_id":3461,"text":"卡扣卡槽设计","node_type":"text","parent":3456,"children":[],"para_type":"text","pageno":198,"layout_index":23,"box":[461,692,28,4]}
- {"node_id":3462,"text":"图3-4不锈钢踢脚线结构","node_type":"text","parent":3456,"children":[],"para_type":"text","pageno":198,"layout_index":24,"box":[332,712,116,10]}
- {"node_id":3463,"text":"图3-3不锈钢踢脚线成品效果","node_type":"text","parent":3456,"children":[],"para_type":"text","pageno":198,"layout_index":25,"box":[145,712,138,9]}
- {"node_id":3464,"text":"29","node_type":"head_tail","parent":3456,"children":[],"para_type":"head_tail","pageno":198,"layout_index":26,"box":[287,812,18,14]}
- {"node_id":3465,"text":"第二节旧基层拆除和新抗裂砂浆层浇筑","node_type":"title","parent":3452,"children":[3466],"para_type":"title_2","pageno":199,"layout_index":0,"box":[174,74,246,15]}
- {"node_id":3466,"text":"一、瓷砖、砂浆层铲除和清理","node_type":"title","parent":3465,"children":[3467,3468,3469],"para_type":"title_3","pageno":199,"layout_index":1,"box":[54,101,156,13]}
- {"node_id":3467,"text":"瓷砖和砂浆层铲除:使用地坪铲除机铲除旧地坪,然后再使用中型铣刨机铣刨地面,铲除5-8cm 混凝土基层,然后安排工人把建筑垃圾收集起来,集中堆放和清理,找垃圾车清运垃圾。","node_type":"text","parent":3466,"children":[],"para_type":"text","pageno":199,"layout_index":2,"box":[54,129,439,32]}
- {"node_id":3468,"text":"旧瓷砖拆除","node_type":"text","parent":3466,"children":[],"para_type":"text","pageno":199,"layout_index":3,"box":[114,313,48,10]}
- {"node_id":3469,"text":"瓷砖拆除后","node_type":"text","parent":3466,"children":[],"para_type":"text","pageno":199,"layout_index":4,"box":[348,313,49,10]}
- {"node_id":3470,"text":"砂浆基层铣刨铲除","node_type":"title","parent":0,"children":[3471,3472],"para_type":"title_1","pageno":199,"layout_index":5,"box":[276,479,83,11]}
- {"node_id":3471,"text":"二、支模,设置伸缩缝","node_type":"text","parent":3470,"children":[],"para_type":"text","pageno":199,"layout_index":6,"box":[54,511,104,11]}
- {"node_id":3472,"text":"根据激光或者红外线定位,铠装缝连接按照顺序,首先安装交叉连接处,然后依次从交叉连接处、墙体或柱脚隔离处进行安装。交叉连接时把两根铠装缝互相搭接相连,在搭接处使用定位弹簧开口销、易断塑料螺栓和螺母进行固定安装。如果是从墙或柱子处安装,要预留相应的空位,以便能够容纳可压缩隔离泡沫材料。","node_type":"text","parent":3470,"children":[],"para_type":"text","pageno":199,"layout_index":7,"box":[54,537,486,71]}
- {"node_id":3473,"text":"支模\/伸缩缝","node_type":"title","parent":0,"children":[3474,3475,3483],"para_type":"title_1","pageno":199,"layout_index":8,"box":[240,762,60,11]}
- {"node_id":3474,"text":"30 ","node_type":"head_tail","parent":3473,"children":[],"para_type":"head_tail","pageno":199,"layout_index":9,"box":[290,815,20,16]}
- {"node_id":3475,"text":"三、吸尘、冲洗地面、洒水湿润","node_type":"title","parent":3473,"children":[3476,3477,3478,3479,3480,3481,3482],"para_type":"title_3","pageno":200,"layout_index":0,"box":[54,104,168,13]}
- {"node_id":3476,"text":"吸尘、冲洗地面、润湿,是整个工艺的关键工序,会直接导致地面的粘结强度及面层的抗压强","node_type":"text","parent":3475,"children":[],"para_type":"text","pageno":200,"layout_index":1,"box":[54,122,434,11]}
- {"node_id":3477,"text":"度等各项技术指标。","node_type":"text","parent":3475,"children":[],"para_type":"text","pageno":200,"layout_index":2,"box":[54,135,93,11]}
- {"node_id":3478,"text":"(1)首先将铣刨后安装好铠甲缝的地面清理干净,再用吸尘器将灰尘吸除干净。一定要将灰尘吸除干净。","node_type":"text","parent":3475,"children":[],"para_type":"text","pageno":200,"layout_index":3,"box":[54,155,434,25]}
- {"node_id":3479,"text":"(2)在施工面层的前一天提前冲水湿润,观察表面只要干燥就及时补充水分,使其充分润湿","node_type":"text","parent":3475,"children":[],"para_type":"text","pageno":200,"layout_index":4,"box":[54,183,424,11]}
- {"node_id":3480,"text":"","node_type":"image","parent":3475,"children":[],"para_type":"image","pageno":200,"layout_index":5,"box":[80,195,393,176]}
- {"node_id":3481,"text":"地面清理和冲洗","node_type":"text","parent":3475,"children":[],"para_type":"text","pageno":200,"layout_index":6,"box":[215,374,77,12]}
- {"node_id":3482,"text":"","node_type":"image","parent":3475,"children":[],"para_type":"image","pageno":200,"layout_index":7,"box":[77,402,398,179]}
- {"node_id":3483,"text":"四、绑扎和铺设钢筋网片","node_type":"title","parent":3473,"children":[3484,3485,3486],"para_type":"title_3","pageno":200,"layout_index":8,"box":[54,612,132,13]}
- {"node_id":3484,"text":"在浇筑抗裂砂浆前,先进行单层双向钢丝网片的铺设,内配HPB300直径8mm单层双向间距150mm,要求下方必须支设马镫,或植入钢筋,用绑扎丝固定,以确保钢丝网片在混凝土摊铺和振捣时不被破坏和坍塌,同时确保钢丝网片与基层地坪面保持高度为20mm的样子。","node_type":"text","parent":3483,"children":[],"para_type":"text","pageno":200,"layout_index":9,"box":[54,627,486,54]}
- {"node_id":3485,"text":"31 ","node_type":"head_tail","parent":3483,"children":[],"para_type":"head_tail","pageno":200,"layout_index":10,"box":[290,815,20,16]}
- {"node_id":3486,"text":"铺设钢筋网片","node_type":"text","parent":3483,"children":[],"para_type":"text","pageno":201,"layout_index":0,"box":[96,203,62,11]}
- {"node_id":3487,"text":"设置隔离缝","node_type":"title","parent":0,"children":[3488,3489,3490],"para_type":"title_1","pageno":201,"layout_index":1,"box":[279,203,52,11]}
- {"node_id":3488,"text":"柱脚周边钢筋加强","node_type":"text","parent":3487,"children":[],"para_type":"text","pageno":201,"layout_index":2,"box":[426,203,84,11]}
- {"node_id":3489,"text":"在柱边、设备基础及墙角等部位,也需要用钢筋网片加强,钢筋沿柱的四周铺设,钢筋沿柱对角线方向放置,即需垂直裂缝的开展方向。保证钢筋距地坪表面距离为20mm。","node_type":"text","parent":3487,"children":[],"para_type":"text","pageno":201,"layout_index":3,"box":[54,229,486,31]}
- {"node_id":3490,"text":"","node_type":"image","parent":3487,"children":[],"para_type":"image","pageno":201,"layout_index":4,"box":[107,268,406,168]}
- {"node_id":3491,"text":"伸缩缝和钢筋网片配置情况(上图)","node_type":"title","parent":0,"children":[3492],"para_type":"title_1","pageno":201,"layout_index":5,"box":[227,454,167,11]}
- {"node_id":3492,"text":"五、抗裂砂浆5cm找平层施工","node_type":"title","parent":3491,"children":[3493],"para_type":"title_3","pageno":201,"layout_index":6,"box":[54,501,159,13]}
- {"node_id":3493,"text":"","node_type":"image","parent":3492,"children":[],"para_type":"image","pageno":201,"layout_index":7,"box":[96,522,414,148]}
- {"node_id":3494,"text":"抗裂砂浆施工流程工艺图片","node_type":"title","parent":0,"children":[3495,3507,3509,3511,3554],"para_type":"title_1","pageno":201,"layout_index":8,"box":[211,684,126,11]}
- {"node_id":3495,"text":"(一)作业前题条件","node_type":"title","parent":3494,"children":[3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506],"para_type":"title_4","pageno":201,"layout_index":9,"box":[54,711,93,11]}
- {"node_id":3496,"text":"1施工完的结构已办完验收手续。","node_type":"text","parent":3495,"children":[],"para_type":"text","pageno":201,"layout_index":10,"box":[54,733,154,11]}
- {"node_id":3497,"text":"2门框,钉好保护铁皮和木板。","node_type":"text","parent":3495,"children":[],"para_type":"text","pageno":201,"layout_index":11,"box":[54,753,135,11]}
- {"node_id":3498,"text":"3安装好水暖立管并堵牢管洞。","node_type":"text","parent":3495,"children":[],"para_type":"text","pageno":201,"layout_index":12,"box":[54,774,143,11]}
- {"node_id":3499,"text":"32 ","node_type":"head_tail","parent":3495,"children":[],"para_type":"head_tail","pageno":201,"layout_index":13,"box":[290,815,20,16]}
- {"node_id":3500,"text":"4室内墙面从标高点以上1M处用墨斗弹画出标线弹好+0.3m水平控制线。","node_type":"text","parent":3495,"children":[],"para_type":"text","pageno":202,"layout_index":0,"box":[54,75,345,11]}
- {"node_id":3501,"text":"5地面管线、插座、指示标识安装合格标高一致。","node_type":"text","parent":3495,"children":[],"para_type":"text","pageno":202,"layout_index":1,"box":[54,95,227,11]}
- {"node_id":3502,"text":"6用薄膜胶带做好相关成品防护。","node_type":"text","parent":3495,"children":[],"para_type":"text","pageno":202,"layout_index":2,"box":[54,116,154,11]}
- {"node_id":3503,"text":"7《进场报告》,由甲方或总包方出具书面的进场通知书。","node_type":"text","parent":3495,"children":[],"para_type":"text","pageno":202,"layout_index":3,"box":[54,136,267,11]}
- {"node_id":3504,"text":"8《基础调查表》,根据地面基础情况做好各项风险分析并提出解决措施,特殊情况须经责任相关方确认签字。","node_type":"text","parent":3495,"children":[],"para_type":"text","pageno":202,"layout_index":4,"box":[54,156,486,30]}
- {"node_id":3505,"text":"9图纸深化,根据基础结构图纸及地面设计图纸,合理的设置伸缩缝及面层图案线条的合理深化(如根据基础原有伸缩缝进行切割,需要做好标记)。","node_type":"text","parent":3495,"children":[],"para_type":"text","pageno":202,"layout_index":5,"box":[54,197,486,30]}
- {"node_id":3506,"text":"10依据实际情况编写施工方案及施工作业指导书。","node_type":"text","parent":3495,"children":[],"para_type":"text","pageno":202,"layout_index":6,"box":[54,238,233,11]}
- {"node_id":3507,"text":"(二)材料准备","node_type":"title","parent":3494,"children":[3508],"para_type":"title_4","pageno":202,"layout_index":7,"box":[54,257,72,11]}
- {"node_id":3508,"text":"根据项目需要准备不开裂砂浆、砂子为中粗黄砂(不可含泥)、石子直径8-15mm(不可含泥)、聚合物抗裂外加剂及相关辅助材料。","node_type":"text","parent":3507,"children":[],"para_type":"text","pageno":202,"layout_index":8,"box":[54,277,486,32]}
- {"node_id":3509,"text":"(三)施工机具","node_type":"title","parent":3494,"children":[3510],"para_type":"title_4","pageno":202,"layout_index":9,"box":[54,318,72,11]}
- {"node_id":3510,"text":"选用准备好的工具、在各工序施工时合理进出、使用后及时清理保存。","node_type":"text","parent":3509,"children":[],"para_type":"text","pageno":202,"layout_index":10,"box":[54,339,324,11]}
- {"node_id":3511,"text":"(四)工艺流程","node_type":"title","parent":3494,"children":[3512,3513,3515,3535,3537],"para_type":"title_4","pageno":202,"layout_index":11,"box":[54,359,72,11]}
- {"node_id":3512,"text":"标高测定弹水平线→基层处理→设置1.5m*1.5m水平灰饼(支架找平定位器)→支架边模立模定位→洒水润湿洒(控制明水)→机拌抗裂细石混凝土→浇筑抗裂细石混凝土[边施工边红外线测量]→抹光机抹平压实→养护→切缝","node_type":"text","parent":3511,"children":[],"para_type":"text","pageno":202,"layout_index":12,"box":[54,379,486,54]}
- {"node_id":3513,"text":"1、标高测定、标画水平线","node_type":"title","parent":3511,"children":[3514],"para_type":"title_5","pageno":202,"layout_index":13,"box":[54,442,120,11]}
- {"node_id":3514,"text":"用高精度激光扫平仪配合数显测量仪、墨斗,依据标高设计要求从楼层最大面积的中心点支架调平高精度激光扫平仪、从标高点向下预留7mm为铺设面层材料的厚度,从标高点以上1000MM处用墨斗弹画出标线以做后期施工测量依据线,依据线向下1007mm为铺设抗裂砂浆找平层高度测量依据依据线向下998mm为铺设面层材料高度测量依据,依据线向下1000mm为面层成品高度的测量依据,标线从楼层大区域往周边小区域顺延施工","node_type":"text","parent":3513,"children":[],"para_type":"text","pageno":202,"layout_index":14,"box":[54,461,486,93]}
- {"node_id":3515,"text":"2、基层处理","node_type":"title","parent":3511,"children":[3516,3517,3519,3521],"para_type":"title_5","pageno":202,"layout_index":15,"box":[54,565,57,11]}
- {"node_id":3516,"text":"基层清理是防止地面空鼓的重要工序,一定要认真做好。","node_type":"text","parent":3515,"children":[],"para_type":"text","pageno":202,"layout_index":16,"box":[54,584,254,11]}
- {"node_id":3517,"text":"2.1基面清理:","node_type":"title","parent":3515,"children":[3518],"para_type":"title_6","pageno":202,"layout_index":17,"box":[54,606,67,11]}
- {"node_id":3518,"text":"使用铣铇机、吸尘机、角磨机、剁斧等相关工具将基层表面及边角的浮土、砂浆块等杂物清理干净并且有毛面效果。楼板表面的油污,应用5%~10%浓度的烧碱溶液清洗干净。","node_type":"text","parent":3517,"children":[],"para_type":"text","pageno":202,"layout_index":18,"box":[54,625,486,31]}
- {"node_id":3519,"text":"2.2裂缝处理:","node_type":"title","parent":3515,"children":[3520],"para_type":"title_6","pageno":202,"layout_index":19,"box":[54,667,67,11]}
- {"node_id":3520,"text":"细小的裂缝可以用绰琪硅晶石修补砂浆直接修补,较大的裂缝用切割机切成V字型口,再用绰琪硅晶石修补砂浆填平。","node_type":"text","parent":3519,"children":[],"para_type":"text","pageno":202,"layout_index":20,"box":[54,686,486,31]}
- {"node_id":3521,"text":"2.3平整度处理:","node_type":"title","parent":3515,"children":[3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534],"para_type":"title_6","pageno":202,"layout_index":21,"box":[54,728,78,11]}
- {"node_id":3522,"text":"要根据标高线检查基础平整度, 局部过高凸出区域需用器械降低高度、防止地面过簿而产生空鼓开裂、抗裂砂浆找平层的厚度最薄处不少于5CM。基层清理是防止地面空鼓的重要工序,一定要认真做好。","node_type":"text","parent":3521,"children":[],"para_type":"text","pageno":202,"layout_index":22,"box":[54,747,486,32]}
- {"node_id":3523,"text":"33 ","node_type":"head_tail","parent":3521,"children":[],"para_type":"head_tail","pageno":202,"layout_index":23,"box":[290,815,20,16]}
- {"node_id":3524,"text":"3.设置水平标高,做灰饼,支模板","node_type":"text","parent":3521,"children":[],"para_type":"text","pageno":203,"layout_index":0,"box":[53,319,159,10]}
- {"node_id":3525,"text":"按照设计要求找准1米线,确定完成面预留标高,会并作为后期施工统一高度依据一定要精准。模板分仓确定施工边界,以及规整二次施工面,本项目所有边界线均已基础切割缝隙重叠,同时标高精准。","node_type":"text","parent":3521,"children":[],"para_type":"text","pageno":203,"layout_index":1,"box":[53,339,487,31]}
- {"node_id":3526,"text":"10071米零7毫米","node_type":"text","parent":3521,"children":[],"para_type":"text","pageno":203,"layout_index":2,"box":[296,449,23,12]}
- {"node_id":3527,"text":"120cm","node_type":"text","parent":3521,"children":[],"para_type":"text","pageno":203,"layout_index":3,"box":[357,481,15,4]}
- {"node_id":3528,"text":"0","node_type":"text","parent":3521,"children":[],"para_type":"text","pageno":203,"layout_index":4,"box":[257,546,4,4]}
- {"node_id":3529,"text":"4、用水冲洗拉毛地面,出去表面灰尘,垃圾,残留的水分(用吸尘器)等致使地面干净,没有明水。","node_type":"text","parent":3521,"children":[],"para_type":"text","pageno":203,"layout_index":5,"box":[53,591,460,10]}
- {"node_id":3530,"text":"34","node_type":"head_tail","parent":3521,"children":[],"para_type":"head_tail","pageno":203,"layout_index":6,"box":[286,812,20,16]}
- {"node_id":3531,"text":"20200529","node_type":"text","parent":3521,"children":[],"para_type":"text","pageno":204,"layout_index":0,"box":[179,213,64,9]}
- {"node_id":3532,"text":"08:24:36","node_type":"text","parent":3521,"children":[],"para_type":"text","pageno":204,"layout_index":1,"box":[137,222,141,24]}
- {"node_id":3533,"text":"刻水印相机”","node_type":"text","parent":3521,"children":[],"para_type":"text","pageno":204,"layout_index":2,"box":[194,256,83,12]}
- {"node_id":3534,"text":"浙江省杭州西湖区祥余线","node_type":"text","parent":3521,"children":[],"para_type":"text","pageno":204,"layout_index":3,"box":[140,271,124,11]}
- {"node_id":3535,"text":"5、抗裂砂浆层浇筑","node_type":"title","parent":3511,"children":[3536],"para_type":"title_5","pageno":204,"layout_index":4,"box":[52,306,90,10]}
- {"node_id":3536,"text":"再次确定标高,施工区域,检查基础湿水情况不可有明水(要干燥撒少量水)将搅拌好材料进行摊铺按照灰饼模板既定标高施工,用震动刮尺振实,拉平,收光。","node_type":"text","parent":3535,"children":[],"para_type":"text","pageno":204,"layout_index":5,"box":[54,326,485,30]}
- {"node_id":3537,"text":"6、注意事项","node_type":"title","parent":3511,"children":[3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553],"para_type":"title_5","pageno":204,"layout_index":6,"box":[52,585,59,10]}
- {"node_id":3538,"text":"6.1.严格按照材料各种原料配比进行配比","node_type":"text","parent":3537,"children":[],"para_type":"text","pageno":204,"layout_index":7,"box":[53,606,191,9]}
- {"node_id":3539,"text":"6.2.严格控制水分,地面湿度。","node_type":"text","parent":3537,"children":[],"para_type":"text","pageno":204,"layout_index":8,"box":[52,626,142,10]}
- {"node_id":3540,"text":"6.3.精准确定标高,完成面到1米线距离1.01米。","node_type":"text","parent":3537,"children":[],"para_type":"text","pageno":204,"layout_index":9,"box":[53,646,227,10]}
- {"node_id":3541,"text":"6.4.沿着原基础切割缝支模作为阶段施工区域,每个阶段施工区域必须一次性施工完成不能分2次浇筑。","node_type":"text","parent":3537,"children":[],"para_type":"text","pageno":204,"layout_index":10,"box":[52,666,487,11]}
- {"node_id":3542,"text":"6.5.用震动刮尺振实拉平。","node_type":"text","parent":3537,"children":[],"para_type":"text","pageno":204,"layout_index":11,"box":[53,687,119,9]}
- {"node_id":3543,"text":"6.6.切缝沿着施工缝切割。","node_type":"text","parent":3537,"children":[],"para_type":"text","pageno":204,"layout_index":12,"box":[53,708,119,10]}
- {"node_id":3544,"text":"35","node_type":"head_tail","parent":3537,"children":[],"para_type":"head_tail","pageno":204,"layout_index":13,"box":[287,812,19,16]}
- {"node_id":3545,"text":"1米水平线","node_type":"text","parent":3537,"children":[],"para_type":"text","pageno":205,"layout_index":0,"box":[431,83,39,10]}
- {"node_id":3546,"text":"灰饼找平点","node_type":"text","parent":3537,"children":[],"para_type":"text","pageno":205,"layout_index":1,"box":[431,106,45,12]}
- {"node_id":3547,"text":"洒水湿润","node_type":"text","parent":3537,"children":[],"para_type":"text","pageno":205,"layout_index":2,"box":[430,128,35,10]}
- {"node_id":3548,"text":"100c中","node_type":"text","parent":3537,"children":[],"para_type":"text","pageno":205,"layout_index":3,"box":[207,148,10,4]}
- {"node_id":3549,"text":"1米零7毫米","node_type":"text","parent":3537,"children":[],"para_type":"text","pageno":205,"layout_index":4,"box":[241,168,15,4]}
- {"node_id":3550,"text":"2米靠尺3mm平整度","node_type":"text","parent":3537,"children":[],"para_type":"text","pageno":205,"layout_index":5,"box":[430,184,71,10]}
- {"node_id":3551,"text":"浇筑混凝土","node_type":"text","parent":3537,"children":[],"para_type":"text","pageno":205,"layout_index":6,"box":[431,210,44,10]}
- {"node_id":3552,"text":"基础垫层","node_type":"text","parent":3537,"children":[],"para_type":"text","pageno":205,"layout_index":7,"box":[430,255,37,11]}
- {"node_id":3553,"text":"0","node_type":"text","parent":3537,"children":[],"para_type":"text","pageno":205,"layout_index":8,"box":[230,286,4,5]}
- {"node_id":3554,"text":"第三节厚度1cm无机磨石面层施工","node_type":"title","parent":3494,"children":[3555,3562,3565,3572,3577,3585,3589,3598],"para_type":"title_2","pageno":205,"layout_index":9,"box":[53,317,195,12]}
- {"node_id":3555,"text":"1、基层处理","node_type":"title","parent":3554,"children":[3556,3557,3558,3559,3560,3561],"para_type":"title_5","pageno":205,"layout_index":10,"box":[53,341,58,10]}
- {"node_id":3556,"text":"(1)先对地面现场基层地进行简单的清扫、吸尘处理后,详细检查地面情况;有无开裂、空鼓、松软,并在实地进行标注及地面施工图纸处注明面局部基层如比较松软,应采用专业洗刨机,对地面进行洗刨处理,把表层松软的混凝土层去除;使基层地面程度达到要求;","node_type":"text","parent":3555,"children":[],"para_type":"text","pageno":205,"layout_index":11,"box":[53,361,486,51]}
- {"node_id":3557,"text":"(2)使用大型打磨机与研磨机共同作业,对基层地面进行打磨、研磨处理,边角处用小型打磨机进行打磨;(3)地面吸尘后,使用大型铣刨机或抛丸机对地面进行铣刨或抛丸处理,提高基层表面粗糙度,达到地面拉毛效果;","node_type":"text","parent":3555,"children":[],"para_type":"text","pageno":205,"layout_index":12,"box":[52,422,488,52]}
- {"node_id":3558,"text":"(4)基层地面洗刨处理后,用工业吸尘器对地面进行仔细吸尘处理,不能残留有影响到材料粘结力的杂质。","node_type":"text","parent":3555,"children":[],"para_type":"text","pageno":205,"layout_index":13,"box":[52,484,487,31]}
- {"node_id":3559,"text":"地面打磨处理","node_type":"text","parent":3555,"children":[],"para_type":"text","pageno":205,"layout_index":14,"box":[238,636,58,9]}
- {"node_id":3560,"text":"吸尘处理","node_type":"text","parent":3555,"children":[],"para_type":"text","pageno":205,"layout_index":15,"box":[254,722,39,8]}
- {"node_id":3561,"text":"地面抛丸处理","node_type":"text","parent":3555,"children":[],"para_type":"text","pageno":205,"layout_index":16,"box":[420,722,56,7]}
- {"node_id":3562,"text":"2、分隔条设置","node_type":"title","parent":3554,"children":[3563,3564],"para_type":"title_5","pageno":205,"layout_index":17,"box":[52,744,69,10]}
- {"node_id":3563,"text":"36","node_type":"head_tail","parent":3562,"children":[],"para_type":"head_tail","pageno":205,"layout_index":18,"box":[287,812,20,16]}
- {"node_id":3564,"text":"整体地面清除干净用水湿润,四周用红外线仪定位,再按实样图标尺和图形用细头油性笔标注,按设计要求弹出纵横两向或图案墨线,然后按墨线截裁分格条镶嵌,为降低后期开裂风险区域内再用2mm厚L型铜条背靠背的分隔条按小于50平米的间距分隔处。如下图","node_type":"text","parent":3562,"children":[],"para_type":"text","pageno":206,"layout_index":0,"box":[54,221,486,53]}
- {"node_id":3565,"text":"3、铺设面层材料","node_type":"title","parent":3554,"children":[3566,3567,3568,3569,3570,3571],"para_type":"title_5","pageno":206,"layout_index":1,"box":[54,303,78,11]}
- {"node_id":3566,"text":"⑴将鑫磨石材料严格按照配合比计量。","node_type":"text","parent":3565,"children":[],"para_type":"text","pageno":206,"layout_index":2,"box":[59,321,178,11]}
- {"node_id":3567,"text":"⑵先把鑫磨石材料,按包装标示兑水搅拌3分钟后,确保浆料均匀无干料、结块等现象。将搅拌均匀的浆料倒在基面上,用平刀均匀抹平,每0.5平方为一个平整度控制点,边施工边用找平仪控制平整度,面层施工幅面1.5M宽就用消泡滚筒及时消泡处理,整体施工厚度(1公分)","node_type":"text","parent":3565,"children":[],"para_type":"text","pageno":206,"layout_index":3,"box":[54,342,486,53]}
- {"node_id":3568,"text":"(3)养护:绰琪硅晶石材料铺设完成,1天后进行下一道工序。","node_type":"text","parent":3565,"children":[],"para_type":"text","pageno":206,"layout_index":4,"box":[54,403,296,11]}
- {"node_id":3569,"text":"","node_type":"image","parent":3565,"children":[],"para_type":"image","pageno":206,"layout_index":5,"box":[89,422,414,169]}
- {"node_id":3570,"text":"37 ","node_type":"head_tail","parent":3565,"children":[],"para_type":"head_tail","pageno":206,"layout_index":6,"box":[290,815,20,16]}
- {"node_id":3571,"text":"","node_type":"image","parent":3565,"children":[],"para_type":"image","pageno":207,"layout_index":0,"box":[89,72,414,223]}
- {"node_id":3572,"text":"4、面层打磨处理","node_type":"title","parent":3554,"children":[3573,3574,3575,3576],"para_type":"title_5","pageno":207,"layout_index":1,"box":[54,306,78,11]}
- {"node_id":3573,"text":"⑴大面积施工宜用大型机械磨石机研磨,小面积、边角处可使用小型手提式机\/修边机研磨,对局部无法使用机械研磨时,可用手工研磨。开磨前应试磨,若试磨后石粒不松动,即可开磨。一般开磨时间同气温品种有关,通常面层摊铺完工后48小时即可。","node_type":"text","parent":3572,"children":[],"para_type":"text","pageno":207,"layout_index":2,"box":[54,325,486,54]}
- {"node_id":3574,"text":"⑵磨光作业应采用“一浆三磨四抛”方法进行,即整个磨光过程分为研磨开面三遍,修补浆一次,抛光三次。A、粗磨开面,采用30#金刚石磨片,干式无尘研磨。","node_type":"text","parent":3572,"children":[],"para_type":"text","pageno":207,"layout_index":3,"box":[54,386,491,33]}
- {"node_id":3575,"text":"B、用50号树脂磨片磨第一遍,干磨研磨至300目,随磨随吸干净灰尘,对整个磨面,要磨匀、磨平、磨透,使石粒面外露。","node_type":"text","parent":3572,"children":[],"para_type":"text","pageno":207,"layout_index":4,"box":[54,429,486,29]}
- {"node_id":3576,"text":"","node_type":"image","parent":3572,"children":[],"para_type":"image","pageno":207,"layout_index":5,"box":[89,506,414,183]}
- {"node_id":3577,"text":"5、补孔补浆","node_type":"title","parent":3554,"children":[3578,3579,3580,3581,3582,3583,3584],"para_type":"title_5","pageno":207,"layout_index":6,"box":[54,698,57,11]}
- {"node_id":3578,"text":"(1)1150目细磨后补浆,第一道补浆前,一定要要吸尘器将灰尘吸除干净后再用水清洗,边","node_type":"text","parent":3577,"children":[],"para_type":"text","pageno":207,"layout_index":7,"box":[54,728,429,11]}
- {"node_id":3579,"text":"洗边用吸水机将水浆吸除干净。","node_type":"text","parent":3577,"children":[],"para_type":"text","pageno":207,"layout_index":8,"box":[54,741,146,11]}
- {"node_id":3580,"text":"(2)将CQ300材料1:3对水搅拌均匀后滚涂在清洗后的地面上,配合补浆速度滚涂,边滚筒边批刮补浆料,(补浆料用调稀后的CQ300调制成稀浆体)批刮补浆料时要求批刮仔细尽量让毛","node_type":"text","parent":3577,"children":[],"para_type":"text","pageno":207,"layout_index":9,"box":[54,755,440,25]}
- {"node_id":3581,"text":"38 ","node_type":"head_tail","parent":3577,"children":[],"para_type":"head_tail","pageno":207,"layout_index":10,"box":[290,815,20,16]}
- {"node_id":3582,"text":"孔里都充分的批刮饱满平整,后面紧跟着,撒布补浆粉料必须撒布均匀,同时使用研磨机研磨表面,将表面多余的补浆料尽量磨除清扫干净,露出骨料的均匀度和密实度。","node_type":"text","parent":3577,"children":[],"para_type":"text","pageno":208,"layout_index":0,"box":[54,72,440,24]}
- {"node_id":3583,"text":"(3)补浆后3个小时,喷洒固化剂。","node_type":"text","parent":3577,"children":[],"para_type":"text","pageno":208,"layout_index":1,"box":[58,100,167,10]}
- {"node_id":3584,"text":"(4)如果孔一次没有补住还需再次补浆。","node_type":"text","parent":3577,"children":[],"para_type":"text","pageno":208,"layout_index":2,"box":[59,121,182,10]}
- {"node_id":3585,"text":"6、渗透固化","node_type":"title","parent":3554,"children":[3586,3587,3588],"para_type":"title_5","pageno":208,"layout_index":3,"box":[53,141,58,10]}
- {"node_id":3586,"text":"(1)补浆后间隔4个小时施工渗透固化剂","node_type":"text","parent":3585,"children":[],"para_type":"text","pageno":208,"layout_index":4,"box":[59,162,192,10]}
- {"node_id":3587,"text":"(2)将渗透固化剂材料均匀的喷洒在表面,然后用尘推推平,保证3个小时之内便面湿润。","node_type":"text","parent":3585,"children":[],"para_type":"text","pageno":208,"layout_index":5,"box":[54,183,336,23]}
- {"node_id":3588,"text":"(3)渗透固化剂施工12个小时后,即可研磨。","node_type":"text","parent":3585,"children":[],"para_type":"text","pageno":208,"layout_index":6,"box":[59,210,213,9]}
- {"node_id":3589,"text":"7、精磨","node_type":"title","parent":3554,"children":[3590,3591,3592,3593,3594,3595,3596,3597],"para_type":"title_5","pageno":208,"layout_index":7,"box":[52,430,39,11]}
- {"node_id":3590,"text":"目的达到产品表面效果,精磨通常自CQ400施工后,用300#树脂磨片磨至2000#的过程。(1)用300#或500#一定要将CQ400研磨彻底不可以有残留,特别是边角必须研磨到位。研磨的同时泥浆同步吸除。","node_type":"text","parent":3589,"children":[],"para_type":"text","pageno":208,"layout_index":8,"box":[53,460,431,37]}
- {"node_id":3591,"text":"(2)整个精磨过程中,1000#的研磨比较关键,耗量比较大。最后2000#研磨。","node_type":"text","parent":3589,"children":[],"para_type":"text","pageno":208,"layout_index":9,"box":[59,502,355,10]}
- {"node_id":3592,"text":"研磨","node_type":"text","parent":3589,"children":[],"para_type":"text","pageno":208,"layout_index":10,"box":[108,631,22,12]}
- {"node_id":3593,"text":"CQ300补孔","node_type":"text","parent":3589,"children":[],"para_type":"text","pageno":208,"layout_index":11,"box":[178,632,46,10]}
- {"node_id":3594,"text":"CQ400润色","node_type":"text","parent":3589,"children":[],"para_type":"text","pageno":208,"layout_index":12,"box":[257,631,47,11]}
- {"node_id":3595,"text":"CQ500结晶","node_type":"text","parent":3589,"children":[],"para_type":"text","pageno":208,"layout_index":13,"box":[336,631,47,11]}
- {"node_id":3596,"text":"CQ600防污罩面","node_type":"text","parent":3589,"children":[],"para_type":"text","pageno":208,"layout_index":14,"box":[406,632,65,10]}
- {"node_id":3597,"text":"面层处理主要流程","node_type":"text","parent":3589,"children":[],"para_type":"text","pageno":208,"layout_index":15,"box":[195,658,83,10]}
- {"node_id":3598,"text":"8、抛光","node_type":"title","parent":3554,"children":[3599,3600,3601,3602,3603],"para_type":"title_5","pageno":208,"layout_index":16,"box":[52,678,39,11]}
- {"node_id":3599,"text":"目的达到产品表面效果,使其表面光亮。","node_type":"text","parent":3598,"children":[],"para_type":"text","pageno":208,"layout_index":17,"box":[55,700,181,9]}
- {"node_id":3600,"text":"(1)将材料喷涂均匀,一边喷涂一边用专用尘推有序的涂抹均匀,施工时工作面宽幅一致,整齐的从一个方向推进。材料用量0.05kg\/m。","node_type":"text","parent":3598,"children":[],"para_type":"text","pageno":208,"layout_index":18,"box":[53,720,435,23]}
- {"node_id":3601,"text":"(2)采用高速抛光机用兽毛抛光垫,对地面进行抛光,抛光时一定要配合好机器转速及行走速","node_type":"text","parent":3598,"children":[],"para_type":"text","pageno":208,"layout_index":19,"box":[58,746,429,10]}
- {"node_id":3602,"text":"度。","node_type":"text","parent":3598,"children":[],"para_type":"text","pageno":208,"layout_index":20,"box":[52,760,16,12]}
- {"node_id":3603,"text":"39","node_type":"head_tail","parent":3598,"children":[],"para_type":"head_tail","pageno":208,"layout_index":21,"box":[287,812,19,16]}
- {"node_id":3604,"text":"抛光磨机","node_type":"title","parent":0,"children":[3605,3607,3632],"para_type":"title_1","pageno":209,"layout_index":0,"box":[276,241,42,11]}
- {"node_id":3605,"text":"9、成品保护","node_type":"title","parent":3604,"children":[3606],"para_type":"title_5","pageno":209,"layout_index":1,"box":[54,264,57,11]}
- {"node_id":3606,"text":"无机磨石面层完成后12个小时即可使用,如在表面进行其它施工作业,必须表面铺设防护膜和防护板。","node_type":"text","parent":3605,"children":[],"para_type":"text","pageno":209,"layout_index":2,"box":[54,284,434,35]}
- {"node_id":3607,"text":"第四节安装踢脚线及拆除防护覆盖物","node_type":"title","parent":3604,"children":[3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631],"para_type":"title_2","pageno":209,"layout_index":3,"box":[54,358,204,13]}
- {"node_id":3608,"text":"使用成品哑光拉丝304不锈钢踢脚线,高度15cm,专用卡扣固定,每米设置不少于两个卡扣。","node_type":"text","parent":3607,"children":[],"para_type":"text","pageno":209,"layout_index":4,"box":[54,381,486,36]}
- {"node_id":3609,"text":"图3-3不锈钢踢脚线成品效果","node_type":"text","parent":3607,"children":[],"para_type":"text","pageno":209,"layout_index":5,"box":[145,605,138,11]}
- {"node_id":3610,"text":"图3-4不锈钢踢脚线结构","node_type":"text","parent":3607,"children":[],"para_type":"text","pageno":209,"layout_index":6,"box":[331,605,118,11]}
- {"node_id":3611,"text":"(1)制作定位尺:安装卡扣时,用定位尺确定卡扣安装位置高度。定位尺长1000—2400mm;宽40—50mm;高度根据踢脚线型号而定,T70的高17—17.5mm;T80的高14.5—15mm;T100 的高38—38.5mm;T110的高36.5—37mm;定位尺用木制、铁制均可。","node_type":"text","parent":3607,"children":[],"para_type":"text","pageno":209,"layout_index":7,"box":[54,626,498,60]}
- {"node_id":3612,"text":"(2)清理墙基。清除安装踢脚线部位的墙面、墙角、墙根处突出的水泥浮块;检查墙面平直度,最大缝隙不大于3mm。否侧,墙凸处要铲平。墙凹处要加垫片。","node_type":"text","parent":3607,"children":[],"para_type":"text","pageno":209,"layout_index":8,"box":[54,696,486,36]}
- {"node_id":3613,"text":"(3)安装卡扣。在定位尺上固定一个钻模(钻模孔直径略大于冲击钻头),抵住墙根,用冲击钻往墙上钻孔;在孔中打入塑胀管。固定卡扣时,仍要用定位尺将卡扣调整后固定在同","node_type":"text","parent":3607,"children":[],"para_type":"text","pageno":209,"layout_index":9,"box":[54,743,487,36]}
- {"node_id":3614,"text":"40 ","node_type":"head_tail","parent":3607,"children":[],"para_type":"head_tail","pageno":209,"layout_index":10,"box":[290,815,20,16]}
- {"node_id":3615,"text":"","node_type":"image","parent":3607,"children":[],"para_type":"image","pageno":209,"layout_index":11,"box":[296,72,196,147]}
- {"node_id":3616,"text":"","node_type":"image","parent":3607,"children":[],"para_type":"image","pageno":209,"layout_index":12,"box":[101,73,195,147]}
- {"node_id":3617,"text":"","node_type":"image","parent":3607,"children":[],"para_type":"image","pageno":209,"layout_index":13,"box":[101,426,257,170]}
- {"node_id":3618,"text":"","node_type":"image","parent":3607,"children":[],"para_type":"image","pageno":209,"layout_index":14,"box":[365,426,127,170]}
- {"node_id":3619,"text":"一高度。","node_type":"text","parent":3607,"children":[],"para_type":"text","pageno":210,"layout_index":0,"box":[53,73,41,12]}
- {"node_id":3620,"text":"(4)安装踢脚线型材。在确保所有卡扣已安装在同一直线上后(误差±1.5mm),按尺寸下料及切割阴阳角,磨去毛刺。将下好尺寸的踢脚线上槽倾斜半挂在卡扣的上口,然后将踢脚线后端向上提起一点再贴墙面向下按,使卡扣上部凸卡完全进入踢脚线上部凹槽,同时轻拍踢脚线中部即可。安装时从一端开始,一个卡扣一个卡扣的向另一端逐步按入,切忌锤击。","node_type":"text","parent":3607,"children":[],"para_type":"text","pageno":210,"layout_index":1,"box":[53,96,487,82]}
- {"node_id":3621,"text":"(5)接缝及端头处理:安装完毕后,踢脚线与墙、地的缝隙用灰色中性硅胶封口,阴阳角及平接预留的2毫米缝隙贴美纹纸后打硅胶泥缝。撕去踢脚线所有保护膜,并用老粉擦去不锈钢饰面残胶,用拉丝布去掉切口处因胶受热形成的黑斑。配件及安装效果如下:","node_type":"text","parent":3607,"children":[],"para_type":"text","pageno":210,"layout_index":2,"box":[53,190,487,58]}
- {"node_id":3622,"text":"阴角封头","node_type":"text","parent":3607,"children":[],"para_type":"text","pageno":210,"layout_index":3,"box":[61,361,49,8]}
- {"node_id":3623,"text":"阳角","node_type":"text","parent":3607,"children":[],"para_type":"text","pageno":210,"layout_index":4,"box":[141,361,15,8]}
- {"node_id":3624,"text":"底卡","node_type":"text","parent":3607,"children":[],"para_type":"text","pageno":210,"layout_index":5,"box":[157,361,69,7]}
- {"node_id":3625,"text":"底卡","node_type":"text","parent":3607,"children":[],"para_type":"text","pageno":210,"layout_index":6,"box":[226,361,14,7]}
- {"node_id":3626,"text":"图3-5接缝及端头配件及安装效果","node_type":"text","parent":3607,"children":[],"para_type":"text","pageno":210,"layout_index":7,"box":[217,383,159,10]}
- {"node_id":3627,"text":"(6)乳胶漆墙面恢复。","node_type":"text","parent":3607,"children":[],"para_type":"text","pageno":210,"layout_index":8,"box":[83,404,113,12]}
- {"node_id":3628,"text":"(7)拆除设备防护覆盖物,恢复原样。","node_type":"text","parent":3607,"children":[],"para_type":"text","pageno":210,"layout_index":9,"box":[85,427,171,10]}
- {"node_id":3629,"text":"学习思考创新标准执行考核","node_type":"text","parent":3607,"children":[],"para_type":"text","pageno":210,"layout_index":10,"box":[271,506,31,10]}
- {"node_id":3630,"text":"四川永祥乐山工厂","node_type":"text","parent":3607,"children":[],"para_type":"text","pageno":210,"layout_index":11,"box":[278,728,97,13]}
- {"node_id":3631,"text":"41","node_type":"head_tail","parent":3607,"children":[],"para_type":"head_tail","pageno":210,"layout_index":12,"box":[287,812,17,14]}
- {"node_id":3632,"text":"第八章确保施工质量的措施和标准","node_type":"title","parent":3604,"children":[3633,3634,3635,3636,3637,3638,3639,3640,3642],"para_type":"title_2","pageno":211,"layout_index":0,"box":[148,74,298,19]}
- {"node_id":3633,"text":"1、施工技术标准","node_type":"text","parent":3632,"children":[],"para_type":"text","pageno":211,"layout_index":1,"box":[96,128,78,11]}
- {"node_id":3634,"text":"1. 1《建筑工程施工质量验收统一标准》GB50300-2013. ","node_type":"text","parent":3632,"children":[],"para_type":"text","pageno":211,"layout_index":2,"box":[105,147,250,11]}
- {"node_id":3635,"text":"1.2《钢结构工程施工质量验收规范》GB50205—2020、","node_type":"text","parent":3632,"children":[],"para_type":"text","pageno":211,"layout_index":3,"box":[105,160,254,11]}
- {"node_id":3636,"text":"1.3《建筑地面工程施工质量验收规范》GB50209-2010 ","node_type":"text","parent":3632,"children":[],"para_type":"text","pageno":211,"layout_index":4,"box":[105,179,247,11]}
- {"node_id":3637,"text":"1.4《建筑防腐蚀工程质量验收标准》GB\/T50224-2018、","node_type":"text","parent":3632,"children":[],"para_type":"text","pageno":211,"layout_index":5,"box":[105,192,249,11]}
- {"node_id":3638,"text":"1.5《建筑设计防火规范》GB50016-2014(2018版)","node_type":"text","parent":3632,"children":[],"para_type":"text","pageno":211,"layout_index":6,"box":[105,203,244,13]}
- {"node_id":3639,"text":"1.6《建筑施工安全检查标准》(JGJ59-2011)等国家颁布的现行验收标准、规范及省、市有关执行标准。","node_type":"text","parent":3632,"children":[],"para_type":"text","pageno":211,"layout_index":7,"box":[105,216,381,24]}
- {"node_id":3640,"text":"2、检测标准","node_type":"title","parent":3632,"children":[3641],"para_type":"title_5","pageno":211,"layout_index":8,"box":[105,250,57,11]}
- {"node_id":3641,"text":"1. ","node_type":"text","parent":3640,"children":[],"para_type":"text","pageno":211,"layout_index":9,"box":[105,270,14,13]}
- {"node_id":3642,"text":"1、粘接强度:《建筑防水涂料试验方法》GB16777-2008 ","node_type":"title","parent":3632,"children":[3643],"para_type":"title_5","pageno":211,"layout_index":10,"box":[123,273,261,11]}
- {"node_id":3643,"text":"2.2、耐磨性:《色漆和清漆","node_type":"title","parent":3642,"children":[3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654],"para_type":"title_6","pageno":211,"layout_index":11,"box":[105,290,128,11]}
- {"node_id":3644,"text":"耐磨性的测定旋转橡胶砂轮法》GB\/T1768-2006 ","node_type":"text","parent":3643,"children":[],"para_type":"text","pageno":211,"layout_index":12,"box":[239,288,230,13]}
- {"node_id":3645,"text":"2. 3、耐冲击:《水泥胶砂强度检验》GB\/T17671 ","node_type":"text","parent":3643,"children":[],"para_type":"text","pageno":211,"layout_index":13,"box":[105,309,227,11]}
- {"node_id":3646,"text":"2. 4、《地坪涂装材料》","node_type":"text","parent":3643,"children":[],"para_type":"text","pageno":211,"layout_index":14,"box":[105,326,166,13]}
- {"node_id":3647,"text":"GB\/T22374-20182. 5、《人造石》","node_type":"text","parent":3643,"children":[],"para_type":"text","pageno":211,"layout_index":15,"box":[105,339,166,13]}
- {"node_id":3648,"text":"JC\/T908-2013 ","node_type":"text","parent":3643,"children":[],"para_type":"text","pageno":211,"layout_index":16,"box":[105,354,64,11]}
- {"node_id":3649,"text":"2. 6、拉伸性能按GB\/T9779-2015中6. 20规定进行","node_type":"text","parent":3643,"children":[],"para_type":"text","pageno":211,"layout_index":17,"box":[105,371,242,13]}
- {"node_id":3650,"text":"2. 7、《地坪涂装材料》","node_type":"text","parent":3643,"children":[],"para_type":"text","pageno":211,"layout_index":18,"box":[105,392,117,11]}
- {"node_id":3651,"text":"GB\/T22374-20182. 8、《邵氏硬度》","node_type":"text","parent":3643,"children":[],"para_type":"text","pageno":211,"layout_index":19,"box":[105,405,163,11]}
- {"node_id":3652,"text":"GB\/T2411-2008 ","node_type":"text","parent":3643,"children":[],"para_type":"text","pageno":211,"layout_index":20,"box":[105,418,71,11]}
- {"node_id":3653,"text":"3施工质量允许偏差","node_type":"text","parent":3643,"children":[],"para_type":"text","pageno":211,"layout_index":21,"box":[105,429,94,13]}
- {"node_id":3654,"text":[["项次","项目","允许偏差(mm)","允许偏差(mm)","允许偏差(mm)","允许偏差(mm)","允许偏差(mm)","允许偏差(mm)","允许偏差(mm)","允许偏差(mm)","允许偏差(mm)","检验方法"],["项次","项目","水泥Mt 土面","水泥砂浆面层","样通水磨石面层","高级水磨石・","硬化耐磨面层","防油渗混凝土和不发火(防爆)面层","自流平面","涂料面层","面层","检验方法"],["1 ","表面平整度","5 ","4 ","3 ","2 ","4 ","5 ","2 ","2 ","2 ","用2m 拮尺和快形塞尺检査"],["项次","项目","允许偏差(mm〉水泥混普通水高级水防油渗混愛土1 ","允许偏差(mm〉水泥混普通水高级水防油渗混愛土1 ","允许偏差(mm〉水泥混普通水高级水防油渗混愛土1 ","允许偏差(mm〉水泥混普通水高级水防油渗混愛土1 ","允许偏差(mm〉水泥混普通水高级水防油渗混愛土1 ","允许偏差(mm〉水泥混普通水高级水防油渗混愛土1 ","允许偏差(mm〉水泥混普通水高级水防油渗混愛土1 ","允许偏差(mm〉水泥混普通水高级水防油渗混愛土1 ","允许偏差(mm〉水泥混普通水高级水防油渗混愛土1 ","检验方法"],["项次","项目","戳土面层","水泥砂浆面层","磨石面层","磨石面","硬化耐磨面层","和不发火(防爆)面屡","自浪平面层","涂料面层","r 塑胶面层","检验方法"],["2 ","蹊脚线上口平直","4 ","4 ","3 ","3 ","4 ","4 ","3 ","3 ","3 ","拉5m 线和用钢尺检査"],["7","缱格","3 ","3 ","3 ","2 ","3 ","3 ","2 ","2 ","2 ","拉5m 线和用钢尺检査"],[""]],"node_type":"table","parent":3643,"children":[],"para_type":"table","pageno":211,"layout_index":22,"box":[82,466,429,238]}
- {"node_id":3655,"text":"整体面层的允许偏差和检验方法应符合表","node_type":"title","parent":0,"children":[3656,3657,3658],"para_type":"title_1","pageno":211,"layout_index":23,"box":[190,722,188,11]}
- {"node_id":3656,"text":"42 ","node_type":"head_tail","parent":3655,"children":[],"para_type":"head_tail","pageno":211,"layout_index":24,"box":[290,815,20,16]}
- {"node_id":3657,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3655,"children":[],"para_type":"head_tail","pageno":212,"layout_index":0,"box":[78,46,147,11]}
- {"node_id":3658,"text":"4、确保工程质量的措施与承诺","node_type":"title","parent":3655,"children":[3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3727],"para_type":"title_5","pageno":212,"layout_index":1,"box":[57,65,141,11]}
- {"node_id":3659,"text":"(1)、工程质量目标","node_type":"text","parent":3658,"children":[],"para_type":"text","pageno":212,"layout_index":2,"box":[78,92,114,12]}
- {"node_id":3660,"text":"严格按照规范和设计施工,一次验收合格率100%,确保质量评定等级达到国家级优质奖。符合国家GB50300-2001各项《建筑工程施工质量验收统一标准》规定的优A等级。","node_type":"text","parent":3658,"children":[],"para_type":"text","pageno":212,"layout_index":3,"box":[78,123,459,34]}
- {"node_id":3661,"text":"(2)、完整的质量保证体系,确保质量目标实现","node_type":"text","parent":3658,"children":[],"para_type":"text","pageno":212,"layout_index":4,"box":[78,173,258,12]}
- {"node_id":3662,"text":"2.1)、公司委派有类似工程经验的项目经理、技术人员、现场管理人员及各工种操作人员组建项目部。项目管理部成员都具备至少五年磨石地坪的施工现场管理经验和不少于五万平方米类似工程地坪的施工经验,现场个工种操作人员具备熟练的操作技能。2.2)、充分发挥企业的整体优势,项目部在总部的服务和控制下,按照企业成熟的项目管理模式,严格按照GB9001-IS9000模式标准建立的质量保证体系来运作,以专业管理和计算机管理想结合的科学化管理体制,全面推行科学化、标准化、程序化、制度化管理,以一流的管理、一流的技术、一流的施工和一流的服务以及严谨的工作作风,精心组织、精心施工,履行对业主的承诺,实现上述质量目标。","node_type":"text","parent":3658,"children":[],"para_type":"text","pageno":212,"layout_index":5,"box":[78,206,457,137]}
- {"node_id":3663,"text":"2.3)、组织保证体系图","node_type":"text","parent":3658,"children":[],"para_type":"text","pageno":212,"layout_index":6,"box":[78,361,107,11]}
- {"node_id":3664,"text":"公司质保部","node_type":"text","parent":3658,"children":[],"para_type":"text","pageno":212,"layout_index":7,"box":[222,404,52,11]}
- {"node_id":3665,"text":"ISO9001 ","node_type":"text","parent":3658,"children":[],"para_type":"text","pageno":212,"layout_index":8,"box":[419,407,40,11]}
- {"node_id":3666,"text":"项目经理","node_type":"text","parent":3658,"children":[],"para_type":"text","pageno":212,"layout_index":9,"box":[146,454,41,11]}
- {"node_id":3667,"text":"项目技术负责人","node_type":"text","parent":3658,"children":[],"para_type":"text","pageno":212,"layout_index":10,"box":[319,454,73,11]}
- {"node_id":3668,"text":"现场质量监理","node_type":"text","parent":3658,"children":[],"para_type":"text","pageno":212,"layout_index":11,"box":[225,503,63,11]}
- {"node_id":3669,"text":"施工管理","node_type":"text","parent":3658,"children":[],"para_type":"text","pageno":212,"layout_index":12,"box":[119,532,41,11]}
- {"node_id":3670,"text":"技术管理","node_type":"text","parent":3658,"children":[],"para_type":"text","pageno":212,"layout_index":13,"box":[389,532,41,11]}
- {"node_id":3671,"text":"各班组长","node_type":"text","parent":3658,"children":[],"para_type":"text","pageno":212,"layout_index":14,"box":[227,560,41,11]}
- {"node_id":3672,"text":"各施工操作员","node_type":"text","parent":3658,"children":[],"para_type":"text","pageno":212,"layout_index":15,"box":[217,596,62,11]}
- {"node_id":3673,"text":"根据项目组织体系图,建立项目岗位责任制和质量监督制度,明确分工职责,落实施工质量控制责任,各岗位各负其职,定期对项目各级管理人员进行考核,并与个人收入直接挂钩,奖励先进,监督后进,建立完善的项目质量保证体系。","node_type":"text","parent":3658,"children":[],"para_type":"text","pageno":212,"layout_index":16,"box":[78,635,452,54]}
- {"node_id":3674,"text":"2.4)、质量保证程序","node_type":"title","parent":3658,"children":[3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726],"para_type":"title_6","pageno":212,"layout_index":17,"box":[78,707,97,11]}
- {"node_id":3675,"text":"43 ","node_type":"head_tail","parent":3674,"children":[],"para_type":"head_tail","pageno":212,"layout_index":18,"box":[294,815,20,16]}
- {"node_id":3676,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3674,"children":[],"para_type":"head_tail","pageno":213,"layout_index":0,"box":[78,46,147,11]}
- {"node_id":3677,"text":"实施中优化总结","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":213,"layout_index":1,"box":[263,119,73,11]}
- {"node_id":3678,"text":[["方案","经审批处后可实施"],[""]],"node_type":"table","parent":3674,"children":[],"para_type":"table","pageno":213,"layout_index":2,"box":[79,120,166,22]}
- {"node_id":3679,"text":"方案保证","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":213,"layout_index":3,"box":[387,126,42,11]}
- {"node_id":3680,"text":"执行岗位职责制","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":213,"layout_index":4,"box":[263,156,73,11]}
- {"node_id":3681,"text":[["人员","培训考核持证上岗"],[""]],"node_type":"table","parent":3674,"children":[],"para_type":"table","pageno":213,"layout_index":5,"box":[79,157,166,22]}
- {"node_id":3682,"text":"人员素质保证","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":213,"layout_index":6,"box":[377,163,62,11]}
- {"node_id":3683,"text":[["材料","原材、半成品检验"],[""]],"node_type":"table","parent":3674,"children":[],"para_type":"table","pageno":213,"layout_index":7,"box":[79,193,166,21]}
- {"node_id":3684,"text":"技术资料保证","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":213,"layout_index":8,"box":[263,193,62,11]}
- {"node_id":3685,"text":"原材料的保证","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":213,"layout_index":9,"box":[377,200,62,11]}
- {"node_id":3686,"text":"产品质量保证","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":213,"layout_index":10,"box":[503,137,10,91]}
- {"node_id":3687,"text":[["操作","按工艺要求标准"],[""]],"node_type":"table","parent":3674,"children":[],"para_type":"table","pageno":213,"layout_index":11,"box":[79,231,166,22]}
- {"node_id":3688,"text":"熟悉施工工艺","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":213,"layout_index":12,"box":[263,231,54,9]}
- {"node_id":3689,"text":"操作过程保证","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":213,"layout_index":13,"box":[377,238,62,11]}
- {"node_id":3690,"text":[["机具","检测合格后方可使用"],[""]],"node_type":"table","parent":3674,"children":[],"para_type":"table","pageno":213,"layout_index":14,"box":[79,268,166,22]}
- {"node_id":3691,"text":"周检维修保养","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":213,"layout_index":15,"box":[263,268,54,9]}
- {"node_id":3692,"text":"机具保证","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":213,"layout_index":16,"box":[387,275,42,11]}
- {"node_id":3693,"text":"基本要素质量","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":213,"layout_index":17,"box":[121,299,63,11]}
- {"node_id":3694,"text":"工作质量","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":213,"layout_index":18,"box":[317,299,41,11]}
- {"node_id":3695,"text":"(3)建立项目人员质量培训体系","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":213,"layout_index":19,"box":[78,368,174,12]}
- {"node_id":3696,"text":"本工程施工人员全部为我公司自有施工人员,所有工人都经过严格的技术培训,技能熟练,能够满足本工程施工的全部需要,同时我公司有一套对施工队伍完整的管理、培训和考核制度,从根本上保证施工项目所需劳动者的素质,从而为工程质量目标奠定了坚实的基础。","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":213,"layout_index":20,"box":[78,399,453,54]}
- {"node_id":3697,"text":"3.1、进行质量意识的教育,增强全体员工的质量培训是创精品工程的首要措施。工程开工前将针对工程特点,公司工程部对项目有关管理人员进行优化及ISO9001质量管理体系和ISO14001环境管理体系运行的培训,由公司总工程师负责组织有关部门及人员编写本项目的质量意识教育计划,计划内容包括公司质量方针、项目质量目标、项目创优计划.项目质量计划,技术法规.规程.工艺.工法和质量验评标准等。项目各级管理人员的质量意识教育由项目经理负责组织教育;参与施工的各级管理人员的质量意识教育由项目质量监理负责组织进行教育;施工操作人员由各班组班长组织教育。通过教育提高各类管理人员与施工人员的质量意识;并贯穿到实际工作中去。以确保项目创优计划的顺利实现。","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":213,"layout_index":21,"box":[78,469,453,139]}
- {"node_id":3698,"text":"3.2、加强对班组的培训:","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":213,"layout_index":22,"box":[78,626,118,11]}
- {"node_id":3699,"text":"班组是直接的操作者,只有他们的管理水平和技术实力提高了,工程质量才能达到既定的目标,因此要着重对班组进行技术培训和质量教育,帮助班组提高管理水平。项目对班组及主要施工人员,按不同工种专业进行技术.工艺.质量综合培训,未经培训或培训不合格的班组不允许进场施工。项目将责成班组建立责任制,并将项目的质量保证体系贯彻落实到各自施工质量管理中,督促其对各项工作落实,全员树立“质优我优,质劣","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":213,"layout_index":23,"box":[78,654,457,96]}
- {"node_id":3700,"text":"44 ","node_type":"head_tail","parent":3674,"children":[],"para_type":"head_tail","pageno":213,"layout_index":24,"box":[294,815,20,16]}
- {"node_id":3701,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3674,"children":[],"para_type":"head_tail","pageno":214,"layout_index":0,"box":[78,46,147,11]}
- {"node_id":3702,"text":"我劣”的质量思想,并贯彻到操作岗位,建立严格的质量考核制度。","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":1,"box":[78,69,309,11]}
- {"node_id":3703,"text":"3.3、通过全方位、深层次的质量意识教育,使每位管理人员和操作工人在思想意识上树立明确.深刻质量理念:","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":2,"box":[78,100,452,30]}
- {"node_id":3704,"text":"百年大计,质量第一;","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":3,"box":[78,148,105,11]}
- {"node_id":3705,"text":"对用户负责,让用户满意;","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":4,"box":[78,171,126,11]}
- {"node_id":3706,"text":"预防为主,检查上道工序服务上道工序。","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":5,"box":[78,200,189,11]}
- {"node_id":3707,"text":"(4)、执行施工过程质量管理制度","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":6,"box":[78,227,186,12]}
- {"node_id":3708,"text":"质","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":7,"box":[361,272,10,11]}
- {"node_id":3709,"text":"进","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":8,"box":[470,270,10,11]}
- {"node_id":3710,"text":"量工程师复检","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":9,"box":[361,287,10,92]}
- {"node_id":3711,"text":"监理检查认可","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":10,"box":[416,272,10,90]}
- {"node_id":3712,"text":"入","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":11,"box":[470,287,10,11]}
- {"node_id":3713,"text":"技术交流","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":12,"box":[194,288,10,58]}
- {"node_id":3714,"text":"三工序操作","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":13,"box":[250,288,10,74]}
- {"node_id":3715,"text":"责任人初检","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":14,"box":[305,288,10,74]}
- {"node_id":3716,"text":"下","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":15,"box":[470,303,10,11]}
- {"node_id":3717,"text":"方案","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":16,"box":[89,304,10,25]}
- {"node_id":3718,"text":"审批","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":17,"box":[138,304,10,25]}
- {"node_id":3719,"text":"一","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":18,"box":[470,320,10,11]}
- {"node_id":3720,"text":"道","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":19,"box":[470,336,10,11]}
- {"node_id":3721,"text":"工","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":20,"box":[470,352,10,11]}
- {"node_id":3722,"text":"序","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":21,"box":[470,368,10,11]}
- {"node_id":3723,"text":"不合格","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":22,"box":[120,474,31,11]}
- {"node_id":3724,"text":"不合格","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":23,"box":[260,474,31,11]}
- {"node_id":3725,"text":"不合格","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":24,"box":[355,474,31,11]}
- {"node_id":3726,"text":"不合格","node_type":"text","parent":3674,"children":[],"para_type":"text","pageno":214,"layout_index":25,"box":[414,474,31,11]}
- {"node_id":3727,"text":"4.1)材料控制:","node_type":"title","parent":3658,"children":[3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748],"para_type":"title_6","pageno":214,"layout_index":26,"box":[78,525,76,11]}
- {"node_id":3728,"text":"进场的原材料已经本公司工厂质检部严格检验为合格产品,材料进场后将产品合格证、检测报告等技术资料上交业主、总包及监理,原材料经复检合格后方可使用于本工程。4.2)实行样板先进制度:","node_type":"text","parent":3727,"children":[],"para_type":"text","pageno":214,"layout_index":27,"box":[78,552,456,32]}
- {"node_id":3729,"text":"原材料进场后,在工程大面积施工前,由项目技术负责人按施工工艺及规范,组织班组进行样板施工,样板经业主、监理书面确认符合设计与规范要求后,方可进行施工。4.3)执行检查验收制度:","node_type":"text","parent":3727,"children":[],"para_type":"text","pageno":214,"layout_index":28,"box":[78,601,451,32]}
- {"node_id":3730,"text":"①预检:检查各项施工指标是否达到施工要求。","node_type":"text","parent":3727,"children":[],"para_type":"text","pageno":214,"layout_index":29,"box":[78,649,220,11]}
- {"node_id":3731,"text":"②隐检:凡被下道工序所掩盖而无法进行质量检查的过程,在下道工序开始前必须进行隐蔽检查,检查合格后方能进行下道工序。","node_type":"text","parent":3727,"children":[],"para_type":"text","pageno":214,"layout_index":30,"box":[78,679,451,32]}
- {"node_id":3732,"text":"③自检:施工过程中每道工序完毕后,操作人员必须进行自检并做好自检记录,不合格处由原操作人员进行整改,直至合格为止,责任工程师和班组长要在自检记录上签字认","node_type":"text","parent":3727,"children":[],"para_type":"text","pageno":214,"layout_index":31,"box":[78,727,452,33]}
- {"node_id":3733,"text":"45 ","node_type":"head_tail","parent":3727,"children":[],"para_type":"head_tail","pageno":214,"layout_index":32,"box":[294,815,20,16]}
- {"node_id":3734,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3727,"children":[],"para_type":"head_tail","pageno":215,"layout_index":0,"box":[78,46,147,11]}
- {"node_id":3735,"text":"可。","node_type":"text","parent":3727,"children":[],"para_type":"text","pageno":215,"layout_index":1,"box":[78,69,21,11]}
- {"node_id":3736,"text":"④交接检:施工过程中不同的工种、工序、班组之间进行交接检,由责任工程师组织双方人员参加并做好交接检记录,不合格的项目由原操作人员进行整改直至合格为止。和各专业分包交叉施工时,应在统一协调下,合理安排,并办理好交接工作和有关的成品保护工作。","node_type":"text","parent":3727,"children":[],"para_type":"text","pageno":215,"layout_index":2,"box":[78,98,452,53]}
- {"node_id":3737,"text":"⑤标识:每一工序工程完成后,责任工程师对工序工程进行检查验收,验收后按照部位或区域进行标识,即粘贴标识牌和质量记录标识。合格的在标识牌上盖蓝章,不合格的在标识上盖红章,不合格的要发下书面整改通知书,整改合格后重新进行标识。","node_type":"text","parent":3727,"children":[],"para_type":"text","pageno":215,"layout_index":3,"box":[78,168,452,53]}
- {"node_id":3738,"text":"⑥分项验收:分项工程完成后,按照合同及有关规范要求,责任工程师对分项工程进行质量评定,由专职质量检查员核定等级。","node_type":"text","parent":3727,"children":[],"para_type":"text","pageno":215,"layout_index":4,"box":[78,238,452,32]}
- {"node_id":3739,"text":"⑦质量验收:项目组织对各分项工程检查验收后,由责任工程师填写书面的工程报验资料,报监理做最终的分项工程检查验收。","node_type":"text","parent":3727,"children":[],"para_type":"text","pageno":215,"layout_index":5,"box":[78,287,451,32]}
- {"node_id":3740,"text":"⑧质量监督:除项目设专职的质量检查员在施工现场进行监督、检查、管理外,公司总部的质量检查人员定期对该工程进行监督、检查,发现问题及时下发书面的整改通知单,并跟踪复查,直至整改合格。","node_type":"text","parent":3727,"children":[],"para_type":"text","pageno":215,"layout_index":6,"box":[78,336,459,32]}
- {"node_id":3741,"text":"⑨分部验收:每一分部工程完成后,项目经理组织有关人员对分部工程进行检查验收,并核定等级。(5)、加强成品和半成品的保护。","node_type":"text","parent":3727,"children":[],"para_type":"text","pageno":215,"layout_index":7,"box":[78,384,461,33]}
- {"node_id":3742,"text":"5.1)设专人负责成品保护工作","node_type":"text","parent":3727,"children":[],"para_type":"text","pageno":215,"layout_index":8,"box":[78,434,139,11]}
- {"node_id":3743,"text":"5.2)制定正确的施工顺序:制定合理部位的施工工序流程,将各工序相互协调,排出一个部位的工序流程表,各工序均按此流程进行施工,严禁违反施工程序的作法。5.3)作好工序标识工作:在施工过程中标识“正在施工,注意保护”的标牌。","node_type":"text","parent":3727,"children":[],"para_type":"text","pageno":215,"layout_index":9,"box":[78,464,452,52]}
- {"node_id":3744,"text":"5.4)采取护、包、盖、封防护:采取“护、包、盖、封”的保护措施,对成品和半成品进行防护和由专门负责人经常巡视检查,发现现有保护措施损坏的,要及时恢复。5.5)工序交接全部采用书面形式由双方签字认可,由下道工序作业人员和成品保护负责人同时签字确认,并保存工序交接书面材料,下道工序作业人员对防止成品的污染、损坏或丢失负直接责任,成品保护专人对成品保护负监督、检查责任。","node_type":"text","parent":3727,"children":[],"para_type":"text","pageno":215,"layout_index":10,"box":[78,534,456,94]}
- {"node_id":3745,"text":"5.6)施工过程中使用的材料、半成品按照材料保管要求进行入库、码放、保管。","node_type":"text","parent":3727,"children":[],"para_type":"text","pageno":215,"layout_index":11,"box":[78,646,370,11]}
- {"node_id":3746,"text":"5.7)工程交付使用后,按照合同及标准要求及时对损坏的部位进行修复,保证工程质量。","node_type":"text","parent":3727,"children":[],"para_type":"text","pageno":215,"layout_index":12,"box":[78,675,412,11]}
- {"node_id":3747,"text":"46 ","node_type":"head_tail","parent":3727,"children":[],"para_type":"head_tail","pageno":215,"layout_index":13,"box":[294,815,20,16]}
- {"node_id":3748,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3727,"children":[],"para_type":"head_tail","pageno":216,"layout_index":0,"box":[78,46,147,11]}
- {"node_id":3749,"text":"质量控制","node_type":"title","parent":0,"children":[3750,3751,3752,3753],"para_type":"title_1","pageno":216,"layout_index":1,"box":[271,78,48,13]}
- {"node_id":3750,"text":"绰琪硅晶石施工过程的流程图如下:每一道工序在下一道工序进行之前应该进行质检. ","node_type":"text","parent":3749,"children":[],"para_type":"text","pageno":216,"layout_index":2,"box":[110,104,394,11]}
- {"node_id":3751,"text":"开始","node_type":"text","parent":3749,"children":[],"para_type":"text","pageno":216,"layout_index":3,"box":[287,138,24,13]}
- {"node_id":3752,"text":"基础清理","node_type":"text","parent":3749,"children":[],"para_type":"text","pageno":216,"layout_index":4,"box":[276,197,42,11]}
- {"node_id":3753,"text":"喷砂","node_type":"text","parent":3749,"children":[],"para_type":"text","pageno":216,"layout_index":5,"box":[281,232,21,11]}
- {"node_id":3754,"text":"正式施工之前主管部门的认可","node_type":"title","parent":0,"children":[3755,3756,3757,3758,3759,3760,3761,3762,3763,3764],"para_type":"title_1","pageno":216,"layout_index":6,"box":[253,319,94,24]}
- {"node_id":3755,"text":"否","node_type":"text","parent":3754,"children":[],"para_type":"text","pageno":216,"layout_index":7,"box":[300,364,9,9]}
- {"node_id":3756,"text":"可否? ","node_type":"text","parent":3754,"children":[],"para_type":"text","pageno":216,"layout_index":8,"box":[293,411,29,11]}
- {"node_id":3757,"text":"界面施工","node_type":"text","parent":3754,"children":[],"para_type":"text","pageno":216,"layout_index":9,"box":[285,462,36,9]}
- {"node_id":3758,"text":"分隔条安装","node_type":"text","parent":3754,"children":[],"para_type":"text","pageno":216,"layout_index":10,"box":[279,517,45,9]}
- {"node_id":3759,"text":"铺料","node_type":"text","parent":3754,"children":[],"para_type":"text","pageno":216,"layout_index":11,"box":[297,579,21,11]}
- {"node_id":3760,"text":"研磨镜面","node_type":"text","parent":3754,"children":[],"para_type":"text","pageno":216,"layout_index":12,"box":[286,637,41,11]}
- {"node_id":3761,"text":"结束","node_type":"text","parent":3754,"children":[],"para_type":"text","pageno":216,"layout_index":13,"box":[296,702,21,11]}
- {"node_id":3762,"text":"是","node_type":"text","parent":3754,"children":[],"para_type":"text","pageno":216,"layout_index":14,"box":[306,732,9,9]}
- {"node_id":3763,"text":"47 ","node_type":"head_tail","parent":3754,"children":[],"para_type":"head_tail","pageno":216,"layout_index":15,"box":[294,815,20,16]}
- {"node_id":3764,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3754,"children":[],"para_type":"head_tail","pageno":217,"layout_index":0,"box":[90,46,146,11]}
- {"node_id":3765,"text":"工序质量报验单","node_type":"title","parent":0,"children":[3766,3767,3768,3769,3770,3829],"para_type":"title_1","pageno":217,"layout_index":1,"box":[238,82,111,17]}
- {"node_id":3766,"text":[["本日工序","","施工日期","年月日点","年月日点","年月日点"],["施工区域","","工作人员","拌料人","材料员"],["施工区域","面积m2 ","工作人员"],[""]],"node_type":"table","parent":3765,"children":[],"para_type":"table","pageno":217,"layout_index":2,"box":[62,126,477,82]}
- {"node_id":3767,"text":[["本日使用材料","色号","批号","施工区域","使用量(kg)","搅拌时间"],[""],[""],[""],["上海绰琪新型建材科技有限公司抽查自检数据及情况记录:□经检查可进行后续施工并提交业主或监理检查。□经检查未通过,不得进入下道工序施工,整改后再报呈业主或监理核查。检查人:日期:","上海绰琪新型建材科技有限公司抽查自检数据及情况记录:□经检查可进行后续施工并提交业主或监理检查。□经检查未通过,不得进入下道工序施工,整改后再报呈业主或监理核查。检查人:日期:","上海绰琪新型建材科技有限公司抽查自检数据及情况记录:□经检查可进行后续施工并提交业主或监理检查。□经检查未通过,不得进入下道工序施工,整改后再报呈业主或监理核查。检查人:日期:","上海绰琪新型建材科技有限公司抽查自检数据及情况记录:□经检查可进行后续施工并提交业主或监理检查。□经检查未通过,不得进入下道工序施工,整改后再报呈业主或监理核查。检查人:日期:","上海绰琪新型建材科技有限公司抽查自检数据及情况记录:□经检查可进行后续施工并提交业主或监理检查。□经检查未通过,不得进入下道工序施工,整改后再报呈业主或监理核查。检查人:日期:","上海绰琪新型建材科技有限公司抽查自检数据及情况记录:□经检查可进行后续施工并提交业主或监理检查。□经检查未通过,不得进入下道工序施工,整改后再报呈业主或监理核查。检查人:日期:"],["业主\/监理意见:□可进行后续施工。□核验未通过,不得进入下道工序施工,整改后再报。业主\/项目监理机构(章):专业监理工程师:日期:","业主\/监理意见:□可进行后续施工。□核验未通过,不得进入下道工序施工,整改后再报。业主\/项目监理机构(章):专业监理工程师:日期:","业主\/监理意见:□可进行后续施工。□核验未通过,不得进入下道工序施工,整改后再报。业主\/项目监理机构(章):专业监理工程师:日期:","业主\/监理意见:□可进行后续施工。□核验未通过,不得进入下道工序施工,整改后再报。业主\/项目监理机构(章):专业监理工程师:日期:","业主\/监理意见:□可进行后续施工。□核验未通过,不得进入下道工序施工,整改后再报。业主\/项目监理机构(章):专业监理工程师:日期:","业主\/监理意见:□可进行后续施工。□核验未通过,不得进入下道工序施工,整改后再报。业主\/项目监理机构(章):专业监理工程师:日期:"],["注:1、未经项目监理部验收通过,承包单位不得进入下道工序施工。2、施工项目经理部应提前提出本报验单,并给予配合。","注:1、未经项目监理部验收通过,承包单位不得进入下道工序施工。2、施工项目经理部应提前提出本报验单,并给予配合。","注:1、未经项目监理部验收通过,承包单位不得进入下道工序施工。2、施工项目经理部应提前提出本报验单,并给予配合。","注:1、未经项目监理部验收通过,承包单位不得进入下道工序施工。2、施工项目经理部应提前提出本报验单,并给予配合。","注:1、未经项目监理部验收通过,承包单位不得进入下道工序施工。2、施工项目经理部应提前提出本报验单,并给予配合。","注:1、未经项目监理部验收通过,承包单位不得进入下道工序施工。2、施工项目经理部应提前提出本报验单,并给予配合。"],[""]],"node_type":"table","parent":3765,"children":[],"para_type":"table","pageno":217,"layout_index":3,"box":[62,227,477,521]}
- {"node_id":3768,"text":"48 ","node_type":"head_tail","parent":3765,"children":[],"para_type":"head_tail","pageno":217,"layout_index":4,"box":[294,815,20,16]}
- {"node_id":3769,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3765,"children":[],"para_type":"head_tail","pageno":218,"layout_index":0,"box":[90,46,146,11]}
- {"node_id":3770,"text":"第九章确保工期的技术组织措施","node_type":"title","parent":3765,"children":[3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817],"para_type":"title_2","pageno":218,"layout_index":1,"box":[161,102,280,19]}
- {"node_id":3771,"text":"我们在工期安排上总的指导思想是:发挥团队整体优势,科学、合理地缩短关键工序的施工周期,争取创造条件,组织好立体交叉作业,充分利用有效工作时间顺利实现工期目标。","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":218,"layout_index":2,"box":[90,165,416,40]}
- {"node_id":3772,"text":"1组织措施:","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":218,"layout_index":3,"box":[90,230,66,14]}
- {"node_id":3773,"text":"1.1选派强有力的项目班子,确保计划的严肃性,做到指令畅通、令行禁止","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":218,"layout_index":4,"box":[90,244,322,13]}
- {"node_id":3774,"text":"1.2建立生产例会制度,每天召开一次工程例会,围绕工程的施工进度、工程质量、生产安全等内","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":218,"layout_index":5,"box":[90,266,415,13]}
- {"node_id":3775,"text":"容检查执行情况","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":218,"layout_index":6,"box":[90,296,68,11]}
- {"node_id":3776,"text":"1.3实行合理的工期、目标奖罚制度","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":218,"layout_index":7,"box":[90,326,157,13]}
- {"node_id":3777,"text":"1.4做好施工配合及前期施工准备工作,拟定施工准备计划,专人逐项落实,确保后勤保障工作的高质高效","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":218,"layout_index":8,"box":[90,347,415,42]}
- {"node_id":3778,"text":"2技术措施:","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":218,"layout_index":9,"box":[90,408,57,13]}
- {"node_id":3779,"text":"2.1设计变更因素:项目经理部要通过学习理解图纸与业主意图,通过自审、会审和与设计交流,采取主动姿态,最大限度地实现事前预控,把影响降到最小。要使本工程在预定工期内完工,就要抓住施工进度计划中的关键工序和关键线路,它是决定工期的关键。对本工程要因地因人进行调整优化、压缩,采取有效的现场措施,确保本工程在预定工期内完成。","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":218,"layout_index":10,"box":[90,446,419,100]}
- {"node_id":3780,"text":"2.2保证资源配置:在材料供应上,按照施工进度计划要求及时进货,做到既满足施工要求,又要使现场无太多的积压,以便有更多的场地安排施工。在人力配备上,以满足关键线路控制点要求为第一层次,以各进度分项目标为第二层次,达到主次分明,步调一致,紧张有序。实行工序、工程段落流水和循环跟进的施","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":218,"layout_index":11,"box":[90,564,420,99]}
- {"node_id":3781,"text":"49 ","node_type":"head_tail","parent":3770,"children":[],"para_type":"head_tail","pageno":218,"layout_index":12,"box":[294,815,20,16]}
- {"node_id":3782,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3770,"children":[],"para_type":"head_tail","pageno":219,"layout_index":0,"box":[90,46,146,11]}
- {"node_id":3783,"text":"工程序;区分轻重缓急,以均衡流水为主,对关键工序、关键环节和必要工作面根据现场环境条件及时组织抢工期及双班作业。","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":219,"layout_index":1,"box":[90,88,415,40]}
- {"node_id":3784,"text":"2.3机械配置:为保证本工程按期完工,我们将配备足够的、专业的施工机械,不仅保证正常使用,还要采取有效技术措施保证有效备用。","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":219,"layout_index":2,"box":[90,153,413,41]}
- {"node_id":3785,"text":"3采取保证工期的管理与组织措施:","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":219,"layout_index":3,"box":[90,213,154,13]}
- {"node_id":3786,"text":"3.1建立强有力的项目经理部,配置高效项目管理层,通过层层签定责任书,形成可靠的项目组织指挥工作层;本工程施工的项目经理、工程技术人员和质检员均由有丰富的施工管理经验的人员担任。","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":219,"layout_index":4,"box":[90,251,415,71]}
- {"node_id":3787,"text":"3.2建立从经理部到各部门到各施工队的调度指挥系统,全面、及时掌握并迅速、准确地处理影响施工进度的各种问题。对工程交叉和施工干扰应加强指挥和协调,对重大关键问题超前研究,制定措施,及时调整工序和调动人、财、物、机,保证工程的连续性和均衡性。","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":219,"layout_index":5,"box":[90,340,419,70]}
- {"node_id":3788,"text":"3.3定期召开每周一次由工程施工总负责人主持、各专业工程施工负责人参加的工程施工协调会,听取关于工程施工进度问题的汇报,协调工程施工内部矛盾,并提出明确的计划调整方案。","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":219,"layout_index":6,"box":[90,428,419,42]}
- {"node_id":3789,"text":"3.4对影响施工进度的关键工序,项目经理亲自组织力量,加班加点进行突击,有关人员要跟班作业,确保关键工序按时完成。","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":219,"layout_index":7,"box":[90,488,413,41]}
- {"node_id":3790,"text":"3.5协调施工:以施工进度计划和施工流水为依据,编制分部分项工程进度计划,明确各专业工种的工序搭接,解决好穿插作业的矛盾。","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":219,"layout_index":8,"box":[90,547,421,41]}
- {"node_id":3791,"text":"建立考核制度:向施工班组下达任务时,同时提出完成该项任务的时间要求,并把是否按期完成分项工程作业计划作为考核指标。","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":219,"layout_index":9,"box":[90,606,415,40]}
- {"node_id":3792,"text":"50 ","node_type":"head_tail","parent":3770,"children":[],"para_type":"head_tail","pageno":219,"layout_index":10,"box":[294,815,20,16]}
- {"node_id":3793,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3770,"children":[],"para_type":"head_tail","pageno":220,"layout_index":0,"box":[90,46,146,11]}
- {"node_id":3794,"text":"3.6推行全面质量管理:精心施工,一丝不苟,在整个施工过程中推行全面质量管理,并同我单位质量标准紧密结合,在施工过程中开展全面质量管理活动。做到管理到位,保证质量,杜绝返工,所有工程都做到一次施工完成,避免了返工修整带来的时间上的损失。使每个分项工程施工都做到有条不紊,严格要求,一","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":220,"layout_index":1,"box":[90,89,417,99]}
- {"node_id":3795,"text":"次达到质量要求等级。","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":220,"layout_index":2,"box":[90,207,97,11]}
- {"node_id":3796,"text":"4施工进度保证措施; ","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":220,"layout_index":3,"box":[90,232,94,12]}
- {"node_id":3797,"text":"本工程施工工期紧,质量要求高。同时在施工过程中还会出现与其他施工单位工程相互影响、突发情况及恶劣天气等问题。在施工进度计划安排中,项目经理根据变化适时调整施工进度计划,使工程施工进度始终处在受控状态。","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":220,"layout_index":4,"box":[90,257,415,50]}
- {"node_id":3798,"text":"4.1各施工小组要全力配合项目部编制的施工进度计划表执行施工任务,以确保如期完成各阶段的","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":220,"layout_index":5,"box":[90,321,415,13]}
- {"node_id":3799,"text":"工作。","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":220,"layout_index":6,"box":[90,342,29,11]}
- {"node_id":3800,"text":"4.2各施工队每天施工完成后将当天施工进展情况及次日工作安排以会议报告的形式报项目经理部,以便项目经理部及时掌握工程动态。","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":220,"layout_index":7,"box":[90,361,415,32]}
- {"node_id":3801,"text":"4.3各施工队每周以书面形式将本周工作进展情况整理汇总,报项目部,并对影响工程进度的因素进行分析,提出解决的方案和建议,由项目经理部汇报建设单位协议。","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":220,"layout_index":8,"box":[90,401,415,32]}
- {"node_id":3802,"text":"4.4项目部应经常和建设单位沟通,由于业主原因影响施工进度要请业主尽快解决,及时对施工计划进行调整和控制,确保工程按期完成。","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":220,"layout_index":9,"box":[90,442,415,31]}
- {"node_id":3803,"text":"5工程变更及应急措施","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":220,"layout_index":10,"box":[90,484,98,13]}
- {"node_id":3804,"text":"鉴于本工程在编制施工组织计划时尚由很多不确定的因素存在,工程施工的前期准备工作完成情况也不尽相同,因此对于施工进度在工程实际实施中将会有所改变,当工程因为出现某种意外的情况而有可能耽误工期时,我们保证马上通过增派施工力量的方式解决这种意外情况,还将根据其他相关情况变化调整本工程的进度,确保工期的圆满顺利完成。设立一个施工应急小队,时刻做好准备,随时需要随时可以投入工作。","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":220,"layout_index":11,"box":[90,503,420,88]}
- {"node_id":3805,"text":"建立强大的后勤保障和技术支持,加强内部培训交流,并到施工现场指导。","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":220,"layout_index":12,"box":[90,607,320,11]}
- {"node_id":3806,"text":"对特别紧急的情况,在保证施工质量与安全的前提下,适当改变施工流程与方式,将主动权掌握在自己手中。","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":220,"layout_index":13,"box":[90,627,421,30]}
- {"node_id":3807,"text":"建立重大事件应急机制。发生重大事件时可调用一切可以调用的人力物资,消除","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":220,"layout_index":14,"box":[90,673,339,11]}
- {"node_id":3808,"text":"51 ","node_type":"head_tail","parent":3770,"children":[],"para_type":"head_tail","pageno":220,"layout_index":15,"box":[294,815,20,16]}
- {"node_id":3809,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3770,"children":[],"para_type":"head_tail","pageno":221,"layout_index":0,"box":[90,46,146,11]}
- {"node_id":3810,"text":"影响,保障工期。","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":221,"layout_index":1,"box":[84,97,78,11]}
- {"node_id":3811,"text":"项目经理密切关注本项目的进展情况,在有需要时紧急调配计划外的人力物力等资源。","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":221,"layout_index":2,"box":[84,123,369,11]}
- {"node_id":3812,"text":"在必要时,我们将与多方协商简化各种手续,尽量缩短中间流程。多与监理单位进","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":221,"layout_index":3,"box":[84,149,353,11]}
- {"node_id":3813,"text":"行沟通,如遇到设计变更的情况及时知悉。","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":221,"layout_index":4,"box":[84,168,184,11]}
- {"node_id":3814,"text":"如遇到突发任务导致工程量增加或是工期缩短的情况下,我公司将采取以下措施来保证满足工期的要求:","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":221,"layout_index":5,"box":[84,193,420,30]}
- {"node_id":3815,"text":"1) 在突发工作量不多的情况下,将工作量分化到各施工队,在保证质量和安全的前提下,通过加班加点按时完成任务。","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":221,"layout_index":6,"box":[84,238,419,31]}
- {"node_id":3816,"text":"2) 成立后备施工队并配置相应的器具,正常情况下负责设备的维护和业务的新增、割接等事项。当接到管线突发任务时,优先进行突发任务的处理,人员将根据突发工程量的情况进行合理安排,保证做到不因突发任务而影响整个工程的整体进度","node_type":"text","parent":3770,"children":[],"para_type":"text","pageno":221,"layout_index":7,"box":[84,277,420,50]}
- {"node_id":3817,"text":"3. 防疫措施","node_type":"title","parent":3770,"children":[3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828],"para_type":"title_5","pageno":221,"layout_index":8,"box":[78,352,54,13]}
- {"node_id":3818,"text":"面对人类共同灾难,举国抗疫时候为确保安全保证生产安全人员安全,顺利完工本项目我司将采取以下措施:防疫口诀:戴口罩、强防护、勤洗手、少外出、别扎堆、慎聚餐,有症状,早咨询!","node_type":"text","parent":3817,"children":[],"para_type":"text","pageno":221,"layout_index":9,"box":[85,372,465,30]}
- {"node_id":3819,"text":"1.现场人员杜绝疫区旅居史,生活史,所有人必须接种疫苗。","node_type":"text","parent":3817,"children":[],"para_type":"text","pageno":221,"layout_index":10,"box":[85,412,260,11]}
- {"node_id":3820,"text":"2.所有进入施工现场人员持有48小时核酸检测报告,健康码和行程码皆为绿色,方可进入项目现场。","node_type":"text","parent":3817,"children":[],"para_type":"text","pageno":221,"layout_index":11,"box":[85,432,425,11]}
- {"node_id":3821,"text":"3. 所有人员严禁聚集,聚餐,专人负责每天每人体温检测","node_type":"text","parent":3817,"children":[],"para_type":"text","pageno":221,"layout_index":12,"box":[85,451,245,13]}
- {"node_id":3822,"text":"4. 施工佩戴口罩,下班禁止私自外出,专人不定时清点人数。","node_type":"text","parent":3817,"children":[],"para_type":"text","pageno":221,"layout_index":13,"box":[85,471,264,13]}
- {"node_id":3823,"text":"5.集中生产所需材料,集中进场堆放,避免疫情影响运输延误工期,进入生产区运输人员遵守以上相关防疫措施","node_type":"text","parent":3817,"children":[],"para_type":"text","pageno":221,"layout_index":14,"box":[85,494,460,29]}
- {"node_id":3824,"text":"6. 发现异常及时上报,现场设置临时隔离点,等待有关部门介入处理","node_type":"text","parent":3817,"children":[],"para_type":"text","pageno":221,"layout_index":15,"box":[85,533,293,12]}
- {"node_id":3825,"text":"疫情防控检查","node_type":"text","parent":3817,"children":[],"para_type":"text","pageno":221,"layout_index":16,"box":[147,693,72,13]}
- {"node_id":3826,"text":"测体温","node_type":"text","parent":3817,"children":[],"para_type":"text","pageno":221,"layout_index":17,"box":[399,693,36,13]}
- {"node_id":3827,"text":"52 ","node_type":"head_tail","parent":3817,"children":[],"para_type":"head_tail","pageno":221,"layout_index":18,"box":[293,813,13,9]}
- {"node_id":3828,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3817,"children":[],"para_type":"head_tail","pageno":222,"layout_index":0,"box":[90,46,146,11]}
- {"node_id":3829,"text":"第十章确保安全及文明施工的措施","node_type":"title","parent":3765,"children":[3830],"para_type":"title_2","pageno":222,"layout_index":1,"box":[153,73,289,19]}
- {"node_id":3830,"text":"(一)安全生产措施与承诺","node_type":"title","parent":3829,"children":[3831,3833],"para_type":"title_4","pageno":222,"layout_index":2,"box":[51,128,144,13]}
- {"node_id":3831,"text":"1、安全管理目标","node_type":"title","parent":3830,"children":[3832],"para_type":"title_5","pageno":222,"layout_index":3,"box":[51,162,90,13]}
- {"node_id":3832,"text":"采取切实可行的措施和充足的安全投入,通过严密的安全管理,确保施工现场不发生重大伤亡事故、火灾事故和恶性中毒事件;做好现场围挡保护和引导。","node_type":"text","parent":3831,"children":[],"para_type":"text","pageno":222,"layout_index":4,"box":[90,187,415,32]}
- {"node_id":3833,"text":"2、安全生产总则和部署","node_type":"title","parent":3830,"children":[3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853],"para_type":"title_5","pageno":222,"layout_index":5,"box":[51,236,126,13]}
- {"node_id":3834,"text":"“安全生产、预防为主”是我公司安全生产工作一贯遵循的原则,我公司在本工程安全生产管理以“公司管理、项目负责、业主监督、全员参与”为模式,以工地全面安全管理和安全预防技术管理手段,层层落实安全生产岗位责任制。按照“安全预测→制定安全措施→执行落实安全措施→检查监督”的基本预防程序达到预防的目的,脚踏实地的搞好安全生产。","node_type":"text","parent":3833,"children":[],"para_type":"text","pageno":222,"layout_index":6,"box":[90,265,416,71]}
- {"node_id":3835,"text":"①、成立以项目经理为组长的安全工作领导小组,项目经理为项目安全生产的第一责任人,主抓安全生产工作;安全工作领导小组成员由项目安全及项目施工、技术方面主要管理人员组成;领导小组成员应明确各自分工职责,建立以组长为首的监督检查制度。(附图:安全管理机构图)","node_type":"text","parent":3833,"children":[],"para_type":"text","pageno":222,"layout_index":7,"box":[90,352,420,52]}
- {"node_id":3836,"text":"②、配备项目安全员,安全员持证上岗;","node_type":"text","parent":3833,"children":[],"para_type":"text","pageno":222,"layout_index":8,"box":[90,420,188,11]}
- {"node_id":3837,"text":"③、施工现场技术负责人对现场安全管理人员进行书面安全交底;现场安全管理人员对施工班组进行书面安全交底;专业施工班组长应在每日上班前对本班组成员进行口头安全交底。","node_type":"text","parent":3833,"children":[],"para_type":"text","pageno":222,"layout_index":9,"box":[90,449,415,31]}
- {"node_id":3838,"text":"④、施工人员进场后,在正式施工前进行一次全员安全教育,分批进场施工人员,分批进行全员安全教育;施工过程中安全员安全教育每周一次。","node_type":"text","parent":3833,"children":[],"para_type":"text","pageno":222,"layout_index":10,"box":[90,496,426,31]}
- {"node_id":3839,"text":"⑤、项目安全员做好每日的安全检查及问题处理记录(施工日志);项目经理部每周应组织一次工地全面安全检查,并保存相关检查记录及问题处理记录。","node_type":"text","parent":3833,"children":[],"para_type":"text","pageno":222,"layout_index":11,"box":[90,543,415,32]}
- {"node_id":3840,"text":"⑥、各班组必坚持一日三检制,即(班前、班中、班后),检查各自的作业面,是否存在不安全的隐患,发现问题及时处理或上报,严禁冒险蛮干。","node_type":"text","parent":3833,"children":[],"para_type":"text","pageno":222,"layout_index":12,"box":[90,590,419,32]}
- {"node_id":3841,"text":"⑦、各施工区域应认真执行自检、互检、交接程序,严禁上一班把隐患留给下一班。","node_type":"text","parent":3833,"children":[],"para_type":"text","pageno":222,"layout_index":13,"box":[90,638,387,11]}
- {"node_id":3842,"text":"53 ","node_type":"head_tail","parent":3833,"children":[],"para_type":"head_tail","pageno":222,"layout_index":14,"box":[293,813,13,9]}
- {"node_id":3843,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3833,"children":[],"para_type":"head_tail","pageno":223,"layout_index":0,"box":[90,46,146,11]}
- {"node_id":3844,"text":"","node_type":"image","parent":3833,"children":[],"para_type":"image","pageno":223,"layout_index":1,"box":[105,71,369,216]}
- {"node_id":3845,"text":"施工班组定期安全培训和教育","node_type":"text","parent":3833,"children":[],"para_type":"text","pageno":223,"layout_index":2,"box":[198,302,135,11]}
- {"node_id":3846,"text":"⑧、季节性变化,节假日前后,由质安部会同各区域施工负责人进行施工现场相关的检查,问题由各区域施工员负责落实到作业班组进行整改、记录归档。","node_type":"text","parent":3833,"children":[],"para_type":"text","pageno":223,"layout_index":3,"box":[85,331,420,25]}
- {"node_id":3847,"text":"⑨、安全生产领导小组成员随时到工地进行检查,发现隐患及时落实整改,发现个人有违章行为及时纠正和处罚。","node_type":"text","parent":3833,"children":[],"para_type":"text","pageno":223,"layout_index":4,"box":[90,365,415,25]}
- {"node_id":3848,"text":"⑩、通过各种方式,把事故控制在盟芽之中。3、","node_type":"text","parent":3833,"children":[],"para_type":"text","pageno":223,"layout_index":5,"box":[90,398,246,13]}
- {"node_id":3849,"text":"安全管理制度","node_type":"text","parent":3833,"children":[],"para_type":"text","pageno":223,"layout_index":6,"box":[90,412,72,13]}
- {"node_id":3850,"text":"①、未经过三级教育的员工禁止进入施工现场。","node_type":"text","parent":3833,"children":[],"para_type":"text","pageno":223,"layout_index":7,"box":[90,428,219,11]}
- {"node_id":3851,"text":"②、进入施工现场人员必须佩戴胸卡,正确戴好有标志的安全帽。","node_type":"text","parent":3833,"children":[],"para_type":"text","pageno":223,"layout_index":8,"box":[90,449,303,11]}
- {"node_id":3852,"text":"③、进入施工现场人员必须佩戴好个人防护用品,个人防护用品必须有合格证明,进场时必须经项目安全员验收,合格后方可使用。","node_type":"text","parent":3833,"children":[],"para_type":"text","pageno":223,"layout_index":9,"box":[90,472,420,25]}
- {"node_id":3853,"text":"","node_type":"image","parent":3833,"children":[],"para_type":"image","pageno":223,"layout_index":10,"box":[136,521,322,208]}
- {"node_id":3854,"text":"每天施工班组入场前安全早会","node_type":"title","parent":0,"children":[3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3879],"para_type":"title_1","pageno":223,"layout_index":11,"box":[243,748,156,13]}
- {"node_id":3855,"text":"54 ","node_type":"head_tail","parent":3854,"children":[],"para_type":"head_tail","pageno":223,"layout_index":12,"box":[293,813,13,9]}
- {"node_id":3856,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3854,"children":[],"para_type":"head_tail","pageno":224,"layout_index":0,"box":[90,46,146,11]}
- {"node_id":3857,"text":"④、严禁穿拖鞋、高跟鞋、打赤脚、赤膊进入现场,施工现场严禁吸烟。","node_type":"text","parent":3854,"children":[],"para_type":"text","pageno":224,"layout_index":1,"box":[90,98,335,11]}
- {"node_id":3858,"text":"⑤、上、下班人员必须走安全通道口。","node_type":"text","parent":3854,"children":[],"para_type":"text","pageno":224,"layout_index":2,"box":[90,127,177,11]}
- {"node_id":3859,"text":"⑥、严禁酒后登高作业和操作机械。","node_type":"text","parent":3854,"children":[],"para_type":"text","pageno":224,"layout_index":3,"box":[90,155,167,11]}
- {"node_id":3860,"text":"⑦、严禁随意拆移、毁坏各种安全标志、标牌和防护设施。","node_type":"text","parent":3854,"children":[],"para_type":"text","pageno":224,"layout_index":4,"box":[90,184,272,11]}
- {"node_id":3861,"text":"⑧、严禁高空抛物","node_type":"text","parent":3854,"children":[],"para_type":"text","pageno":224,"layout_index":5,"box":[90,212,83,11]}
- {"node_id":3862,"text":"⑨、非特种作业人同禁止进行特种作业活动。","node_type":"text","parent":3854,"children":[],"para_type":"text","pageno":224,"layout_index":6,"box":[90,241,209,11]}
- {"node_id":3863,"text":"⑩、上下交叉作业无可靠的防护措施禁止施工。","node_type":"text","parent":3854,"children":[],"para_type":"text","pageno":224,"layout_index":7,"box":[90,269,219,11]}
- {"node_id":3864,"text":"○11、患有高血压、心脏病、贫血病等建筑业禁忌病史的病人禁止入场施工。","node_type":"text","parent":3854,"children":[],"para_type":"text","pageno":224,"layout_index":8,"box":[90,300,325,19]}
- {"node_id":3865,"text":"○12、夜间施工照明不足禁止作业。","node_type":"text","parent":3854,"children":[],"para_type":"text","pageno":224,"layout_index":9,"box":[90,339,151,19]}
- {"node_id":3866,"text":"○13、与工程无关人员禁止进入施工现场,如有外来人员和上级领导进入现场检查和指导工作,须有专人领队,并遵守施工现场的安全规定。、现场严禁明火,进入现场不得吸烟。","node_type":"text","parent":3854,"children":[],"para_type":"text","pageno":224,"layout_index":10,"box":[90,379,420,38]}
- {"node_id":3867,"text":"○14、违反以上各规定者,安全检查小组成品有权对其经济处罚。","node_type":"text","parent":3854,"children":[],"para_type":"text","pageno":224,"layout_index":11,"box":[90,434,277,19]}
- {"node_id":3868,"text":"○15、在施工现场对即将发生的重大事故,即突发事件采取了紧急有效的措施,制止了事故发生的有功人员,将得到奖励。","node_type":"text","parent":3854,"children":[],"para_type":"text","pageno":224,"layout_index":12,"box":[90,473,415,37]}
- {"node_id":3869,"text":"○16、对于严重违反上述规定者,将被清退出场,触犯刑法的将依法追究其刑事责任,以上规定即日起执行。","node_type":"text","parent":3854,"children":[],"para_type":"text","pageno":224,"layout_index":13,"box":[93,526,452,41]}
- {"node_id":3870,"text":"4、安全用电技术措施","node_type":"title","parent":3854,"children":[3871,3872,3873,3874,3875,3876,3877,3878],"para_type":"title_5","pageno":224,"layout_index":14,"box":[93,585,115,13]}
- {"node_id":3871,"text":"①、现场临时用电严格遵照《施工现场临时用电安全技术规范》的有关规定及要求进行布置和架设。临设电气工程设施施工完成后,由总包电气工程师、总包项目安全员等相关工作人员共同验收,合格后方可使用。","node_type":"text","parent":3870,"children":[],"para_type":"text","pageno":224,"layout_index":15,"box":[90,607,419,52]}
- {"node_id":3872,"text":"②、所有的开关箱必须装上漏电保护开关,施工现场所用的电线应为铜芯电缆,其截面必须能满足施工用电要求。施工现场所有用电设备,除作保护接零外,必须在设备负荷线的首端处安装漏电保护器。漏电保护器的选择应符合国标GB6829-86《漏电电流动作捉住器(剩余电流动作保护器)》的要求,开关箱内的漏电保护器其额定漏电动作电流不应大于30mA,额定漏电动作时间应小于0.1s。","node_type":"text","parent":3870,"children":[],"para_type":"text","pageno":224,"layout_index":16,"box":[90,675,419,95]}
- {"node_id":3873,"text":"③、施工现场临时用电,由值班电工负责接驳,不能随意乱拉乱接。值班电工负责检查用电情况。","node_type":"text","parent":3870,"children":[],"para_type":"text","pageno":224,"layout_index":17,"box":[90,784,416,11]}
- {"node_id":3874,"text":"55 ","node_type":"head_tail","parent":3870,"children":[],"para_type":"head_tail","pageno":224,"layout_index":18,"box":[293,813,13,9]}
- {"node_id":3875,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3870,"children":[],"para_type":"head_tail","pageno":225,"layout_index":0,"box":[91,46,143,9]}
- {"node_id":3876,"text":"④、安装和使用电气设备时,应注意各类电气设备、线路不准超负荷使用,线路接头要接牢,防止设备线路过热或打火短路;各种穿墙电线或靠近易燃物的照明线要穿管保护,灯具与易燃物应保持安全距离,不得在高压线下面搭设临建或堆放可燃材料。","node_type":"text","parent":3870,"children":[],"para_type":"text","pageno":225,"layout_index":1,"box":[89,72,416,51]}
- {"node_id":3877,"text":"⑤、潮湿和易触及带电的场所,其照明电源电压<36V。","node_type":"text","parent":3870,"children":[],"para_type":"text","pageno":225,"layout_index":2,"box":[89,140,248,10]}
- {"node_id":3878,"text":"⑥、配电箱内的电器应首先安装在金属或非木质的绝缘电器安装板上,在配电箱箱体内,金属板与配电箱体应作电气连接。配电箱、开关箱内的各种电器应按规定的位置紧固在安装板上,不得歪斜和松动。并且电器设备之间,设备与板四周的距离应符合有关工艺标准的要求。","node_type":"text","parent":3870,"children":[],"para_type":"text","pageno":225,"layout_index":3,"box":[89,168,416,52]}
- {"node_id":3879,"text":"5、施工机具的使用","node_type":"title","parent":3854,"children":[3880,3881,3882,3883,3884],"para_type":"title_5","pageno":225,"layout_index":4,"box":[49,236,103,12]}
- {"node_id":3880,"text":"①、施工机具进场后由总包项目安全员、公司项目安全员等相关人员共同验收,合格后方可使用","node_type":"text","parent":3879,"children":[],"para_type":"text","pageno":225,"layout_index":5,"box":[87,265,421,33]}
- {"node_id":3881,"text":"②、施工机具应设专人负责维修、保养,定期检查;","node_type":"text","parent":3879,"children":[],"para_type":"text","pageno":225,"layout_index":6,"box":[89,313,234,9]}
- {"node_id":3882,"text":"③、施工机具应保护设施齐全、外观整洁;","node_type":"text","parent":3879,"children":[],"para_type":"text","pageno":225,"layout_index":7,"box":[89,341,191,10]}
- {"node_id":3883,"text":"④、施工机具采用原装电源线或橡胶套缆线,使用专用安全插头与配电箱连接;","node_type":"text","parent":3879,"children":[],"para_type":"text","pageno":225,"layout_index":8,"box":[89,370,360,10]}
- {"node_id":3884,"text":"⑤、施工机具使用前均应进行严格检查,其电源线不应有破损老化等现象,工具","node_type":"text","parent":3879,"children":[],"para_type":"text","pageno":225,"layout_index":9,"box":[90,398,336,10]}
- {"node_id":3885,"text":"定期检查施工设备和电源线路","node_type":"title","parent":0,"children":[3886,3887,3888,3889,3915,3938],"para_type":"title_1","pageno":225,"layout_index":10,"box":[203,660,135,9]}
- {"node_id":3886,"text":"56","node_type":"head_tail","parent":3885,"children":[],"para_type":"head_tail","pageno":225,"layout_index":11,"box":[291,811,12,9]}
- {"node_id":3887,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3885,"children":[],"para_type":"head_tail","pageno":226,"layout_index":0,"box":[90,46,146,11]}
- {"node_id":3888,"text":"开关必须安装牢固,动作灵敏、可靠;位置固定使用的施工机具,其开关位置应设置在开关方便位置,并张贴安全操作使用规程;","node_type":"text","parent":3885,"children":[],"para_type":"text","pageno":226,"layout_index":1,"box":[82,72,463,31]}
- {"node_id":3889,"text":"6、电气设备的操作与维修人员必须符合的要求:","node_type":"title","parent":3885,"children":[3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914],"para_type":"title_5","pageno":226,"layout_index":2,"box":[85,115,246,13]}
- {"node_id":3890,"text":"施工现场内临时用电的施工和维修必须由经过培训后取得上岗证书的专业电工完成,电工的等级应同工程的难易程度和技术复杂性相适应,初级电工不允许进行中、高级电工的作业。","node_type":"text","parent":3889,"children":[],"para_type":"text","pageno":226,"layout_index":3,"box":[90,142,416,31]}
- {"node_id":3891,"text":"各类用电人员应做到:","node_type":"text","parent":3889,"children":[],"para_type":"text","pageno":226,"layout_index":4,"box":[90,189,104,11]}
- {"node_id":3892,"text":"①、掌握安全用电基本知识和所用设备的性能;","node_type":"text","parent":3889,"children":[],"para_type":"text","pageno":226,"layout_index":5,"box":[90,218,219,11]}
- {"node_id":3893,"text":"②、使用设备前必须按规定穿戴和配备好相应的劳动防护用品;并检查电报装置和保护设施是否完好。严禁设备带“病”运转。","node_type":"text","parent":3889,"children":[],"para_type":"text","pageno":226,"layout_index":6,"box":[90,246,415,32]}
- {"node_id":3894,"text":"③、停用的设备必须拉闸断电,锁好开关箱。","node_type":"text","parent":3889,"children":[],"para_type":"text","pageno":226,"layout_index":7,"box":[90,293,209,11]}
- {"node_id":3895,"text":"④、负责保护所用设备的负荷线、保护零线和开关箱。发现问题,及时报告解决。","node_type":"text","parent":3889,"children":[],"para_type":"text","pageno":226,"layout_index":8,"box":[90,322,377,11]}
- {"node_id":3896,"text":"⑤、搬迁或移动用电设备,必须经电工切断电源并作妥善处理后进行。7、","node_type":"text","parent":3889,"children":[],"para_type":"text","pageno":226,"layout_index":9,"box":[90,350,378,13]}
- {"node_id":3897,"text":"电气设备的使用与维护:","node_type":"text","parent":3889,"children":[],"para_type":"text","pageno":226,"layout_index":10,"box":[90,374,132,13]}
- {"node_id":3898,"text":"①、施工现场的所有配电箱、开关箱应每周进行一次检查和维修。检查、维修必须是专业电工。工作时必须穿戴好绝缘用品,必须使用电工绝缘工具。","node_type":"text","parent":3889,"children":[],"para_type":"text","pageno":226,"layout_index":11,"box":[90,397,415,32]}
- {"node_id":3899,"text":"②、检查、维修配电箱、开关箱时,必须将其前一级相应的电源开关拉闸断电,并悬挂停电标志牌,严禁带电作业。","node_type":"text","parent":3889,"children":[],"para_type":"text","pageno":226,"layout_index":12,"box":[90,445,419,31]}
- {"node_id":3900,"text":"③、配电箱内盘面上应标明各回路的名称、用途,同时要作出分路标记。","node_type":"text","parent":3889,"children":[],"para_type":"text","pageno":226,"layout_index":13,"box":[90,492,335,11]}
- {"node_id":3901,"text":"④、总分配电箱门应配锁,配电箱和开关箱应指定专人负责。施工现场停止作业1小时以上时,应将动力开关箱上锁。","node_type":"text","parent":3889,"children":[],"para_type":"text","pageno":226,"layout_index":14,"box":[90,521,415,31]}
- {"node_id":3902,"text":"⑤、各种配电箱内不允许放置任何杂物,并应保护清洁。箱内不得挂接其他临时用电设备。","node_type":"text","parent":3889,"children":[],"para_type":"text","pageno":226,"layout_index":15,"box":[90,568,384,11]}
- {"node_id":3903,"text":"⑥、熔断器的熔体更换时,严禁用不符合原规格的熔体代替。8、防火","node_type":"text","parent":3889,"children":[],"para_type":"text","pageno":226,"layout_index":16,"box":[90,594,323,11]}
- {"node_id":3904,"text":"管理","node_type":"text","parent":3889,"children":[],"para_type":"text","pageno":226,"layout_index":17,"box":[90,615,20,11]}
- {"node_id":3905,"text":"严格管理施工现场消防、防火工作,制定行之有效的施工现场消防、防火管理制度。","node_type":"text","parent":3889,"children":[],"para_type":"text","pageno":226,"layout_index":18,"box":[90,642,363,11]}
- {"node_id":3906,"text":"①、施工现场建立和执行防火管理制度,设置消防设施,在易发生火灾区域采取特殊的消防安全措施。","node_type":"text","parent":3889,"children":[],"para_type":"text","pageno":226,"layout_index":19,"box":[90,668,415,32]}
- {"node_id":3907,"text":"57 ","node_type":"head_tail","parent":3889,"children":[],"para_type":"head_tail","pageno":226,"layout_index":20,"box":[293,813,13,9]}
- {"node_id":3908,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3889,"children":[],"para_type":"head_tail","pageno":227,"layout_index":0,"box":[90,46,146,11]}
- {"node_id":3909,"text":"②、项目部以项目经理为负责人组织消防、防火管理小组,责任层层落实到班组和个人,加强安全生产,防火教育,分期分项做好消防、防火工作。","node_type":"text","parent":3889,"children":[],"para_type":"text","pageno":227,"layout_index":1,"box":[90,77,415,31]}
- {"node_id":3910,"text":"③、现场配备齐全消防验收合格的灭火器、消防水桶、黄砂箱,并明确标志消防标志。","node_type":"text","parent":3889,"children":[],"para_type":"text","pageno":227,"layout_index":2,"box":[90,124,367,11]}
- {"node_id":3911,"text":"④、堆放区、仓库等特殊防火要求区域,加强消防监管力度,增加布置消防设施,安排专人24小时守护。","node_type":"text","parent":3889,"children":[],"para_type":"text","pageno":227,"layout_index":3,"box":[90,151,427,12]}
- {"node_id":3912,"text":"⑤、材料等物品,特别加强消防管理,严格收发制度,对用毕的材料一律随时归库保管。","node_type":"text","parent":3889,"children":[],"para_type":"text","pageno":227,"layout_index":4,"box":[90,177,370,11]}
- {"node_id":3913,"text":"⑥、仓库内严禁用碘钨作照明工具。","node_type":"text","parent":3889,"children":[],"para_type":"text","pageno":227,"layout_index":5,"box":[90,204,167,11]}
- {"node_id":3914,"text":"⑦、在现场摆放一定数量的干粉灭火器,随时预防火灾。由专人负责对消防器材进行管理,做好消防器材配备、管理及维修工作,定期检查,保持长备有效。,9、安全生产各级岗位责任制","node_type":"text","parent":3889,"children":[],"para_type":"text","pageno":227,"layout_index":6,"box":[90,232,420,34]}
- {"node_id":3915,"text":"1、项目经理职责","node_type":"title","parent":3885,"children":[3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937],"para_type":"title_5","pageno":227,"layout_index":7,"box":[87,281,90,13]}
- {"node_id":3916,"text":"①、在公司经理的领导下,对本工程项目劳动保护和安全生产工作负全面的领导责任。","node_type":"text","parent":3915,"children":[],"para_type":"text","pageno":227,"layout_index":8,"box":[90,308,357,11]}
- {"node_id":3917,"text":"②、认真贯彻执行党和国家相关劳动保护的方针,政策法令、法规和上级相关规定、制度。","node_type":"text","parent":3915,"children":[],"para_type":"text","pageno":227,"layout_index":9,"box":[90,335,384,11]}
- {"node_id":3918,"text":"③、建立建全工程项目的安全管理机构,落实各级管理人员的安全生产岗位责任制,制定项目的安全管理办法和安全达标计划,并组织实施。","node_type":"text","parent":3915,"children":[],"para_type":"text","pageno":227,"layout_index":10,"box":[90,362,415,31]}
- {"node_id":3919,"text":"④、对广大职工和管理干部及民工经常进行安全生产的思想教育,不断提高广大职工和管理人员及民工的安全生产重要意义的认识,合理使用民工,严格按公司民工管理办法执行,杜绝项目私自乱雇民工现象。","node_type":"text","parent":3915,"children":[],"para_type":"text","pageno":227,"layout_index":11,"box":[90,409,415,52]}
- {"node_id":3920,"text":"⑤、定期地听取分管生产的项目副经理和安全员关于安全生产情况的汇报,并定期地向职工报告安全生产情况总结和推广安全生产先进经验。对在生产中作出显著成绩者提出奖励意见。","node_type":"text","parent":3915,"children":[],"para_type":"text","pageno":227,"layout_index":12,"box":[90,477,415,32]}
- {"node_id":3921,"text":"⑥、参与工伤事故的调查,并组织实施改进措施。","node_type":"text","parent":3915,"children":[],"para_type":"text","pageno":227,"layout_index":13,"box":[90,524,230,11]}
- {"node_id":3922,"text":"⑦、参加本工程和项目施工组织设计或施工方案中安全措施的讨论工作,对项目安全防护费用投入进行决策。","node_type":"text","parent":3915,"children":[],"para_type":"text","pageno":227,"layout_index":14,"box":[90,553,415,31]}
- {"node_id":3923,"text":"⑧、对违章作业,违章指挥有权令其停工并提出行政和经济处理意见。对危及安","node_type":"text","parent":3915,"children":[],"para_type":"text","pageno":227,"layout_index":15,"box":[90,600,366,11]}
- {"node_id":3924,"text":"58 ","node_type":"head_tail","parent":3915,"children":[],"para_type":"head_tail","pageno":227,"layout_index":16,"box":[293,813,13,9]}
- {"node_id":3925,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3915,"children":[],"para_type":"head_tail","pageno":228,"layout_index":0,"box":[90,46,146,11]}
- {"node_id":3926,"text":"全的施工部位和场所要勒令停止施工。2、","node_type":"text","parent":3915,"children":[],"para_type":"text","pageno":228,"layout_index":1,"box":[90,77,216,13]}
- {"node_id":3927,"text":"专职安全员职责","node_type":"text","parent":3915,"children":[],"para_type":"text","pageno":228,"layout_index":2,"box":[90,100,84,13]}
- {"node_id":3928,"text":"①、宣传和贯彻和国家有关劳动保护的方针,政策、法令、法规和上级有关安全生产的规章制度和决议。","node_type":"text","parent":3915,"children":[],"para_type":"text","pageno":228,"layout_index":3,"box":[90,124,415,31]}
- {"node_id":3929,"text":"②、经常对施工现场、车辆、机械进行安全检查及时发现各种不安全问题要及时向领导和上级主管部门汇报,发现严重不安全隐患和特别紧急的不安全情况时,有权指令先行停止生产,并立即报告有关上级处理。","node_type":"text","parent":3915,"children":[],"para_type":"text","pageno":228,"layout_index":4,"box":[90,171,420,52]}
- {"node_id":3930,"text":"③、随时监督检查项目和班(组)执行安全生产规章制度和安全技术操作规程情况,对违章和冒险作业要立即劝阻,对有可能造成重大伤亡事故者,有权先行指令其停工、签发《安全隐患通知单》并立即报告领导处理。对不认真执行或不执行安全规章制度的单位和个人有权越级上报。","node_type":"text","parent":3915,"children":[],"para_type":"text","pageno":228,"layout_index":5,"box":[90,239,418,52]}
- {"node_id":3931,"text":"④、参加由公司主持编制的施工方案和年度安全技术措施计划,对安全技术措施提出意见,并在施工中监督检查其落实和执行情况。","node_type":"text","parent":3915,"children":[],"para_type":"text","pageno":228,"layout_index":6,"box":[90,307,415,32]}
- {"node_id":3932,"text":"⑤、参加公司组织的安全生产检查,对不安全问题提出改进措施和意见,并监督其整改和实施。","node_type":"text","parent":3915,"children":[],"para_type":"text","pageno":228,"layout_index":7,"box":[90,354,405,11]}
- {"node_id":3933,"text":"⑥、督促个区域施工员和班(组)执行安全技术交底、安全检查和安全活动日工作,支持和指导班(组)兼职安全员工作。","node_type":"text","parent":3915,"children":[],"para_type":"text","pageno":228,"layout_index":8,"box":[90,381,415,32]}
- {"node_id":3934,"text":"⑦、协助公司、项目和班(组)对职工进行安全教育和安全技术操作规程的学习。","node_type":"text","parent":3915,"children":[],"para_type":"text","pageno":228,"layout_index":9,"box":[90,428,354,11]}
- {"node_id":3935,"text":"⑧、参加安全事故的调查和处理,作好工伤(交通)事故的统计、分析和上报工作,会同有关人员提出防止事故的措施,并监督检查实施。","node_type":"text","parent":3915,"children":[],"para_type":"text","pageno":228,"layout_index":10,"box":[90,457,415,31]}
- {"node_id":3936,"text":"⑨、会同有关人员作好防尘、防毒、防暑降温和女工保护工作,监督有关部门人员及时发放和合理使用个人防护用品,保健食品和清凉饮料。","node_type":"text","parent":3915,"children":[],"para_type":"text","pageno":228,"layout_index":11,"box":[90,504,415,32]}
- {"node_id":3937,"text":"⑩、搞好工伤月报、建立工伤台帐,作好安全检查的原始记录和安全资料档案的整理。","node_type":"text","parent":3915,"children":[],"para_type":"text","pageno":228,"layout_index":12,"box":[90,551,357,11]}
- {"node_id":3938,"text":"3、工人职责","node_type":"title","parent":3885,"children":[3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951],"para_type":"title_5","pageno":228,"layout_index":13,"box":[75,580,66,13]}
- {"node_id":3939,"text":"①、在“安全促进生产、生产必须安全”的原则下,牢固树立安全第一的思想。努力提高自我保护意识。","node_type":"text","parent":3938,"children":[],"para_type":"text","pageno":228,"layout_index":14,"box":[90,607,419,31]}
- {"node_id":3940,"text":"②、自觉遵守各项安全规章制度,遵守安全技术操作规程和劳动劳动纪律,不准违章作业和冒险施工。","node_type":"text","parent":3938,"children":[],"para_type":"text","pageno":228,"layout_index":15,"box":[90,654,415,32]}
- {"node_id":3941,"text":"59 ","node_type":"head_tail","parent":3938,"children":[],"para_type":"head_tail","pageno":228,"layout_index":16,"box":[293,813,13,9]}
- {"node_id":3942,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3938,"children":[],"para_type":"head_tail","pageno":229,"layout_index":0,"box":[90,46,146,11]}
- {"node_id":3943,"text":"③、施工前要全面检查施工场地、防护措施、机具设备、电源线路、易燃、易爆物品等安全情况,存在不安全问题时,要及时向班组长或安全员汇报,在事故隐患未排除前,不进行操作。","node_type":"text","parent":3938,"children":[],"para_type":"text","pageno":229,"layout_index":1,"box":[90,77,416,31]}
- {"node_id":3944,"text":"④、施工中要注意安全并经常检查施工环境的安全情况,注意班内和工种间的配合,避免互相影响而发生工伤事故。","node_type":"text","parent":3938,"children":[],"para_type":"text","pageno":229,"layout_index":2,"box":[90,124,415,32]}
- {"node_id":3945,"text":"⑤、施工结束后,全面检查施工现场、电源、线路、机械设备,不得遗留可能发生安全事故的隐患。⑥、接受安全人员和检查和监督,违章作业一经指出就要进行改正。","node_type":"text","parent":3938,"children":[],"para_type":"text","pageno":229,"layout_index":3,"box":[90,171,420,38]}
- {"node_id":3946,"text":"⑦、接受施工员、队长或班长的安全技术交底,并在操作过程中严格遵守。","node_type":"text","parent":3938,"children":[],"para_type":"text","pageno":229,"layout_index":4,"box":[90,226,345,11]}
- {"node_id":3947,"text":"⑧、发生工伤事故要保护好现场,如实讲清事故经过,要积极协助调查人员工作,接受合理的处分。","node_type":"text","parent":3938,"children":[],"para_type":"text","pageno":229,"layout_index":5,"box":[90,255,404,11]}
- {"node_id":3948,"text":"⑨、经常自学安全技术操作规程,刻苦学习操作技术,提高安全操作技术水平。","node_type":"text","parent":3938,"children":[],"para_type":"text","pageno":229,"layout_index":6,"box":[90,281,366,11]}
- {"node_id":3949,"text":"⑩、身体不适或情况不佳者,除去医院治疗外,应向施工员、队长或班长讲清原由,以便安排适当工作。","node_type":"text","parent":3938,"children":[],"para_type":"text","pageno":229,"layout_index":7,"box":[90,310,415,31]}
- {"node_id":3950,"text":"○11、积极参加班组安全活动。","node_type":"text","parent":3938,"children":[],"para_type":"text","pageno":229,"layout_index":8,"box":[90,360,131,19]}
- {"node_id":3951,"text":"○12、正确使用各种安全装置和个人防护用品。","node_type":"text","parent":3938,"children":[],"para_type":"text","pageno":229,"layout_index":9,"box":[90,399,199,19]}
- {"node_id":3952,"text":"安全管理机构","node_type":"title","parent":0,"children":[3953,3954,3955,3956,3972],"para_type":"title_1","pageno":229,"layout_index":10,"box":[266,435,62,11]}
- {"node_id":3953,"text":[["投标人法人代表"],["项目经理"],["投标人安全职能部门"],["项目施工员"],["安全员"],["各班组兼职安全员"],["施工安全"],[""]],"node_type":"table","parent":3952,"children":[],"para_type":"table","pageno":229,"layout_index":11,"box":[91,498,434,285]}
- {"node_id":3954,"text":"60 ","node_type":"head_tail","parent":3952,"children":[],"para_type":"head_tail","pageno":229,"layout_index":12,"box":[293,813,13,9]}
- {"node_id":3955,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3952,"children":[],"para_type":"head_tail","pageno":230,"layout_index":0,"box":[90,46,146,11]}
- {"node_id":3956,"text":"10、环境保护措施","node_type":"title","parent":3952,"children":[3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971],"para_type":"title_5","pageno":230,"layout_index":1,"box":[51,97,96,13]}
- {"node_id":3957,"text":"本工商业地面工程施工严格按照《建设项目环境保护管理条例》(中华人民共和国国务院令第253 号)要求进行组织施工。确定施工范围后,将施工范围划分责任管理区,并设置专职检查员,负责施工范围内的环境保护,监督检查,做好防尘、防污染措施,防噪音控制。","node_type":"text","parent":3956,"children":[],"para_type":"text","pageno":230,"layout_index":2,"box":[90,124,419,52]}
- {"node_id":3958,"text":"①、开工前做好施工区区域道路的清理,服从总包方安排,尽量利用现场原有施工通道运输材料。","node_type":"text","parent":3956,"children":[],"para_type":"text","pageno":230,"layout_index":3,"box":[90,192,416,11]}
- {"node_id":3959,"text":"②、施工现场使用的研磨处理机械设备,全部选用无尘作业设备。","node_type":"text","parent":3956,"children":[],"para_type":"text","pageno":230,"layout_index":4,"box":[90,219,303,11]}
- {"node_id":3960,"text":"③、施工现场每天一清扫,每周一次大扫除,施工垃圾清运使用专用垃圾箱,专人清运,严禁工人乱抛施工垃圾严禁野蛮清扫造成不必要的扬尘,施工垃圾及时清运,清理时,洒水装运以减少扬尘。","node_type":"text","parent":3956,"children":[],"para_type":"text","pageno":230,"layout_index":5,"box":[90,247,420,32]}
- {"node_id":3961,"text":"④、所有地坪漆材料均有顺有序的安排专人卸运,堆放整齐,并做好防潮防护工作,轻搬轻运,减少扬尘。","node_type":"text","parent":3956,"children":[],"para_type":"text","pageno":230,"layout_index":6,"box":[90,294,415,32]}
- {"node_id":3962,"text":"⑤、工地不设置燃气用具不安置食堂,工地就餐人员集中场地,餐后立即清扫。(加班作业时,为减少","node_type":"text","parent":3956,"children":[],"para_type":"text","pageno":230,"layout_index":7,"box":[90,342,425,31]}
- {"node_id":3963,"text":"⑥、如需在施工现场附近设置临时食堂,要加强卫生管理,污水经隔油后再排入污水管道中,定期掏油,防止污染,食堂有专职人员天天清理,洒水。","node_type":"text","parent":3956,"children":[],"para_type":"text","pageno":230,"layout_index":8,"box":[90,389,415,32]}
- {"node_id":3964,"text":"⑦、减少不必要的人为噪音,施工期间,禁止工人大声喧哗,搞好文明施工管理。","node_type":"text","parent":3956,"children":[],"para_type":"text","pageno":230,"layout_index":9,"box":[90,436,377,11]}
- {"node_id":3965,"text":"⑧、将噪音声较强的机具施工作业尽量安排在白天施工,夜间加班,尽可能不使用噪音较大的机械设备,或者不集中使用噪音较大设备,如电锤、大型空气压缩机。","node_type":"text","parent":3956,"children":[],"para_type":"text","pageno":230,"layout_index":10,"box":[90,465,415,32]}
- {"node_id":3966,"text":"⑨、施工现场遵照《中华人民共和国建筑施工防噪声》(GB12523-90),制定相应的降低噪声制度和措施。","node_type":"text","parent":3956,"children":[],"para_type":"text","pageno":230,"layout_index":11,"box":[90,512,415,32]}
- {"node_id":3967,"text":"⑩、已经启封且未用完的地坪材料,应当封闭贮藏;配制好且不能久放的地坪材料不倒入土壤或水沟等,应当封闭贮存并集中堆放,按照环保要求进行处理。","node_type":"text","parent":3956,"children":[],"para_type":"text","pageno":230,"layout_index":12,"box":[90,560,415,31]}
- {"node_id":3968,"text":"○11、施工过程中所产生的废液、废固,均按照相应的环境保护措施进行妥善处理;不可倒入土壤或水渠等。","node_type":"text","parent":3956,"children":[],"para_type":"text","pageno":230,"layout_index":13,"box":[90,611,421,39]}
- {"node_id":3969,"text":"○12、施工前走访周围居民,了解居民情况,尽可能争取到周围居民的谅解,必要时悬挂慰民条幅“装饰施工生产的噪音给您的生活带来不便,敬请您给予谅解”。","node_type":"text","parent":3956,"children":[],"para_type":"text","pageno":230,"layout_index":14,"box":[90,668,427,40]}
- {"node_id":3970,"text":"61 ","node_type":"head_tail","parent":3956,"children":[],"para_type":"head_tail","pageno":230,"layout_index":15,"box":[293,813,13,9]}
- {"node_id":3971,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3956,"children":[],"para_type":"head_tail","pageno":231,"layout_index":0,"box":[90,46,146,11]}
- {"node_id":3972,"text":"(二)文明施工措施与承诺","node_type":"title","parent":3952,"children":[3973,3996,3998,4000,4003,4025],"para_type":"title_4","pageno":231,"layout_index":1,"box":[75,76,144,13]}
- {"node_id":3973,"text":"1、现场场容、场貌布置","node_type":"title","parent":3972,"children":[3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995],"para_type":"title_5","pageno":231,"layout_index":2,"box":[90,100,109,11]}
- {"node_id":3974,"text":"①、设备放置:","node_type":"text","parent":3973,"children":[],"para_type":"text","pageno":231,"layout_index":3,"box":[90,127,72,11]}
- {"node_id":3975,"text":"施工设备按现场指定区域设置堆放,并听从业主、总包要求进行布置和调整。","node_type":"text","parent":3973,"children":[],"para_type":"text","pageno":231,"layout_index":4,"box":[90,155,356,11]}
- {"node_id":3976,"text":"②、材料堆场","node_type":"text","parent":3973,"children":[],"para_type":"text","pageno":231,"layout_index":5,"box":[90,184,62,11]}
- {"node_id":3977,"text":"原材料及石英骨料分类、集成堆放,归垛,堆放整齐,随用随清,无底脚散料。2、现场保卫措施","node_type":"text","parent":3973,"children":[],"para_type":"text","pageno":231,"layout_index":6,"box":[90,212,420,32]}
- {"node_id":3978,"text":"①、配合业主及总包建立健全现场治安、消防责任制度和组织","node_type":"text","parent":3973,"children":[],"para_type":"text","pageno":231,"layout_index":7,"box":[90,260,282,11]}
- {"node_id":3979,"text":"凡进入现场的施工人员必须佩戴统一的名牌,未佩戴名牌者一律不准入内,外来人员必须与项目部取得联系,发给临时出入名牌方可进入现场。","node_type":"text","parent":3973,"children":[],"para_type":"text","pageno":231,"layout_index":8,"box":[90,288,415,32]}
- {"node_id":3980,"text":"②、做好现场材料、机具设备物品的保管和防盗工作","node_type":"text","parent":3973,"children":[],"para_type":"text","pageno":231,"layout_index":9,"box":[90,335,240,11]}
- {"node_id":3981,"text":"对贵重材料、小型生产工具等要实行专人保管,责任到人,材料、设备、出入现场必须有收发领用手续和出门证明。","node_type":"text","parent":3973,"children":[],"para_type":"text","pageno":231,"layout_index":10,"box":[92,364,413,32]}
- {"node_id":3982,"text":"③、加强法制教育","node_type":"text","parent":3973,"children":[],"para_type":"text","pageno":231,"layout_index":11,"box":[90,411,83,11]}
- {"node_id":3983,"text":"进入现场所有人员必须自觉遵纪守法,严禁在工地赌博,偷盗公司财物,严禁打架斗殴、无理取闹、扰乱正常的生产、工作和生活秩序,蓄意破坏成品。发现上述情况,及时进行制止、严肃处理,情况严重的报送公安机关处理。","node_type":"text","parent":3973,"children":[],"para_type":"text","pageno":231,"layout_index":12,"box":[90,440,416,52]}
- {"node_id":3984,"text":"④、现场设指定的吸烟室,严禁在吸烟室外游动吸烟。","node_type":"text","parent":3973,"children":[],"para_type":"text","pageno":231,"layout_index":13,"box":[90,508,251,11]}
- {"node_id":3985,"text":"⑤、下班前实行点名制度,下班后除指定保卫人员外,其他人员一律不得再进入施工现场。","node_type":"text","parent":3973,"children":[],"para_type":"text","pageno":231,"layout_index":14,"box":[90,536,381,11]}
- {"node_id":3986,"text":"⑥、保卫人员要不停巡视操作现场,消除一切隐患。","node_type":"text","parent":3973,"children":[],"para_type":"text","pageno":231,"layout_index":15,"box":[90,563,240,11]}
- {"node_id":3987,"text":"⑦、保持场地整洁。","node_type":"text","parent":3973,"children":[],"para_type":"text","pageno":231,"layout_index":16,"box":[90,591,93,11]}
- {"node_id":3988,"text":"⑧、职工宿舍、材料库等易发案部位要指定专人管理,制定防范措施。","node_type":"text","parent":3973,"children":[],"para_type":"text","pageno":231,"layout_index":17,"box":[90,620,324,11]}
- {"node_id":3989,"text":"⑨、施工现场发生的各类案件和灾害事故,要立即报告公安机关,并保护好现场,配合公安机关做好侦破工作。","node_type":"text","parent":3973,"children":[],"para_type":"text","pageno":231,"layout_index":18,"box":[90,648,421,32]}
- {"node_id":3990,"text":"62 ","node_type":"head_tail","parent":3973,"children":[],"para_type":"head_tail","pageno":231,"layout_index":19,"box":[293,813,13,9]}
- {"node_id":3991,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":3973,"children":[],"para_type":"head_tail","pageno":232,"layout_index":0,"box":[90,46,146,11]}
- {"node_id":3992,"text":"(3)环保施工措施","node_type":"text","parent":3973,"children":[],"para_type":"text","pageno":232,"layout_index":1,"box":[90,78,102,12]}
- {"node_id":3993,"text":"1、我公司提供的鑫磨石地坪材料均为进口的100%磨石地坪材料。无论在施工中或者在将来的使用过程中均无有毒及有刺激性气体挥发,所有产品均为绿色环保型材料。","node_type":"text","parent":3973,"children":[],"para_type":"text","pageno":232,"layout_index":2,"box":[94,102,408,30]}
- {"node_id":3994,"text":"2、施工工艺(无尘、无污泥、无污染)","node_type":"text","parent":3973,"children":[],"para_type":"text","pageno":232,"layout_index":3,"box":[90,149,183,11]}
- {"node_id":3995,"text":"我公司鑫磨石地坪采用的施工工艺,是专业的无尘干磨式施工工艺,替代传统的水磨工艺,整个施工过程中无污泥产生。所有的打磨机械均配置吸尘机,在施工过程中无粉尘飞扬、无空气污染。","node_type":"text","parent":3973,"children":[],"para_type":"text","pageno":232,"layout_index":4,"box":[90,176,420,32]}
- {"node_id":3996,"text":"3、噪音","node_type":"title","parent":3972,"children":[3997],"para_type":"title_5","pageno":232,"layout_index":5,"box":[90,225,36,11]}
- {"node_id":3997,"text":"我公司所有的施工机械均为进口机械,机械噪音低,完全符合国际环保要求,在整个施工过程中不会对周围环境产生噪音污染。","node_type":"text","parent":3996,"children":[],"para_type":"text","pageno":232,"layout_index":6,"box":[90,252,415,31]}
- {"node_id":3998,"text":"4、垃圾清理","node_type":"title","parent":3972,"children":[3999],"para_type":"title_5","pageno":232,"layout_index":7,"box":[90,301,57,11]}
- {"node_id":3999,"text":"我公司施工中产生的建筑垃圾、废料、废弃包装袋、废弃包装桶,均分类回收处理,并派专人对有可能污染环境的废弃物进行统一回收、统一专业处理。","node_type":"text","parent":3998,"children":[],"para_type":"text","pageno":232,"layout_index":8,"box":[90,327,415,32]}
- {"node_id":4000,"text":"5、消耗低","node_type":"title","parent":3972,"children":[4001,4002],"para_type":"title_5","pageno":232,"layout_index":9,"box":[90,377,46,11]}
- {"node_id":4001,"text":"我们的施工工艺具有世界先进技术,工艺更合理化、更人性化,采用合理的配方及施工工法,使原材料消耗低,质量更好,同时采用一系列先进施工设备,用机械替代了人力,降低了劳动力消耗。","node_type":"text","parent":4000,"children":[],"para_type":"text","pageno":232,"layout_index":10,"box":[90,403,415,52]}
- {"node_id":4002,"text":"(4)文明施工保证措施","node_type":"text","parent":4000,"children":[],"para_type":"text","pageno":232,"layout_index":11,"box":[90,472,124,12]}
- {"node_id":4003,"text":"1、文明施工责任区制度","node_type":"title","parent":3972,"children":[4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024],"para_type":"title_5","pageno":232,"layout_index":12,"box":[90,495,125,13]}
- {"node_id":4004,"text":"建立现场文明施工责任区制度,根据文明施工管理员、材料负责人、各施工管理员、材料负责人、各施工工长具体的工作将整个施工现场划分为若干个责任区,实行挂牌制,使各自分管的责任区达到文明施工的各项要求,项目定期进行检查,发现问题,立即整改,使施工现场保持整洁。","node_type":"text","parent":4003,"children":[],"para_type":"text","pageno":232,"layout_index":13,"box":[90,518,425,53]}
- {"node_id":4005,"text":"2、由项目经理、文明施工管理员、保卫干事定期对员工进行文明施工教育、法律和法规知识教育及遵章守纪教育,提高职工的文明施工意识和法制观念。要求现场做到“五有、四整齐、三无”以及“四清、四净、四不见”,每周对文明施工进行检查,对各责任人进行评比、奖罚。","node_type":"text","parent":4003,"children":[],"para_type":"text","pageno":232,"layout_index":14,"box":[90,588,415,51]}
- {"node_id":4006,"text":"(5)文明施工检查措施","node_type":"text","parent":4003,"children":[],"para_type":"text","pageno":232,"layout_index":15,"box":[90,655,126,12]}
- {"node_id":4007,"text":"63 ","node_type":"head_tail","parent":4003,"children":[],"para_type":"head_tail","pageno":232,"layout_index":16,"box":[293,813,13,9]}
- {"node_id":4008,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":4003,"children":[],"para_type":"head_tail","pageno":233,"layout_index":0,"box":[90,46,146,11]}
- {"node_id":4009,"text":"文明施工管理组每周对施工现场作一次全面的文明施工检查,检查内容为施工现场的文明施工执行情况,检查依据《建设部建筑施工安全检查评分标准》、《建设工程施工安全条例》公司“文明施工管理细则”等。检查采用评分方法,实行百分制记分。每次检查认真作好记录,指出其不足之处,并限期整改。对每次检查中做得好的进行奖励,做得差的进行处罚,并敦促其改进。","node_type":"text","parent":4003,"children":[],"para_type":"text","pageno":233,"layout_index":1,"box":[90,77,421,73]}
- {"node_id":4010,"text":"(6)企业形象布置","node_type":"text","parent":4003,"children":[],"para_type":"text","pageno":233,"layout_index":2,"box":[90,165,102,13]}
- {"node_id":4011,"text":"企业形象是属于企业的知识产权,是企业管理的组成部分,是企业走向标准化高质量管理的一种标志。在工程施工期间,本公司对全体施工人员都应自觉地尊重和维护企业形象统一和完美,严格遵守企业形象对施工现场的具体规范。","node_type":"text","parent":4003,"children":[],"para_type":"text","pageno":233,"layout_index":3,"box":[90,189,416,52]}
- {"node_id":4012,"text":"1、开展企业形象活动的重要意义","node_type":"text","parent":4003,"children":[],"para_type":"text","pageno":233,"layout_index":4,"box":[90,258,151,11]}
- {"node_id":4013,"text":"2、宣传和维护企业事业的知名度","node_type":"text","parent":4003,"children":[],"para_type":"text","pageno":233,"layout_index":5,"box":[90,287,151,11]}
- {"node_id":4014,"text":"3、保持施工现场的统一、规范、整洁、活泼","node_type":"text","parent":4003,"children":[],"para_type":"text","pageno":233,"layout_index":6,"box":[90,315,204,11]}
- {"node_id":4015,"text":"4、现场管理做到标准化、制度化,更好地开展文明施工","node_type":"text","parent":4003,"children":[],"para_type":"text","pageno":233,"layout_index":7,"box":[90,344,256,11]}
- {"node_id":4016,"text":"5、充分体现本公司的综合管理实力","node_type":"text","parent":4003,"children":[],"para_type":"text","pageno":233,"layout_index":8,"box":[90,372,162,11]}
- {"node_id":4017,"text":"6、使施工现场充满“人文”气氛,更好地开展文明施工","node_type":"text","parent":4003,"children":[],"para_type":"text","pageno":233,"layout_index":9,"box":[90,401,244,11]}
- {"node_id":4018,"text":"7、开展企业形象活动,维护本公司企业形象的具体措施","node_type":"text","parent":4003,"children":[],"para_type":"text","pageno":233,"layout_index":10,"box":[90,429,256,11]}
- {"node_id":4019,"text":"8、在施工现场成立企业形象小组,由项目工程师主管负责","node_type":"text","parent":4003,"children":[],"para_type":"text","pageno":233,"layout_index":11,"box":[90,458,267,11]}
- {"node_id":4020,"text":"9、施工现场的各类识别牌、宣传图均采用企业形象手册中统一规定的标志、标准色、标准格式。","node_type":"text","parent":4003,"children":[],"para_type":"text","pageno":233,"layout_index":12,"box":[90,486,415,30]}
- {"node_id":4021,"text":"10、和业主、总包方及配合单位的联系书面文件、表格资料均采用标准格式、文本,以达到项目资料的统一。","node_type":"text","parent":4003,"children":[],"para_type":"text","pageno":233,"layout_index":13,"box":[90,533,415,30]}
- {"node_id":4022,"text":"11、施工现场的技术工人统一着装,配戴安全帽,不同工种佩戴不同颜色的安全帽以识区别,工人的着装及安全帽上有醒目的企业标志。","node_type":"text","parent":4003,"children":[],"para_type":"text","pageno":233,"layout_index":14,"box":[90,581,415,30]}
- {"node_id":4023,"text":"12、施工现场管理员统一着装,并佩戴安全帽,管理员着装及安全帽不同于工人。","node_type":"text","parent":4003,"children":[],"para_type":"text","pageno":233,"layout_index":15,"box":[90,628,377,11]}
- {"node_id":4024,"text":"(7)季节性施工","node_type":"text","parent":4003,"children":[],"para_type":"text","pageno":233,"layout_index":16,"box":[90,656,88,12]}
- {"node_id":4025,"text":"1、生活方面","node_type":"title","parent":3972,"children":[4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071],"para_type":"title_5","pageno":233,"layout_index":17,"box":[90,678,66,13]}
- {"node_id":4026,"text":"①、地区传染性疾病较多时,加强生活卫生的宣传和教育","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":233,"layout_index":18,"box":[90,702,261,11]}
- {"node_id":4027,"text":"②、对气温骤变的情况作好预计,备足必要的生活设施及常用药品","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":233,"layout_index":19,"box":[90,730,303,11]}
- {"node_id":4028,"text":"③、宿舍生活区进行清洁区包干划分,安排专人负责清理打扫","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":233,"layout_index":20,"box":[90,759,282,11]}
- {"node_id":4029,"text":"64 ","node_type":"head_tail","parent":4025,"children":[],"para_type":"head_tail","pageno":233,"layout_index":21,"box":[293,813,13,9]}
- {"node_id":4030,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":4025,"children":[],"para_type":"head_tail","pageno":234,"layout_index":0,"box":[90,46,146,11]}
- {"node_id":4031,"text":"④、开展卫生评比活动,制定奖罚制度2、季","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":234,"layout_index":1,"box":[90,77,203,12]}
- {"node_id":4032,"text":"节性施工","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":234,"layout_index":2,"box":[90,97,41,11]}
- {"node_id":4033,"text":"①、做好现场临时封闭,防止雨水内浸,保证作业区域干燥,创造良好的现场施工条件。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":234,"layout_index":3,"box":[90,124,374,11]}
- {"node_id":4034,"text":"②、施工现场备齐,必要的排水设备,防水材料","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":234,"layout_index":4,"box":[90,151,219,11]}
- {"node_id":4035,"text":"③、收听天气预报,根据气象变化情况,调整施工步骤,作业工种进行合理的统筹安排,尽量避免延误。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":234,"layout_index":5,"box":[90,179,415,32]}
- {"node_id":4036,"text":"④、利用温度计进行现场环境监测,检测其环境是否满足要求,并采取相应措施。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":234,"layout_index":6,"box":[90,226,377,11]}
- {"node_id":4037,"text":"⑤、注意材料的保管,特别是电气设备及易吸湿材料,作好其防潮保护工作。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":234,"layout_index":7,"box":[90,255,356,11]}
- {"node_id":4038,"text":"⑥、定期检查配电设施,以防发生事故","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":234,"layout_index":8,"box":[90,283,177,11]}
- {"node_id":4039,"text":"(8)施工现场施工人员文明施工守则","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":234,"layout_index":9,"box":[90,313,198,12]}
- {"node_id":4040,"text":"1、施工人员个人资料交给总包现场项目备案并办理工地出入证件,施工人员进入工地必须佩有效证件,方能进入现场施工(个人资料内容为:小一寸黑白照片三张,身份证复印件三张)","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":234,"layout_index":10,"box":[90,337,415,30]}
- {"node_id":4041,"text":"2、施工人员要自觉遵守国家法律,禁止在施工现场进行一切违法活动。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":234,"layout_index":11,"box":[90,384,330,11]}
- {"node_id":4042,"text":"3、施工人员要严格遵守工地现场的各项规章制度,服从现场项目组的统一指挥,不得到与施工无关的地方走动或停留。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":234,"layout_index":12,"box":[90,411,421,32]}
- {"node_id":4043,"text":"4、施工期间任何材料、工具要带离工地须到现场项目组办理放行手续,并自觉接受保安人员检查。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":234,"layout_index":13,"box":[90,460,415,30]}
- {"node_id":4044,"text":"5、自觉遵守安全操作规程,做到人离机停。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":234,"layout_index":14,"box":[90,507,204,11]}
- {"node_id":4045,"text":"6、保持清洁卫生,各工作现场每天工作完毕必须清理干净。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":234,"layout_index":15,"box":[90,536,277,11]}
- {"node_id":4046,"text":"7、严禁破坏或污染现场设施及成品。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":234,"layout_index":16,"box":[90,564,172,11]}
- {"node_id":4047,"text":"8、夜晚工地内,除值班人员外,任何人不准留宿,值班人员须提前向项目组报送值班人员名单。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":234,"layout_index":17,"box":[90,593,415,30]}
- {"node_id":4048,"text":"9、任何人员不得向楼层外抛弃物件。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":234,"layout_index":18,"box":[90,640,172,11]}
- {"node_id":4049,"text":"场内道路通畅无阻;非湿作业面无积水;非作业面无施工垃圾。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":234,"layout_index":19,"box":[90,667,293,11]}
- {"node_id":4050,"text":"10、工完场清;活完成品清;当日作业当日清;机具、工具清理清。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":234,"layout_index":20,"box":[90,697,314,11]}
- {"node_id":4051,"text":"11、施工秩序好;成品、半成品保护好;作业场地照明通风好。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":234,"layout_index":21,"box":[90,725,293,11]}
- {"node_id":4052,"text":"12、材料堆放整齐;消防设施放置整齐;临时用电、用水管线安装整齐。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":234,"layout_index":22,"box":[90,754,335,11]}
- {"node_id":4053,"text":"65 ","node_type":"head_tail","parent":4025,"children":[],"para_type":"head_tail","pageno":234,"layout_index":23,"box":[293,813,13,9]}
- {"node_id":4054,"text":"13、严格遵守《装修工地现场消防安全管理规定》。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":235,"layout_index":0,"box":[129,84,240,11]}
- {"node_id":4055,"text":"(9)文明施工管理措施","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":235,"layout_index":1,"box":[129,110,126,12]}
- {"node_id":4056,"text":"1、现场每周进行一次文明施工的综合检查,有奖有罚,检查时间采取随机方式。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":235,"layout_index":2,"box":[129,139,372,11]}
- {"node_id":4057,"text":"2、项目安全员、保安巡逻员负责检查文明施工及环保工作。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":235,"layout_index":3,"box":[129,171,277,11]}
- {"node_id":4058,"text":"3、现场材料、机具、废料的堆放应在总包指定的堆放位置,如发现有违规现象,应采取处罚措施。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":235,"layout_index":4,"box":[129,201,342,34]}
- {"node_id":4059,"text":"4、垃圾采用容器吊运或袋装,严禁用电梯或在楼层上向地面抛洒施工垃圾,违者重罚。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":235,"layout_index":5,"box":[129,256,341,33]}
- {"node_id":4060,"text":"5、所有材料运至工地后应及时卸货,运输车辆应尽快离开现场。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":235,"layout_index":6,"box":[129,309,298,11]}
- {"node_id":4061,"text":"6、废弃物处理","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":235,"layout_index":7,"box":[129,340,67,11]}
- {"node_id":4062,"text":"施工中产生的建筑垃圾、废料、废弃包装袋、废弃包装桶,均分类回收处理,并派专人对有可能污染环境的废弃物进行统一回收、统一专业处理。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":235,"layout_index":8,"box":[129,370,336,35]}
- {"node_id":4063,"text":"6、光污染减少施工现场夜间照明的光污染,统一施工现场照明灯具的规格,使用之前配备定向式灯罩,夜间施工照明灯罩的使用率达到100%。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":235,"layout_index":9,"box":[116,425,351,35]}
- {"node_id":4064,"text":"(10)若出现事故处理原则:第一时间抢救人员,保护设备,封锁现场,上报各级领导,杜绝次生灾害造成更大损失。","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":235,"layout_index":10,"box":[90,476,415,35]}
- {"node_id":4065,"text":"工程部","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":235,"layout_index":11,"box":[463,555,42,15]}
- {"node_id":4066,"text":"上海绰琪新型建材科技有限公司","node_type":"head_tail","parent":4025,"children":[],"para_type":"head_tail","pageno":235,"layout_index":12,"box":[308,586,197,15]}
- {"node_id":4067,"text":"2022年9月3日","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":235,"layout_index":13,"box":[403,625,102,15]}
- {"node_id":4068,"text":"66 ","node_type":"head_tail","parent":4025,"children":[],"para_type":"head_tail","pageno":235,"layout_index":14,"box":[290,789,20,16]}
- {"node_id":4069,"text":"67 ","node_type":"head_tail","parent":4025,"children":[],"para_type":"head_tail","pageno":236,"layout_index":0,"box":[290,789,20,16]}
- {"node_id":4070,"text":"开标一览表","node_type":"text","parent":4025,"children":[],"para_type":"text","pageno":237,"layout_index":0,"box":[34,46,91,19]}
- {"node_id":4071,"text":[["投标人名称","投标报价","备注"],["上海绰琪新型建材科技有限公司","15845546.48"],[""]],"node_type":"table","parent":4025,"children":[],"para_type":"table","pageno":237,"layout_index":1,"box":[35,82,523,28]}
|