dailyCompletion_list.jsp 173 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  3. <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
  4. <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
  5. <%
  6. String path = request.getContextPath();
  7. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  8. %>
  9. <!DOCTYPE html>
  10. <html lang="en">
  11. <head>
  12. <base href="<%=basePath%>">
  13. <!-- 下拉框 -->
  14. <link rel="stylesheet" href="static/ace/css/chosen.css" />
  15. <!-- jsp文件头和头部 -->
  16. <%@ include file="../../../system/index/top.jsp"%>
  17. <!-- 日期框 -->
  18. <link rel="stylesheet" href="static/ace/css/datepicker.css" />
  19. <link rel="stylesheet" href="static/ace/css/monthlyEmergencyCompletion.css" />
  20. <style type="text/css">
  21. td{vertical-align: middle;}
  22. a{cursor: pointer;}
  23. .dispaly{display:none;}
  24. .editIcon{float: right;}
  25. .vtip{color: red;}
  26. </style>
  27. </head>
  28. <body class="no-skin">
  29. <!-- /section:basics/navbar.layout -->
  30. <div class="main-container" id="main-container">
  31. <!-- /section:basics/sidebar -->
  32. <div class="main-content">
  33. <div class="main-content-inner">
  34. <div class="page-content">
  35. <div class="row">
  36. <div class="col-xs-12">
  37. <!-- <form name="Form" id="Form"> -->
  38. <div id="zhongxin" style="padding-top: 13px;">
  39. <div id="COMPANY_ID" style='display:none;'>${pd.COMPANY_ID}</div>
  40. <div id="YEAR" style='display:none;'>${pd.YEAR}</div>
  41. <div id="pd_TABLETYPE" style='display:none;'>monthly_daily_completion</div>
  42. <div id="pd_COMPANY" style='display:none;'>${pd.COMPANY}</div>
  43. <div id="monthVarList" style='display:none;'>${not empty monthVarList}</div>
  44. <div>
  45. <div style="position: relative;">
  46. <div style="position: absolute;width: 5%;margin-top: 6px;">
  47. <label style="padding-bottom: 10px;">选择公司: <span class='notnullflag'>*</span></label>
  48. </div>
  49. <div style="position: absolute;width: 10%;margin-left: 5%;">
  50. <select class="chosen-select form-control" style="height: 10%;" id="companySelect" data-placeholder="选择公司" onchange="setRoads(this.value)">
  51. <option value=""></option>
  52. <c:forEach items="${companyList}" var="companyname">
  53. <option value="${companyname}"
  54. <c:choose>
  55. <c:when test="${not empty company}">
  56. <c:if test="${company == companyname}">selected</c:if>
  57. </c:when>
  58. </c:choose>
  59. >${companyname}</option>
  60. </c:forEach>
  61. </select>
  62. </div>
  63. <div style="position: absolute;width: 5%;margin-left: 17%;margin-top: 6px;">
  64. <label style="padding-bottom: 10px;">选择路段: <span class='notnullflag'>*</span></label>
  65. </div>
  66. <div style="position: absolute;width: 10%;margin-left: 22%;">
  67. <select class="chosen-select form-control" style="height: 10%;" id="roadSelect" data-placeholder="选择路段)" onchange="changeRoad()">
  68. <c:forEach items="${roadList}" var="roadname">
  69. <option value="${roadname}"
  70. <c:choose>
  71. <c:when test="${not empty road}">
  72. <c:if test="${road == roadname}">selected</c:if>
  73. </c:when>
  74. </c:choose>
  75. >${roadname}</option>
  76. </c:forEach>
  77. </select>
  78. </div>
  79. <div style="width: 15%;margin-left: 35%;">
  80. <a class="btn btn-mini btn-primary" onclick="save();">确定</a><span class='dailyTip'>请先选择公司和路段</span>
  81. </div>
  82. </div>
  83. </div>
  84. <table id="simple-table" class="table table-striped table-bordered table-hover" style="margin-top:5px;width:">
  85. <thead>
  86. <tr>
  87. <th class='center' rowspan="2" style="min-width:30px;">序号</th>
  88. <th class='center' rowspan="2" style="min-width:100px;">分项名称</th>
  89. <th class='center' rowspan="2" style="min-width:100px;">计划费用(万元)</th>
  90. <th class='center' rowspan="2" style="min-width:100px;">备注</th>
  91. <th class='center month_1' colspan="3">一月
  92. <!-- <a onclick="editMonth(1,this)" class="editIcon" title="编辑"><i class="ace-icon fa fa-pencil-square-o"></i></a> -->
  93. </th>
  94. <th class='center month_2' colspan="3">二月
  95. <!-- <a onclick="editMonth(2,this)" class="editIcon" title="编辑"><i class="ace-icon fa fa-pencil-square-o"></i></a> -->
  96. </th>
  97. <th class='center month_3' colspan="3">三月
  98. <!-- <a onclick="editMonth(3,this)" class="editIcon" title="编辑"><i class="ace-icon fa fa-pencil-square-o"></i></a> -->
  99. </th>
  100. <th class='center month_4' colspan="3">四月
  101. <!-- <a onclick="editMonth(4,this)" class="editIcon" title="编辑"><i class="ace-icon fa fa-pencil-square-o"></i></a> -->
  102. </th>
  103. <th class='center month_5' colspan="3">五月
  104. <!-- <a onclick="editMonth(5,this)" class="editIcon" title="编辑"><i class="ace-icon fa fa-pencil-square-o"></i></a> -->
  105. </th>
  106. <th class='center month_6' colspan="3">六月
  107. <!-- <a onclick="editMonth(6,this)" class="editIcon" title="编辑"><i class="ace-icon fa fa-pencil-square-o"></i></a> -->
  108. </th>
  109. <th class='center month_7' colspan="3">七月
  110. <!-- <a onclick="editMonth(7,this)" class="editIcon" title="编辑"><i class="ace-icon fa fa-pencil-square-o"></i></a> -->
  111. </th>
  112. <th class='center month_8' colspan="3">八月
  113. <!-- <a onclick="editMonth(8,this)" class="editIcon" title="编辑"><i class="ace-icon fa fa-pencil-square-o"></i></a> -->
  114. </th>
  115. <th class='center month_9' colspan="3">九月
  116. <!-- <a onclick="editMonth(9,this)" class="editIcon" title="编辑"><i class="ace-icon fa fa-pencil-square-o"></i></a> -->
  117. </th>
  118. <th class='center month_10' colspan="3">十月
  119. <!-- <a onclick="editMonth(10,this)" class="editIcon" title="编辑"><i class="ace-icon fa fa-pencil-square-o"></i></a> -->
  120. </th>
  121. <th class='center month_11' colspan="3">十一月
  122. <!-- <a onclick="editMonth(11,this)" class="editIcon" title="编辑"><i class="ace-icon fa fa-pencil-square-o"></i></a> -->
  123. </th>
  124. <th class='center month_12' colspan="3">十二月
  125. <!-- <a onclick="editMonth(12,this)" class="editIcon" title="编辑"><i class="ace-icon fa fa-pencil-square-o"></i></a> -->
  126. </th>
  127. <th class='center' colspan="3" style="min-width:300px;">汇总</th>
  128. </tr>
  129. <tr>
  130. <th class='center'>实际费用</th>
  131. <th class='center'>支付费用</th>
  132. <th class='center'>完成比例<br>(%)</th>
  133. <th class='center'>实际费用</th>
  134. <th class='center'>支付费用</th>
  135. <th class='center'>完成比例<br>(%)</th>
  136. <th class='center'>实际费用</th>
  137. <th class='center'>支付费用</th>
  138. <th class='center'>完成比例<br>(%)</th>
  139. <th class='center'>实际费用</th>
  140. <th class='center'>支付费用</th>
  141. <th class='center'>完成比例<br>(%)</th>
  142. <th class='center'>实际费用</th>
  143. <th class='center'>支付费用</th>
  144. <th class='center'>完成比例<br>(%)</th>
  145. <th class='center'>实际费用</th>
  146. <th class='center'>支付费用</th>
  147. <th class='center'>完成比例<br>(%)</th>
  148. <th class='center'>实际费用</th>
  149. <th class='center'>支付费用</th>
  150. <th class='center'>完成比例<br>(%)</th>
  151. <th class='center'>实际费用</th>
  152. <th class='center'>支付费用</th>
  153. <th class='center'>完成比例<br>(%)</th>
  154. <th class='center'>实际费用</th>
  155. <th class='center'>支付费用</th>
  156. <th class='center'>完成比例<br>(%)</th>
  157. <th class='center'>实际费用</th>
  158. <th class='center'>支付费用</th>
  159. <th class='center'>完成比例<br>(%)</th>
  160. <th class='center'>实际费用</th>
  161. <th class='center'>支付费用</th>
  162. <th class='center'>完成比例<br>(%)</th>
  163. <th class='center'>实际费用</th>
  164. <th class='center'>支付费用</th>
  165. <th class='center'>完成比例<br>(%)</th>
  166. <th class='center'>实际费用</th>
  167. <th class='center'>支付费用</th>
  168. <th class='center'>完成比例<br>(%)</th>
  169. </tr>
  170. </thead>
  171. <form>
  172. <tbody>
  173. <c:choose>
  174. <c:when test="${not empty monthVarList}">
  175. <tr class='edittr'>
  176. <td class='center'><label class="num">1</label> </td>
  177. <td class='center'>清扫保洁</td>
  178. <td class='center' class='CLEAN_COST'>
  179. <input value='${plancost.CLEAN_COST}' class='CLEAN_COST' type='text' readonly='readonly' totalType='sum'/>
  180. </td>
  181. <td class='center'></td>
  182. <c:forEach items="${monthVarList}" var="monthvar" varStatus="vs">
  183. <c:if test="${monthvar.type == 'CLEAN_COST'}">
  184. <td class='center' style='display:none;'>
  185. <td class='center' style='display:none;'>
  186. <input value='${pd.YEAR}' name='YEAR' type='text' readonly='readonly'/>
  187. </td>
  188. <td class='center' style='display:none;'>
  189. <input value='${pd.COMPANY}' name='COMPANY' type='text' readonly='readonly'/>
  190. </td>
  191. <td class='center' style='display:none;'>
  192. <input value='${pd.COMPANY_ID}' name='COMPANY_ID' type='text' readonly='readonly'/>
  193. </td>
  194. <td class='center' style='display:none;'>
  195. <input value='${pd.ROAD_ID}' name='ROAD_ID' type='text' readonly='readonly'/>
  196. </td>
  197. <td class='center' style='display:none;'>
  198. <input value='${pd.ROAD}' name='ROAD' type='text' readonly='readonly'/>
  199. </td>
  200. <td class='center' style='display:none;'>
  201. <input value='CLEAN_COST' name='TYPE' type='text' readonly='readonly'/>
  202. </td>
  203. <td class='center'>
  204. <input value='${monthvar.ACTUAL_COST_CLEAN_COST_1}' onblur='editValue(this)' name='ACTUAL_COST_CLEAN_COST_1'
  205. class='editInput ACTUAL_COST_CLEAN_COST_1' type='text' readonly='readonly' totalType='sum'/>
  206. </td>
  207. <td class='center'>
  208. <input value='${monthvar.PAY_COST_CLEAN_COST_1}' onblur='editValue(this)' name='PAY_COST_CLEAN_COST_1'
  209. class='editInput PAY_COST_CLEAN_COST_1' type='text' readonly='readonly' totalType='sum'/>
  210. </td>
  211. <td class='center'>
  212. <input value='${monthvar.RATIO_CLEAN_COST_1}' name='RATIO_CLEAN_COST_1' class='percentCell RATIO_CLEAN_COST_1' type='text' readonly='readonly'
  213. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CLEAN_COST_1}" />'
  214. num1="ACTUAL_COST_CLEAN_COST_1" num2="CLEAN_COST"/>
  215. </td>
  216. <td class='center'>
  217. <input value='${monthvar.ACTUAL_COST_CLEAN_COST_2}' onblur='editValue(this)' name='ACTUAL_COST_CLEAN_COST_2'
  218. class='editInput ACTUAL_COST_CLEAN_COST_2' type='text' readonly='readonly' totalType='sum'/>
  219. </td>
  220. <td class='center'>
  221. <input value='${monthvar.PAY_COST_CLEAN_COST_2}' onblur='editValue(this)' name='PAY_COST_CLEAN_COST_2'
  222. class='editInput PAY_COST_CLEAN_COST_2' type='text' readonly='readonly' totalType='sum'/>
  223. </td>
  224. <td class='center'>
  225. <input value='${monthvar.RATIO_CLEAN_COST_2}' name='RATIO_CLEAN_COST_2' class='percentCell RATIO_CLEAN_COST_2' type='text' readonly='readonly'
  226. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CLEAN_COST_2}" />'
  227. num1="ACTUAL_COST_CLEAN_COST_2" num2="CLEAN_COST"/>
  228. </td>
  229. <td class='center'>
  230. <input value='${monthvar.ACTUAL_COST_CLEAN_COST_3}' onblur='editValue(this)' name='ACTUAL_COST_CLEAN_COST_3'
  231. class='editInput ACTUAL_COST_CLEAN_COST_3' type='text' readonly='readonly' totalType='sum'/>
  232. </td>
  233. <td class='center'>
  234. <input value='${monthvar.PAY_COST_CLEAN_COST_3}' onblur='editValue(this)' name='PAY_COST_CLEAN_COST_3'
  235. class='editInput PAY_COST_CLEAN_COST_3' type='text' readonly='readonly' totalType='sum'/>
  236. </td>
  237. <td class='center'>
  238. <input value='${monthvar.RATIO_CLEAN_COST_3}' name='RATIO_CLEAN_COST_3' class='percentCell RATIO_CLEAN_COST_3' type='text' readonly='readonly'
  239. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CLEAN_COST_3}"/>'
  240. num1="ACTUAL_COST_CLEAN_COST_3" num2="CLEAN_COST"/>
  241. </td>
  242. <td class='center'>
  243. <input value='${monthvar.ACTUAL_COST_CLEAN_COST_4}' onblur='editValue(this)' name='ACTUAL_COST_CLEAN_COST_4'
  244. class='editInput ACTUAL_COST_CLEAN_COST_4' type='text' readonly='readonly' totalType='sum'/>
  245. </td>
  246. <td class='center'>
  247. <input value='${monthvar.PAY_COST_CLEAN_COST_4}' onblur='editValue(this)' name='PAY_COST_CLEAN_COST_4'
  248. class='editInput PAY_COST_CLEAN_COST_4' type='text' readonly='readonly' totalType='sum'/>
  249. </td>
  250. <td class='center'>
  251. <input value='${monthvar.RATIO_CLEAN_COST_4}' name='RATIO_CLEAN_COST_4' class='percentCell RATIO_CLEAN_COST_4' type='text' readonly='readonly'
  252. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CLEAN_COST_4}" />'
  253. num1="ACTUAL_COST_CLEAN_COST_4" num2="CLEAN_COST"/>
  254. </td>
  255. <td class='center'>
  256. <input value='${monthvar.ACTUAL_COST_CLEAN_COST_5}' onblur='editValue(this)' name='ACTUAL_COST_CLEAN_COST_5'
  257. class='editInput ACTUAL_COST_CLEAN_COST_5' type='text' readonly='readonly' totalType='sum'/>
  258. </td>
  259. <td class='center'>
  260. <input value='${monthvar.PAY_COST_CLEAN_COST_5}' onblur='editValue(this)' name='PAY_COST_CLEAN_COST_5'
  261. class='editInput PAY_COST_CLEAN_COST_5' type='text' readonly='readonly' totalType='sum'/>
  262. </td>
  263. <td class='center'>
  264. <input value='${monthvar.RATIO_CLEAN_COST_5}' name='RATIO_CLEAN_COST_5' class='percentCell RATIO_CLEAN_COST_5' type='text' readonly='readonly'
  265. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CLEAN_COST_5}" />'
  266. num1="ACTUAL_COST_CLEAN_COST_5" num2="CLEAN_COST"/>
  267. </td>
  268. <td class='center'>
  269. <input value='${monthvar.ACTUAL_COST_CLEAN_COST_6}' onblur='editValue(this)' name='ACTUAL_COST_CLEAN_COST_6'
  270. class='editInput ACTUAL_COST_CLEAN_COST_6' type='text' readonly='readonly' totalType='sum'/>
  271. </td>
  272. <td class='center'>
  273. <input value='${monthvar.PAY_COST_CLEAN_COST_6}' onblur='editValue(this)' name='PAY_COST_CLEAN_COST_6'
  274. class='editInput PAY_COST_CLEAN_COST_6' type='text' readonly='readonly' totalType='sum'/>
  275. </td>
  276. <td class='center'>
  277. <input value='${monthvar.RATIO_CLEAN_COST_6}' name='RATIO_CLEAN_COST_6' class='percentCell RATIO_CLEAN_COST_6' type='text' readonly='readonly'
  278. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CLEAN_COST_6}" />'
  279. num1="ACTUAL_COST_CLEAN_COST_6" num2="CLEAN_COST"/>
  280. </td>
  281. <td class='center'>
  282. <input value='${monthvar.ACTUAL_COST_CLEAN_COST_7}' onblur='editValue(this)' name='ACTUAL_COST_CLEAN_COST_7'
  283. class='editInput ACTUAL_COST_CLEAN_COST_7' type='text' readonly='readonly' totalType='sum'/>
  284. </td>
  285. <td class='center'>
  286. <input value='${monthvar.PAY_COST_CLEAN_COST_7}' onblur='editValue(this)' name='PAY_COST_CLEAN_COST_7'
  287. class='editInput PAY_COST_CLEAN_COST_7' type='text' readonly='readonly' totalType='sum'/>
  288. </td>
  289. <td class='center'>
  290. <input value='${monthvar.RATIO_CLEAN_COST_7}' name='RATIO_CLEAN_COST_7' class='percentCell RATIO_CLEAN_COST_7' type='text' readonly='readonly'
  291. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CLEAN_COST_7}"/>'
  292. num1="ACTUAL_COST_CLEAN_COST_7" num2="CLEAN_COST"/>
  293. </td>
  294. <td class='center'>
  295. <input value='${monthvar.ACTUAL_COST_CLEAN_COST_8}' onblur='editValue(this)' name='ACTUAL_COST_CLEAN_COST_8'
  296. class='editInput ACTUAL_COST_CLEAN_COST_8' type='text' readonly='readonly' totalType='sum'/>
  297. </td>
  298. <td class='center'>
  299. <input value='${monthvar.PAY_COST_CLEAN_COST_8}' onblur='editValue(this)' name='PAY_COST_CLEAN_COST_8'
  300. class='editInput PAY_COST_CLEAN_COST_8' type='text' readonly='readonly' totalType='sum'/>
  301. </td>
  302. <td class='center'>
  303. <input value='${monthvar.RATIO_CLEAN_COST_8}' name='RATIO_CLEAN_COST_8' class='percentCell RATIO_CLEAN_COST_8' type='text' readonly='readonly'
  304. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CLEAN_COST_8}" />'
  305. num1="ACTUAL_COST_CLEAN_COST_8" num2="CLEAN_COST"/>
  306. </td>
  307. <td class='center'>
  308. <input value='${monthvar.ACTUAL_COST_CLEAN_COST_9}' onblur='editValue(this)' name='ACTUAL_COST_CLEAN_COST_9'
  309. class='editInput ACTUAL_COST_CLEAN_COST_9' type='text' readonly='readonly' totalType='sum'/>
  310. </td>
  311. <td class='center'>
  312. <input value='${monthvar.PAY_COST_CLEAN_COST_9}' onblur='editValue(this)' name='PAY_COST_CLEAN_COST_9'
  313. class='editInput PAY_COST_CLEAN_COST_9' type='text' readonly='readonly' totalType='sum'/>
  314. </td>
  315. <td class='center'>
  316. <input value='${monthvar.RATIO_CLEAN_COST_9}' name='RATIO_CLEAN_COST_9' class='percentCell RATIO_CLEAN_COST_9' type='text' readonly='readonly'
  317. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CLEAN_COST_9}" />'
  318. num1="ACTUAL_COST_CLEAN_COST_9" num2="CLEAN_COST"/>
  319. </td>
  320. <td class='center'>
  321. <input value='${monthvar.ACTUAL_COST_CLEAN_COST_10}' onblur='editValue(this)' name='ACTUAL_COST_CLEAN_COST_10'
  322. class='editInput ACTUAL_COST_CLEAN_COST_10' type='text' readonly='readonly' totalType='sum'/>
  323. </td>
  324. <td class='center'>
  325. <input value='${monthvar.PAY_COST_CLEAN_COST_10}' onblur='editValue(this)' name='PAY_COST_CLEAN_COST_10'
  326. class='editInput PAY_COST_CLEAN_COST_10' type='text' readonly='readonly' totalType='sum'/>
  327. </td>
  328. <td class='center'>
  329. <input value='${monthvar.RATIO_CLEAN_COST_10}' name='RATIO_CLEAN_COST_10' class='percentCell RATIO_CLEAN_COST_10' type='text' readonly='readonly'
  330. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CLEAN_COST_10}" />'
  331. num1="ACTUAL_COST_CLEAN_COST_10" num2="CLEAN_COST"/>
  332. </td>
  333. <td class='center'>
  334. <input value='${monthvar.ACTUAL_COST_CLEAN_COST_11}' onblur='editValue(this)' name='ACTUAL_COST_CLEAN_COST_11'
  335. class='editInput ACTUAL_COST_CLEAN_COST_11' type='text' readonly='readonly' totalType='sum'/>
  336. </td>
  337. <td class='center'>
  338. <input value='${monthvar.PAY_COST_CLEAN_COST_11}' onblur='editValue(this)' name='PAY_COST_CLEAN_COST_11'
  339. class='editInput PAY_COST_CLEAN_COST_11' type='text' readonly='readonly' totalType='sum'/>
  340. </td>
  341. <td class='center'>
  342. <input value='${monthvar.RATIO_CLEAN_COST_11}' name='RATIO_CLEAN_COST_11' class='percentCell RATIO_CLEAN_COST_11' type='text' readonly='readonly'
  343. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CLEAN_COST_11}" />'
  344. num1="ACTUAL_COST_CLEAN_COST_11" num2="CLEAN_COST"/>
  345. </td>
  346. <td class='center'>
  347. <input value='${monthvar.ACTUAL_COST_CLEAN_COST_12}' onblur='editValue(this)' name='ACTUAL_COST_CLEAN_COST_12'
  348. class='editInput ACTUAL_COST_CLEAN_COST_12' type='text' readonly='readonly' totalType='sum'/>
  349. </td>
  350. <td class='center'>
  351. <input value='${monthvar.PAY_COST_CLEAN_COST_12}' onblur='editValue(this)' name='PAY_COST_CLEAN_COST_12'
  352. class='editInput PAY_COST_CLEAN_COST_12' type='text' readonly='readonly' totalType='sum'/>
  353. </td>
  354. <td class='center'>
  355. <input value='${monthvar.RATIO_CLEAN_COST_12}' name='RATIO_CLEAN_COST_12' class='percentCell RATIO_CLEAN_COST_12' type='text' readonly='readonly'
  356. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CLEAN_COST_12}" />'
  357. num1="ACTUAL_COST_CLEAN_COST_12" num2="CLEAN_COST"/>
  358. </td>
  359. <td class='center'>
  360. <span class='rowSumCell ACTUAL_COST_CLEAN_COST' totalType='sum'></span>
  361. </td>
  362. <td class='center'>
  363. <span class='rowSumCell PAY_COST_CLEAN_COST' totalType='sum'></span>
  364. </td>
  365. <td class='center'>
  366. <span class='percentCell' num1="ACTUAL_COST_CLEAN_COST" num2="CLEAN_COST"></span>
  367. </td>
  368. </c:if>
  369. </c:forEach>
  370. </tr>
  371. <tr class='edittr'>
  372. <td class='center'><label class="num">2</label> </td>
  373. <td class='center'>巡查检查</td>
  374. <td class='center'>
  375. <input value='${plancost.PATROL_COST}' class='PATROL_COST' type='text' readonly='readonly' totalType='sum'/>
  376. </td>
  377. <td class='center'></td>
  378. <c:forEach items="${monthVarList}" var="monthvar" varStatus="vs">
  379. <c:if test="${monthvar.type == 'PATROL_COST'}">
  380. <td class='center' style='display:none;'>
  381. <input value='${pd.YEAR}' name='YEAR' type='text' readonly='readonly'/>
  382. </td>
  383. <td class='center' style='display:none;'>
  384. <input value='${pd.COMPANY}' name='COMPANY' type='text' readonly='readonly'/>
  385. </td>
  386. <td class='center' style='display:none;'>
  387. <input value='${pd.COMPANY_ID}' name='COMPANY_ID' type='text' readonly='readonly'/>
  388. </td>
  389. <td class='center' style='display:none;'>
  390. <input value='${pd.ROAD_ID}' name='ROAD_ID' type='text' readonly='readonly'/>
  391. </td>
  392. <td class='center' style='display:none;'>
  393. <input value='${pd.ROAD}' name='ROAD' type='text' readonly='readonly'/>
  394. </td>
  395. <td class='center' style='display:none;'>
  396. <input value='PATROL_COST' name='TYPE' type='text' readonly='readonly'/>
  397. </td>
  398. <td class='center'>
  399. <input value='${monthvar.ACTUAL_COST_PATROL_COST_1}' onblur='editValue(this)' name='ACTUAL_COST_PATROL_COST_1'
  400. class='editInput ACTUAL_COST_PATROL_COST_1' type='text' readonly='readonly' totalType='sum'/>
  401. </td>
  402. <td class='center'>
  403. <input value='${monthvar.PAY_COST_PATROL_COST_1}' onblur='editValue(this)' name='PAY_COST_PATROL_COST_1'
  404. class='editInput PAY_COST_PATROL_COST_1' type='text' readonly='readonly' totalType='sum'/>
  405. </td>
  406. <td class='center'>
  407. <input value='${monthvar.RATIO_PATROL_COST_1}' name='RATIO_PATROL_COST_1' class='percentCell RATIO_PATROL_COST_1' type='text' readonly='readonly'
  408. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PATROL_COST_1}" />'
  409. num1="ACTUAL_COST_PATROL_COST_1" num2="PATROL_COST"/>
  410. </td>
  411. <td class='center'>
  412. <input value='${monthvar.ACTUAL_COST_PATROL_COST_2}' onblur='editValue(this)' name='ACTUAL_COST_PATROL_COST_2'
  413. class='editInput ACTUAL_COST_PATROL_COST_2' type='text' readonly='readonly' totalType='sum'/>
  414. </td>
  415. <td class='center'>
  416. <input value='${monthvar.PAY_COST_PATROL_COST_2}' onblur='editValue(this)' name='PAY_COST_PATROL_COST_2'
  417. class='editInput PAY_COST_PATROL_COST_2' type='text' readonly='readonly' totalType='sum'/>
  418. </td>
  419. <td class='center'>
  420. <input value='${monthvar.RATIO_PATROL_COST_2}' name='RATIO_PATROL_COST_2' class='percentCell RATIO_PATROL_COST_2' type='text' readonly='readonly'
  421. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PATROL_COST_2}" />'
  422. num1="ACTUAL_COST_PATROL_COST_2" num2="PATROL_COST"/>
  423. </td>
  424. <td class='center'>
  425. <input value='${monthvar.ACTUAL_COST_PATROL_COST_3}' onblur='editValue(this)' name='ACTUAL_COST_PATROL_COST_3'
  426. class='editInput ACTUAL_COST_PATROL_COST_3' type='text' readonly='readonly' totalType='sum'/>
  427. </td>
  428. <td class='center'>
  429. <input value='${monthvar.PAY_COST_PATROL_COST_3}' onblur='editValue(this)' name='PAY_COST_PATROL_COST_3'
  430. class='editInput PAY_COST_PATROL_COST_3' type='text' readonly='readonly' totalType='sum'/>
  431. </td>
  432. <td class='center'>
  433. <input value='${monthvar.RATIO_PATROL_COST_3}' name='RATIO_PATROL_COST_3' class='percentCell RATIO_PATROL_COST_3' type='text' readonly='readonly'
  434. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PATROL_COST_3}" />'
  435. num1="ACTUAL_COST_PATROL_COST_3" num2="PATROL_COST"/>
  436. </td>
  437. <td class='center'>
  438. <input value='${monthvar.ACTUAL_COST_PATROL_COST_4}' onblur='editValue(this)' name='ACTUAL_COST_PATROL_COST_4'
  439. class='editInput ACTUAL_COST_PATROL_COST_4' type='text' readonly='readonly' totalType='sum'/>
  440. </td>
  441. <td class='center'>
  442. <input value='${monthvar.PAY_COST_PATROL_COST_4}' onblur='editValue(this)' name='PAY_COST_PATROL_COST_4'
  443. class='editInput PAY_COST_PATROL_COST_4' type='text' readonly='readonly' totalType='sum'/>
  444. </td>
  445. <td class='center'>
  446. <input value='${monthvar.RATIO_PATROL_COST_4}' name='RATIO_PATROL_COST_4' class='percentCell RATIO_PATROL_COST_4' type='text' readonly='readonly'
  447. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PATROL_COST_4}" />'
  448. num1="ACTUAL_COST_PATROL_COST_4" num2="PATROL_COST"/>
  449. </td>
  450. <td class='center'>
  451. <input value='${monthvar.ACTUAL_COST_PATROL_COST_5}' onblur='editValue(this)' name='ACTUAL_COST_PATROL_COST_5'
  452. class='editInput ACTUAL_COST_PATROL_COST_5' type='text' readonly='readonly' totalType='sum'/>
  453. </td>
  454. <td class='center'>
  455. <input value='${monthvar.PAY_COST_PATROL_COST_5}' onblur='editValue(this)' name='PAY_COST_PATROL_COST_5'
  456. class='editInput PAY_COST_PATROL_COST_5' type='text' readonly='readonly' totalType='sum'/>
  457. </td>
  458. <td class='center'>
  459. <input value='${monthvar.RATIO_PATROL_COST_5}' name='RATIO_PATROL_COST_5' class='percentCell RATIO_PATROL_COST_5' type='text' readonly='readonly'
  460. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PATROL_COST_5}" />'
  461. num1="ACTUAL_COST_PATROL_COST_5" num2="PATROL_COST"/>
  462. </td>
  463. <td class='center'>
  464. <input value='${monthvar.ACTUAL_COST_PATROL_COST_6}' onblur='editValue(this)' name='ACTUAL_COST_PATROL_COST_6'
  465. class='editInput ACTUAL_COST_PATROL_COST_6' type='text' readonly='readonly' totalType='sum'/>
  466. </td>
  467. <td class='center'>
  468. <input value='${monthvar.PAY_COST_PATROL_COST_6}' onblur='editValue(this)' name='PAY_COST_PATROL_COST_6'
  469. class='editInput PAY_COST_PATROL_COST_6' type='text' readonly='readonly' totalType='sum'/>
  470. </td>
  471. <td class='center'>
  472. <input value='${monthvar.RATIO_PATROL_COST_6}' name='RATIO_PATROL_COST_6' class='percentCell RATIO_PATROL_COST_6' type='text' readonly='readonly'
  473. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PATROL_COST_6}" />'
  474. num1="ACTUAL_COST_PATROL_COST_6" num2="PATROL_COST"/>
  475. </td>
  476. <td class='center'>
  477. <input value='${monthvar.ACTUAL_COST_PATROL_COST_7}' onblur='editValue(this)' name='ACTUAL_COST_PATROL_COST_7'
  478. class='editInput ACTUAL_COST_PATROL_COST_7' type='text' readonly='readonly' totalType='sum'/>
  479. </td>
  480. <td class='center'>
  481. <input value='${monthvar.PAY_COST_PATROL_COST_7}' onblur='editValue(this)' name='PAY_COST_PATROL_COST_7'
  482. class='editInput PAY_COST_PATROL_COST_7' type='text' readonly='readonly' totalType='sum'/>
  483. </td>
  484. <td class='center'>
  485. <input value='${monthvar.RATIO_PATROL_COST_7}' name='RATIO_PATROL_COST_7' class='percentCell RATIO_PATROL_COST_7' type='text' readonly='readonly'
  486. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PATROL_COST_7}" />'
  487. num1="ACTUAL_COST_PATROL_COST_7" num2="PATROL_COST"/>
  488. </td>
  489. <td class='center'>
  490. <input value='${monthvar.ACTUAL_COST_PATROL_COST_8}' onblur='editValue(this)' name='ACTUAL_COST_PATROL_COST_8'
  491. class='editInput ACTUAL_COST_PATROL_COST_8' type='text' readonly='readonly' totalType='sum'/>
  492. </td>
  493. <td class='center'>
  494. <input value='${monthvar.PAY_COST_PATROL_COST_8}' onblur='editValue(this)' name='PAY_COST_PATROL_COST_8'
  495. class='editInput PAY_COST_PATROL_COST_8' type='text' readonly='readonly' totalType='sum'/>
  496. </td>
  497. <td class='center'>
  498. <input value='${monthvar.RATIO_PATROL_COST_8}' name='RATIO_PATROL_COST_8' class='percentCell RATIO_PATROL_COST_8' type='text' readonly='readonly'
  499. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PATROL_COST_8}" />'
  500. num1="ACTUAL_COST_PATROL_COST_8" num2="PATROL_COST"/>
  501. </td>
  502. <td class='center'>
  503. <input value='${monthvar.ACTUAL_COST_PATROL_COST_9}' onblur='editValue(this)' name='ACTUAL_COST_PATROL_COST_9'
  504. class='editInput ACTUAL_COST_PATROL_COST_9' type='text' readonly='readonly' totalType='sum'/>
  505. </td>
  506. <td class='center'>
  507. <input value='${monthvar.PAY_COST_PATROL_COST_9}' onblur='editValue(this)' name='PAY_COST_PATROL_COST_9'
  508. class='editInput PAY_COST_PATROL_COST_9' type='text' readonly='readonly' totalType='sum'/>
  509. </td>
  510. <td class='center'>
  511. <input value='${monthvar.RATIO_PATROL_COST_9}' name='RATIO_PATROL_COST_9' class='percentCell RATIO_PATROL_COST_9' type='text' readonly='readonly'
  512. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PATROL_COST_9}" />'
  513. num1="ACTUAL_COST_PATROL_COST_9" num2="PATROL_COST"/>
  514. </td>
  515. <td class='center'>
  516. <input value='${monthvar.ACTUAL_COST_PATROL_COST_10}' onblur='editValue(this)' name='ACTUAL_COST_PATROL_COST_10'
  517. class='editInput ACTUAL_COST_PATROL_COST_10' type='text' readonly='readonly' totalType='sum'/>
  518. </td>
  519. <td class='center'>
  520. <input value='${monthvar.PAY_COST_PATROL_COST_10}' onblur='editValue(this)' name='PAY_COST_PATROL_COST_10'
  521. class='editInput PAY_COST_PATROL_COST_10' type='text' readonly='readonly' totalType='sum'/>
  522. </td>
  523. <td class='center'>
  524. <input value='${monthvar.RATIO_PATROL_COST_10}' name='RATIO_PATROL_COST_10' class='percentCell RATIO_PATROL_COST_10' type='text' readonly='readonly'
  525. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PATROL_COST_10}" />'
  526. num1="ACTUAL_COST_PATROL_COST_10" num2="PATROL_COST"/>
  527. </td>
  528. <td class='center'>
  529. <input value='${monthvar.ACTUAL_COST_PATROL_COST_11}' onblur='editValue(this)' name='ACTUAL_COST_PATROL_COST_11'
  530. class='editInput ACTUAL_COST_PATROL_COST_11' type='text' readonly='readonly' totalType='sum'/>
  531. </td>
  532. <td class='center'>
  533. <input value='${monthvar.PAY_COST_PATROL_COST_11}' onblur='editValue(this)' name='PAY_COST_PATROL_COST_11'
  534. class='editInput PAY_COST_PATROL_COST_11' type='text' readonly='readonly' totalType='sum'/>
  535. </td>
  536. <td class='center'>
  537. <input value='${monthvar.RATIO_PATROL_COST_11}' name='RATIO_PATROL_COST_11' class='percentCell RATIO_PATROL_COST_11' type='text' readonly='readonly'
  538. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PATROL_COST_11}" />'
  539. num1="ACTUAL_COST_PATROL_COST_11" num2="PATROL_COST"/>
  540. </td>
  541. <td class='center'>
  542. <input value='${monthvar.ACTUAL_COST_PATROL_COST_12}' onblur='editValue(this)' name='ACTUAL_COST_PATROL_COST_12'
  543. class='editInput ACTUAL_COST_PATROL_COST_12' type='text' readonly='readonly' totalType='sum'/>
  544. </td>
  545. <td class='center'>
  546. <input value='${monthvar.PAY_COST_PATROL_COST_12}' onblur='editValue(this)' name='PAY_COST_PATROL_COST_12'
  547. class='editInput PAY_COST_PATROL_COST_12' type='text' readonly='readonly' totalType='sum'/>
  548. </td>
  549. <td class='center'>
  550. <input value='${monthvar.RATIO_PATROL_COST_12}' name='RATIO_PATROL_COST_12' class='percentCell RATIO_PATROL_COST_12' type='text' readonly='readonly'
  551. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PATROL_COST_12}" />'
  552. num1="ACTUAL_COST_PATROL_COST_12" num2="PATROL_COST"/>
  553. </td>
  554. <td class='center'>
  555. <span class='rowSumCell ACTUAL_COST_PATROL_COST' totalType='sum'></span>
  556. </td>
  557. <td class='center'>
  558. <span class='rowSumCell PAY_COST_PATROL_COST' totalType='sum'></span>
  559. </td>
  560. <td class='center'>
  561. <span class='percentCell' num1="ACTUAL_COST_PATROL_COST" num2="PATROL_COST"></span>
  562. </td>
  563. </c:if>
  564. </c:forEach>
  565. </tr>
  566. <tr class='edittr'>
  567. <td class='center'><label class="num">3</label> </td>
  568. <td class='center'>路基</td>
  569. <td class='center'>
  570. <input value='${plancost.SUBGRADE_COST}' class='SUBGRADE_COST' type='text' readonly='readonly' totalType='sum'/>
  571. </td>
  572. <td class='center'></td>
  573. <c:forEach items="${monthVarList}" var="monthvar" varStatus="vs">
  574. <c:if test="${monthvar.type == 'SUBGRADE_COST'}">
  575. <td class='center' style='display:none;'>
  576. <input value='${pd.YEAR}' name='YEAR' type='text' readonly='readonly'/>
  577. </td>
  578. <td class='center' style='display:none;'>
  579. <input value='${pd.COMPANY}' name='COMPANY' type='text' readonly='readonly'/>
  580. </td>
  581. <td class='center' style='display:none;'>
  582. <input value='${pd.COMPANY_ID}' name='COMPANY_ID' type='text' readonly='readonly'/>
  583. </td>
  584. <td class='center' style='display:none;'>
  585. <input value='${pd.ROAD_ID}' name='ROAD_ID' type='text' readonly='readonly'/>
  586. </td>
  587. <td class='center' style='display:none;'>
  588. <input value='${pd.ROAD}' name='ROAD' type='text' readonly='readonly'/>
  589. </td>
  590. <td class='center' style='display:none;'>
  591. <input value='SUBGRADE_COST' name='TYPE' type='text' readonly='readonly'/>
  592. </td>
  593. <td class='center'>
  594. <input value='${monthvar.ACTUAL_COST_SUBGRADE_COST_1}' onblur='editValue(this)' name='ACTUAL_COST_SUBGRADE_COST_1'
  595. class='editInput ACTUAL_COST_SUBGRADE_COST_1' type='text' readonly='readonly' totalType='sum'/>
  596. </td>
  597. <td class='center'>
  598. <input value='${monthvar.PAY_COST_SUBGRADE_COST_1}' onblur='editValue(this)' name='PAY_COST_SUBGRADE_COST_1'
  599. class='editInput PAY_COST_SUBGRADE_COST_1' type='text' readonly='readonly' totalType='sum'/>
  600. </td>
  601. <td class='center'>
  602. <input value='${monthvar.RATIO_SUBGRADE_COST_1}' name='RATIO_SUBGRADE_COST_1' class='percentCell RATIO_SUBGRADE_COST_1' type='text' readonly='readonly'
  603. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SUBGRADE_COST_1}" />'
  604. num1="ACTUAL_COST_SUBGRADE_COST_1" num2="SUBGRADE_COST"/>
  605. </td>
  606. <td class='center'>
  607. <input value='${monthvar.ACTUAL_COST_SUBGRADE_COST_2}' onblur='editValue(this)' name='ACTUAL_COST_SUBGRADE_COST_2'
  608. class='editInput ACTUAL_COST_SUBGRADE_COST_2' type='text' readonly='readonly' totalType='sum'/>
  609. </td>
  610. <td class='center'>
  611. <input value='${monthvar.PAY_COST_SUBGRADE_COST_2}' onblur='editValue(this)' name='PAY_COST_SUBGRADE_COST_2'
  612. class='editInput PAY_COST_SUBGRADE_COST_2' type='text' readonly='readonly' totalType='sum'/>
  613. </td>
  614. <td class='center'>
  615. <input value='${monthvar.RATIO_SUBGRADE_COST_2}' name='RATIO_SUBGRADE_COST_2' class='percentCell RATIO_SUBGRADE_COST_2' type='text' readonly='readonly'
  616. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SUBGRADE_COST_2}" />'
  617. num1="ACTUAL_COST_SUBGRADE_COST_2" num2="SUBGRADE_COST"/>
  618. </td>
  619. <td class='center'>
  620. <input value='${monthvar.ACTUAL_COST_SUBGRADE_COST_3}' onblur='editValue(this)' name='ACTUAL_COST_SUBGRADE_COST_3'
  621. class='editInput ACTUAL_COST_SUBGRADE_COST_3' type='text' readonly='readonly' totalType='sum'/>
  622. </td>
  623. <td class='center'>
  624. <input value='${monthvar.PAY_COST_SUBGRADE_COST_3}' onblur='editValue(this)' name='PAY_COST_SUBGRADE_COST_3'
  625. class='editInput PAY_COST_SUBGRADE_COST_3' type='text' readonly='readonly' totalType='sum'/>
  626. </td>
  627. <td class='center'>
  628. <input value='${monthvar.RATIO_SUBGRADE_COST_3}' name='RATIO_SUBGRADE_COST_3' class='percentCell RATIO_SUBGRADE_COST_3' type='text' readonly='readonly'
  629. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SUBGRADE_COST_3}" />'
  630. num1="ACTUAL_COST_SUBGRADE_COST_3" num2="SUBGRADE_COST"/>
  631. </td>
  632. <td class='center'>
  633. <input value='${monthvar.ACTUAL_COST_SUBGRADE_COST_4}' onblur='editValue(this)' name='ACTUAL_COST_SUBGRADE_COST_4'
  634. class='editInput ACTUAL_COST_SUBGRADE_COST_4' type='text' readonly='readonly' totalType='sum'/>
  635. </td>
  636. <td class='center'>
  637. <input value='${monthvar.PAY_COST_SUBGRADE_COST_4}' onblur='editValue(this)' name='PAY_COST_SUBGRADE_COST_4'
  638. class='editInput PAY_COST_SUBGRADE_COST_4' type='text' readonly='readonly' totalType='sum'/>
  639. </td>
  640. <td class='center'>
  641. <input value='${monthvar.RATIO_SUBGRADE_COST_4}' name='RATIO_SUBGRADE_COST_4' class='percentCell RATIO_SUBGRADE_COST_4' type='text' readonly='readonly'
  642. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SUBGRADE_COST_4}" />'
  643. num1="ACTUAL_COST_SUBGRADE_COST_4" num2="SUBGRADE_COST"/>
  644. </td>
  645. <td class='center'>
  646. <input value='${monthvar.ACTUAL_COST_SUBGRADE_COST_5}' onblur='editValue(this)' name='ACTUAL_COST_SUBGRADE_COST_5'
  647. class='editInput ACTUAL_COST_SUBGRADE_COST_5' type='text' readonly='readonly' totalType='sum'/>
  648. </td>
  649. <td class='center'>
  650. <input value='${monthvar.PAY_COST_SUBGRADE_COST_5}' onblur='editValue(this)' name='PAY_COST_SUBGRADE_COST_5'
  651. class='editInput PAY_COST_SUBGRADE_COST_5' type='text' readonly='readonly' totalType='sum'/>
  652. </td>
  653. <td class='center'>
  654. <input value='${monthvar.RATIO_SUBGRADE_COST_5}' name='RATIO_SUBGRADE_COST_5' class='percentCell RATIO_SUBGRADE_COST_5' type='text' readonly='readonly'
  655. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SUBGRADE_COST_5}" />'
  656. num1="ACTUAL_COST_SUBGRADE_COST_5" num2="SUBGRADE_COST"/>
  657. </td>
  658. <td class='center'>
  659. <input value='${monthvar.ACTUAL_COST_SUBGRADE_COST_6}' onblur='editValue(this)' name='ACTUAL_COST_SUBGRADE_COST_6'
  660. class='editInput ACTUAL_COST_SUBGRADE_COST_6' type='text' readonly='readonly' totalType='sum'/>
  661. </td>
  662. <td class='center'>
  663. <input value='${monthvar.PAY_COST_SUBGRADE_COST_6}' onblur='editValue(this)' name='PAY_COST_SUBGRADE_COST_6'
  664. class='editInput PAY_COST_SUBGRADE_COST_6' type='text' readonly='readonly' totalType='sum'/>
  665. </td>
  666. <td class='center'>
  667. <input value='${monthvar.RATIO_SUBGRADE_COST_6}' name='RATIO_SUBGRADE_COST_6' class='percentCell RATIO_SUBGRADE_COST_6' type='text' readonly='readonly'
  668. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SUBGRADE_COST_6}" />'
  669. num1="ACTUAL_COST_SUBGRADE_COST_6" num2="SUBGRADE_COST"/>
  670. </td>
  671. <td class='center'>
  672. <input value='${monthvar.ACTUAL_COST_SUBGRADE_COST_7}' onblur='editValue(this)' name='ACTUAL_COST_SUBGRADE_COST_7'
  673. class='editInput ACTUAL_COST_SUBGRADE_COST_7' type='text' readonly='readonly' totalType='sum'/>
  674. </td>
  675. <td class='center'>
  676. <input value='${monthvar.PAY_COST_SUBGRADE_COST_7}' onblur='editValue(this)' name='PAY_COST_SUBGRADE_COST_7'
  677. class='editInput PAY_COST_SUBGRADE_COST_7' type='text' readonly='readonly' totalType='sum'/>
  678. </td>
  679. <td class='center'>
  680. <input value='${monthvar.RATIO_SUBGRADE_COST_7}' name='RATIO_SUBGRADE_COST_7' class='percentCell RATIO_SUBGRADE_COST_7' type='text' readonly='readonly'
  681. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SUBGRADE_COST_7}" />'
  682. num1="ACTUAL_COST_SUBGRADE_COST_7" num2="SUBGRADE_COST"/>
  683. </td>
  684. <td class='center'>
  685. <input value='${monthvar.ACTUAL_COST_SUBGRADE_COST_8}' onblur='editValue(this)' name='ACTUAL_COST_SUBGRADE_COST_8'
  686. class='editInput ACTUAL_COST_SUBGRADE_COST_8' type='text' readonly='readonly' totalType='sum'/>
  687. </td>
  688. <td class='center'>
  689. <input value='${monthvar.PAY_COST_SUBGRADE_COST_8}' onblur='editValue(this)' name='PAY_COST_SUBGRADE_COST_8'
  690. class='editInput PAY_COST_SUBGRADE_COST_8' type='text' readonly='readonly' totalType='sum'/>
  691. </td>
  692. <td class='center'>
  693. <input value='${monthvar.RATIO_SUBGRADE_COST_8}' name='RATIO_SUBGRADE_COST_8' class='percentCell RATIO_SUBGRADE_COST_8' type='text' readonly='readonly'
  694. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SUBGRADE_COST_8}" />'
  695. num1="ACTUAL_COST_SUBGRADE_COST_8" num2="SUBGRADE_COST"/>
  696. </td>
  697. <td class='center'>
  698. <input value='${monthvar.ACTUAL_COST_SUBGRADE_COST_9}' onblur='editValue(this)' name='ACTUAL_COST_SUBGRADE_COST_9'
  699. class='editInput ACTUAL_COST_SUBGRADE_COST_9' type='text' readonly='readonly' totalType='sum'/>
  700. </td>
  701. <td class='center'>
  702. <input value='${monthvar.PAY_COST_SUBGRADE_COST_9}' onblur='editValue(this)' name='PAY_COST_SUBGRADE_COST_9'
  703. class='editInput PAY_COST_SUBGRADE_COST_9' type='text' readonly='readonly' totalType='sum'/>
  704. </td>
  705. <td class='center'>
  706. <input value='${monthvar.RATIO_SUBGRADE_COST_9}' name='RATIO_SUBGRADE_COST_9' class='percentCell RATIO_SUBGRADE_COST_9' type='text' readonly='readonly'
  707. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SUBGRADE_COST_9}" />'
  708. num1="ACTUAL_COST_SUBGRADE_COST_9" num2="SUBGRADE_COST"/>
  709. </td>
  710. <td class='center'>
  711. <input value='${monthvar.ACTUAL_COST_SUBGRADE_COST_10}' onblur='editValue(this)' name='ACTUAL_COST_SUBGRADE_COST_10'
  712. class='editInput ACTUAL_COST_SUBGRADE_COST_10' type='text' readonly='readonly' totalType='sum'/>
  713. </td>
  714. <td class='center'>
  715. <input value='${monthvar.PAY_COST_SUBGRADE_COST_10}' onblur='editValue(this)' name='PAY_COST_SUBGRADE_COST_10'
  716. class='editInput PAY_COST_SUBGRADE_COST_10' type='text' readonly='readonly' totalType='sum'/>
  717. </td>
  718. <td class='center'>
  719. <input value='${monthvar.RATIO_SUBGRADE_COST_10}' name='RATIO_SUBGRADE_COST_10' class='percentCell RATIO_SUBGRADE_COST_10' type='text' readonly='readonly'
  720. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SUBGRADE_COST_10}" />'
  721. num1="ACTUAL_COST_SUBGRADE_COST_10" num2="SUBGRADE_COST"/>
  722. </td>
  723. <td class='center'>
  724. <input value='${monthvar.ACTUAL_COST_SUBGRADE_COST_11}' onblur='editValue(this)' name='ACTUAL_COST_SUBGRADE_COST_11'
  725. class='editInput ACTUAL_COST_SUBGRADE_COST_11' type='text' readonly='readonly' totalType='sum'/>
  726. </td>
  727. <td class='center'>
  728. <input value='${monthvar.PAY_COST_SUBGRADE_COST_11}' onblur='editValue(this)' name='PAY_COST_SUBGRADE_COST_11'
  729. class='editInput PAY_COST_SUBGRADE_COST_11' type='text' readonly='readonly' totalType='sum'/>
  730. </td>
  731. <td class='center'>
  732. <input value='${monthvar.RATIO_SUBGRADE_COST_11}' name='RATIO_SUBGRADE_COST_11' class='percentCell RATIO_SUBGRADE_COST_11' type='text' readonly='readonly'
  733. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SUBGRADE_COST_11}" />'
  734. num1="ACTUAL_COST_SUBGRADE_COST_11" num2="SUBGRADE_COST"/>
  735. </td>
  736. <td class='center'>
  737. <input value='${monthvar.ACTUAL_COST_SUBGRADE_COST_12}' onblur='editValue(this)' name='ACTUAL_COST_SUBGRADE_COST_12'
  738. class='editInput ACTUAL_COST_SUBGRADE_COST_12' type='text' readonly='readonly' totalType='sum'/>
  739. </td>
  740. <td class='center'>
  741. <input value='${monthvar.PAY_COST_SUBGRADE_COST_12}' onblur='editValue(this)' name='PAY_COST_SUBGRADE_COST_12'
  742. class='editInput PAY_COST_SUBGRADE_COST_12' type='text' readonly='readonly' totalType='sum'/>
  743. </td>
  744. <td class='center'>
  745. <input value='${monthvar.RATIO_SUBGRADE_COST_12}' name='RATIO_SUBGRADE_COST_12' class='percentCell RATIO_SUBGRADE_COST_12' type='text' readonly='readonly'
  746. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SUBGRADE_COST_12}" />'
  747. num1="ACTUAL_COST_SUBGRADE_COST_12" num2="SUBGRADE_COST"/>
  748. </td>
  749. <td class='center'>
  750. <span class='rowSumCell ACTUAL_COST_SUBGRADE_COST' totalType='sum'></span>
  751. </td>
  752. <td class='center'>
  753. <span class='rowSumCell PAY_COST_SUBGRADE_COST' totalType='sum'></span>
  754. </td>
  755. <td class='center'>
  756. <span class='percentCell' num1="ACTUAL_COST_SUBGRADE_COST" num2="SUBGRADE_COST"></span>
  757. </td>
  758. </c:if>
  759. </c:forEach>
  760. </tr>
  761. <tr class='edittr'>
  762. <td class='center'><label class="num">4</label> </td>
  763. <td class='center'>路面</td>
  764. <td class='center'>
  765. <input value='${plancost.PAVEMENT_COST}' class='PAVEMENT_COST' type='text' readonly='readonly' totalType='sum'/>
  766. </td>
  767. <td class='center'></td>
  768. <c:forEach items="${monthVarList}" var="monthvar" varStatus="vs">
  769. <c:if test="${monthvar.type == 'PAVEMENT_COST'}">
  770. <td class='center' style='display:none;'>
  771. <input value='${pd.YEAR}' name='YEAR' type='text' readonly='readonly'/>
  772. </td>
  773. <td class='center' style='display:none;'>
  774. <input value='${pd.COMPANY}' name='COMPANY' type='text' readonly='readonly'/>
  775. </td>
  776. <td class='center' style='display:none;'>
  777. <input value='${pd.COMPANY_ID}' name='COMPANY_ID' type='text' readonly='readonly'/>
  778. </td>
  779. <td class='center' style='display:none;'>
  780. <input value='${pd.ROAD_ID}' name='ROAD_ID' type='text' readonly='readonly'/>
  781. </td>
  782. <td class='center' style='display:none;'>
  783. <input value='${pd.ROAD}' name='ROAD' type='text' readonly='readonly'/>
  784. </td>
  785. <td class='center' style='display:none;'>
  786. <input value='PAVEMENT_COST' name='TYPE' type='text' readonly='readonly'/>
  787. </td>
  788. <td class='center'>
  789. <input value='${monthvar.ACTUAL_COST_PAVEMENT_COST_1}' onblur='editValue(this)' name='ACTUAL_COST_PAVEMENT_COST_1'
  790. class='editInput ACTUAL_COST_PAVEMENT_COST_1' type='text' readonly='readonly' totalType='sum'/>
  791. </td>
  792. <td class='center'>
  793. <input value='${monthvar.PAY_COST_PAVEMENT_COST_1}' onblur='editValue(this)' name='PAY_COST_PAVEMENT_COST_1'
  794. class='editInput PAY_COST_PAVEMENT_COST_1' type='text' readonly='readonly' totalType='sum'/>
  795. </td>
  796. <td class='center'>
  797. <input value='${monthvar.RATIO_PAVEMENT_COST_1}' name='RATIO_PAVEMENT_COST_1' class='percentCell RATIO_PAVEMENT_COST_1' type='text' readonly='readonly'
  798. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PAVEMENT_COST_1}" />'
  799. num1="ACTUAL_COST_PAVEMENT_COST_1" num2="PAVEMENT_COST"/>
  800. </td>
  801. <td class='center'>
  802. <input value='${monthvar.ACTUAL_COST_PAVEMENT_COST_2}' onblur='editValue(this)' name='ACTUAL_COST_PAVEMENT_COST_2'
  803. class='editInput ACTUAL_COST_PAVEMENT_COST_2' type='text' readonly='readonly' totalType='sum'/>
  804. </td>
  805. <td class='center'>
  806. <input value='${monthvar.PAY_COST_PAVEMENT_COST_2}' onblur='editValue(this)' name='PAY_COST_PAVEMENT_COST_2'
  807. class='editInput PAY_COST_PAVEMENT_COST_2' type='text' readonly='readonly' totalType='sum'/>
  808. </td>
  809. <td class='center'>
  810. <input value='${monthvar.RATIO_PAVEMENT_COST_2}' name='RATIO_PAVEMENT_COST_2' class='percentCell RATIO_PAVEMENT_COST_2' type='text' readonly='readonly'
  811. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PAVEMENT_COST_2}" />'
  812. num1="ACTUAL_COST_PAVEMENT_COST_2" num2="PAVEMENT_COST"/>
  813. </td>
  814. <td class='center'>
  815. <input value='${monthvar.ACTUAL_COST_PAVEMENT_COST_3}' onblur='editValue(this)' name='ACTUAL_COST_PAVEMENT_COST_3'
  816. class='editInput ACTUAL_COST_PAVEMENT_COST_3' type='text' readonly='readonly' totalType='sum'/>
  817. </td>
  818. <td class='center'>
  819. <input value='${monthvar.PAY_COST_PAVEMENT_COST_3}' onblur='editValue(this)' name='PAY_COST_PAVEMENT_COST_3'
  820. class='editInput PAY_COST_PAVEMENT_COST_3' type='text' readonly='readonly' totalType='sum'/>
  821. </td>
  822. <td class='center'>
  823. <input value='${monthvar.RATIO_PAVEMENT_COST_3}' name='RATIO_PAVEMENT_COST_3' class='percentCell RATIO_PAVEMENT_COST_3' type='text' readonly='readonly'
  824. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PAVEMENT_COST_3}" />'
  825. num1="ACTUAL_COST_PAVEMENT_COST_3" num2="PAVEMENT_COST"/>
  826. </td>
  827. <td class='center'>
  828. <input value='${monthvar.ACTUAL_COST_PAVEMENT_COST_4}' onblur='editValue(this)' name='ACTUAL_COST_PAVEMENT_COST_4'
  829. class='editInput ACTUAL_COST_PAVEMENT_COST_4' type='text' readonly='readonly' totalType='sum'/>
  830. </td>
  831. <td class='center'>
  832. <input value='${monthvar.PAY_COST_PAVEMENT_COST_4}' onblur='editValue(this)' name='PAY_COST_PAVEMENT_COST_4'
  833. class='editInput PAY_COST_PAVEMENT_COST_4' type='text' readonly='readonly' totalType='sum'/>
  834. </td>
  835. <td class='center'>
  836. <input value='${monthvar.RATIO_PAVEMENT_COST_4}' name='RATIO_PAVEMENT_COST_4' class='percentCell RATIO_PAVEMENT_COST_4' type='text' readonly='readonly'
  837. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PAVEMENT_COST_4}" />'
  838. num1="ACTUAL_COST_PAVEMENT_COST_4" num2="PAVEMENT_COST"/>
  839. </td>
  840. <td class='center'>
  841. <input value='${monthvar.ACTUAL_COST_PAVEMENT_COST_5}' onblur='editValue(this)' name='ACTUAL_COST_PAVEMENT_COST_5'
  842. class='editInput ACTUAL_COST_PAVEMENT_COST_5' type='text' readonly='readonly' totalType='sum'/>
  843. </td>
  844. <td class='center'>
  845. <input value='${monthvar.PAY_COST_PAVEMENT_COST_5}' onblur='editValue(this)' name='PAY_COST_PAVEMENT_COST_5'
  846. class='editInput PAY_COST_PAVEMENT_COST_5' type='text' readonly='readonly' totalType='sum'/>
  847. </td>
  848. <td class='center'>
  849. <input value='${monthvar.RATIO_PAVEMENT_COST_5}' name='RATIO_PAVEMENT_COST_5' class='percentCell RATIO_PAVEMENT_COST_5' type='text' readonly='readonly'
  850. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PAVEMENT_COST_5}" />'
  851. num1="ACTUAL_COST_PAVEMENT_COST_5" num2="PAVEMENT_COST"/>
  852. </td>
  853. <td class='center'>
  854. <input value='${monthvar.ACTUAL_COST_PAVEMENT_COST_6}' onblur='editValue(this)' name='ACTUAL_COST_PAVEMENT_COST_6'
  855. class='editInput ACTUAL_COST_PAVEMENT_COST_6' type='text' readonly='readonly' totalType='sum'/>
  856. </td>
  857. <td class='center'>
  858. <input value='${monthvar.PAY_COST_PAVEMENT_COST_6}' onblur='editValue(this)' name='PAY_COST_PAVEMENT_COST_6'
  859. class='editInput PAY_COST_PAVEMENT_COST_6' type='text' readonly='readonly' totalType='sum'/>
  860. </td>
  861. <td class='center'>
  862. <input value='${monthvar.RATIO_PAVEMENT_COST_6}' name='RATIO_PAVEMENT_COST_6' class='percentCell RATIO_PAVEMENT_COST_6' type='text' readonly='readonly'
  863. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PAVEMENT_COST_6}" />'
  864. num1="ACTUAL_COST_PAVEMENT_COST_6" num2="PAVEMENT_COST"/>
  865. </td>
  866. <td class='center'>
  867. <input value='${monthvar.ACTUAL_COST_PAVEMENT_COST_7}' onblur='editValue(this)' name='ACTUAL_COST_PAVEMENT_COST_7'
  868. class='editInput ACTUAL_COST_PAVEMENT_COST_7' type='text' readonly='readonly' totalType='sum'/>
  869. </td>
  870. <td class='center'>
  871. <input value='${monthvar.PAY_COST_PAVEMENT_COST_7}' onblur='editValue(this)' name='PAY_COST_PAVEMENT_COST_7'
  872. class='editInput PAY_COST_PAVEMENT_COST_7' type='text' readonly='readonly' totalType='sum'/>
  873. </td>
  874. <td class='center'>
  875. <input value='${monthvar.RATIO_PAVEMENT_COST_7}' name='RATIO_PAVEMENT_COST_7' class='percentCell RATIO_PAVEMENT_COST_7' type='text' readonly='readonly'
  876. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PAVEMENT_COST_7}" />'
  877. num1="ACTUAL_COST_PAVEMENT_COST_7" num2="PAVEMENT_COST"/>
  878. </td>
  879. <td class='center'>
  880. <input value='${monthvar.ACTUAL_COST_PAVEMENT_COST_8}' onblur='editValue(this)' name='ACTUAL_COST_PAVEMENT_COST_8'
  881. class='editInput ACTUAL_COST_PAVEMENT_COST_8' type='text' readonly='readonly' totalType='sum'/>
  882. </td>
  883. <td class='center'>
  884. <input value='${monthvar.PAY_COST_PAVEMENT_COST_8}' onblur='editValue(this)' name='PAY_COST_PAVEMENT_COST_8'
  885. class='editInput PAY_COST_PAVEMENT_COST_8' type='text' readonly='readonly' totalType='sum'/>
  886. </td>
  887. <td class='center'>
  888. <input value='${monthvar.RATIO_PAVEMENT_COST_8}' name='RATIO_PAVEMENT_COST_8' class='percentCell RATIO_PAVEMENT_COST_8' type='text' readonly='readonly'
  889. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PAVEMENT_COST_8}" />'
  890. num1="ACTUAL_COST_PAVEMENT_COST_8" num2="PAVEMENT_COST"/>
  891. </td>
  892. <td class='center'>
  893. <input value='${monthvar.ACTUAL_COST_PAVEMENT_COST_9}' onblur='editValue(this)' name='ACTUAL_COST_PAVEMENT_COST_9'
  894. class='editInput ACTUAL_COST_PAVEMENT_COST_9' type='text' readonly='readonly' totalType='sum'/>
  895. </td>
  896. <td class='center'>
  897. <input value='${monthvar.PAY_COST_PAVEMENT_COST_9}' onblur='editValue(this)' name='PAY_COST_PAVEMENT_COST_9'
  898. class='editInput PAY_COST_PAVEMENT_COST_9' type='text' readonly='readonly' totalType='sum'/>
  899. </td>
  900. <td class='center'>
  901. <input value='${monthvar.RATIO_PAVEMENT_COST_9}' name='RATIO_PAVEMENT_COST_9' class='percentCell RATIO_PAVEMENT_COST_9' type='text' readonly='readonly'
  902. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PAVEMENT_COST_9}" />'
  903. num1="ACTUAL_COST_PAVEMENT_COST_9" num2="PAVEMENT_COST"/>
  904. </td>
  905. <td class='center'>
  906. <input value='${monthvar.ACTUAL_COST_PAVEMENT_COST_10}' onblur='editValue(this)' name='ACTUAL_COST_PAVEMENT_COST_10'
  907. class='editInput ACTUAL_COST_PAVEMENT_COST_10' type='text' readonly='readonly' totalType='sum'/>
  908. </td>
  909. <td class='center'>
  910. <input value='${monthvar.PAY_COST_PAVEMENT_COST_10}' onblur='editValue(this)' name='PAY_COST_PAVEMENT_COST_10'
  911. class='editInput PAY_COST_PAVEMENT_COST_10' type='text' readonly='readonly' totalType='sum'/>
  912. </td>
  913. <td class='center'>
  914. <input value='${monthvar.RATIO_PAVEMENT_COST_10}' name='RATIO_PAVEMENT_COST_10' class='percentCell RATIO_PAVEMENT_COST_10' type='text' readonly='readonly'
  915. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PAVEMENT_COST_10}" />'
  916. num1="ACTUAL_COST_PAVEMENT_COST_10" num2="PAVEMENT_COST"/>
  917. </td>
  918. <td class='center'>
  919. <input value='${monthvar.ACTUAL_COST_PAVEMENT_COST_11}' onblur='editValue(this)' name='ACTUAL_COST_PAVEMENT_COST_11'
  920. class='editInput ACTUAL_COST_PAVEMENT_COST_11' type='text' readonly='readonly' totalType='sum'/>
  921. </td>
  922. <td class='center'>
  923. <input value='${monthvar.PAY_COST_PAVEMENT_COST_11}' onblur='editValue(this)' name='PAY_COST_PAVEMENT_COST_11'
  924. class='editInput PAY_COST_PAVEMENT_COST_11' type='text' readonly='readonly' totalType='sum'/>
  925. </td>
  926. <td class='center'>
  927. <input value='${monthvar.RATIO_PAVEMENT_COST_11}' name='RATIO_PAVEMENT_COST_11' class='percentCell RATIO_PAVEMENT_COST_11' type='text' readonly='readonly'
  928. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PAVEMENT_COST_11}" />'
  929. num1="ACTUAL_COST_PAVEMENT_COST_11" num2="PAVEMENT_COST"/>
  930. </td>
  931. <td class='center'>
  932. <input value='${monthvar.ACTUAL_COST_PAVEMENT_COST_12}' onblur='editValue(this)' name='ACTUAL_COST_PAVEMENT_COST_12'
  933. class='editInput ACTUAL_COST_PAVEMENT_COST_12' type='text' readonly='readonly' totalType='sum'/>
  934. </td>
  935. <td class='center'>
  936. <input value='${monthvar.PAY_COST_PAVEMENT_COST_12}' onblur='editValue(this)' name='PAY_COST_PAVEMENT_COST_12'
  937. class='editInput PAY_COST_PAVEMENT_COST_12' type='text' readonly='readonly' totalType='sum'/>
  938. </td>
  939. <td class='center'>
  940. <input value='${monthvar.RATIO_PAVEMENT_COST_12}' name='RATIO_PAVEMENT_COST_12' class='percentCell RATIO_PAVEMENT_COST_12' type='text' readonly='readonly'
  941. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_PAVEMENT_COST_12}" />'
  942. num1="ACTUAL_COST_PAVEMENT_COST_12" num2="PAVEMENT_COST"/>
  943. </td>
  944. <td class='center'>
  945. <span class='rowSumCell ACTUAL_COST_PAVEMENT_COST' totalType='sum'></span>
  946. </td>
  947. <td class='center'>
  948. <span class='rowSumCell PAY_COST_PAVEMENT_COST' totalType='sum'></span>
  949. </td>
  950. <td class='center'>
  951. <span class='percentCell' num1="ACTUAL_COST_PAVEMENT_COST" num2="PAVEMENT_COST"></span>
  952. </td>
  953. </c:if>
  954. </c:forEach>
  955. </tr>
  956. <tr class='edittr'>
  957. <td class='center'><label class="num">5</label> </td>
  958. <td class='center'>桥梁</td>
  959. <td class='center'>
  960. <input value='${plancost.BRIDGE_COST}' class='BRIDGE_COST' type='text' readonly='readonly' totalType='sum'/>
  961. </td>
  962. <td class='center'></td>
  963. <c:forEach items="${monthVarList}" var="monthvar" varStatus="vs">
  964. <c:if test="${monthvar.type == 'BRIDGE_COST'}">
  965. <td class='center' style='display:none;'>
  966. <input value='${pd.YEAR}' name='YEAR' type='text' readonly='readonly'/>
  967. </td>
  968. <td class='center' style='display:none;'>
  969. <input value='${pd.COMPANY}' name='COMPANY' type='text' readonly='readonly'/>
  970. </td>
  971. <td class='center' style='display:none;'>
  972. <input value='${pd.COMPANY_ID}' name='COMPANY_ID' type='text' readonly='readonly'/>
  973. </td>
  974. <td class='center' style='display:none;'>
  975. <input value='${pd.ROAD_ID}' name='ROAD_ID' type='text' readonly='readonly'/>
  976. </td>
  977. <td class='center' style='display:none;'>
  978. <input value='${pd.ROAD}' name='ROAD' type='text' readonly='readonly'/>
  979. </td>
  980. <td class='center' style='display:none;'>
  981. <input value='BRIDGE_COST' name='TYPE' type='text' readonly='readonly'/>
  982. </td>
  983. <td class='center'>
  984. <input value='${monthvar.ACTUAL_COST_BRIDGE_COST_1}' onblur='editValue(this)' name='ACTUAL_COST_BRIDGE_COST_1'
  985. class='editInput ACTUAL_COST_BRIDGE_COST_1' type='text' readonly='readonly' totalType='sum'/>
  986. </td>
  987. <td class='center'>
  988. <input value='${monthvar.PAY_COST_BRIDGE_COST_1}' onblur='editValue(this)' name='PAY_COST_BRIDGE_COST_1'
  989. class='editInput PAY_COST_BRIDGE_COST_1' type='text' readonly='readonly' totalType='sum'/>
  990. </td>
  991. <td class='center'>
  992. <input value='${monthvar.RATIO_BRIDGE_COST_1}' name='RATIO_BRIDGE_COST_1' class='percentCell RATIO_BRIDGE_COST_1' type='text' readonly='readonly'
  993. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_BRIDGE_COST_1}" />'
  994. num1="ACTUAL_COST_BRIDGE_COST_1" num2="BRIDGE_COST"/>
  995. </td>
  996. <td class='center'>
  997. <input value='${monthvar.ACTUAL_COST_BRIDGE_COST_2}' onblur='editValue(this)' name='ACTUAL_COST_BRIDGE_COST_2'
  998. class='editInput ACTUAL_COST_BRIDGE_COST_2' type='text' readonly='readonly' totalType='sum'/>
  999. </td>
  1000. <td class='center'>
  1001. <input value='${monthvar.PAY_COST_BRIDGE_COST_2}' onblur='editValue(this)' name='PAY_COST_BRIDGE_COST_2'
  1002. class='editInput PAY_COST_BRIDGE_COST_2' type='text' readonly='readonly' totalType='sum'/>
  1003. </td>
  1004. <td class='center'>
  1005. <input value='${monthvar.RATIO_BRIDGE_COST_2}' name='RATIO_BRIDGE_COST_2' class='percentCell RATIO_BRIDGE_COST_2' type='text' readonly='readonly'
  1006. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_BRIDGE_COST_2}" />'
  1007. num1="ACTUAL_COST_BRIDGE_COST_2" num2="BRIDGE_COST"/>
  1008. </td>
  1009. <td class='center'>
  1010. <input value='${monthvar.ACTUAL_COST_BRIDGE_COST_3}' onblur='editValue(this)' name='ACTUAL_COST_BRIDGE_COST_3'
  1011. class='editInput ACTUAL_COST_BRIDGE_COST_3' type='text' readonly='readonly' totalType='sum'/>
  1012. </td>
  1013. <td class='center'>
  1014. <input value='${monthvar.PAY_COST_BRIDGE_COST_3}' onblur='editValue(this)' name='PAY_COST_BRIDGE_COST_3'
  1015. class='editInput PAY_COST_BRIDGE_COST_3' type='text' readonly='readonly' totalType='sum'/>
  1016. </td>
  1017. <td class='center'>
  1018. <input value='${monthvar.RATIO_BRIDGE_COST_3}' name='RATIO_BRIDGE_COST_3' class='percentCell RATIO_BRIDGE_COST_3' type='text' readonly='readonly'
  1019. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_BRIDGE_COST_3}" />'
  1020. num1="ACTUAL_COST_BRIDGE_COST_3" num2="BRIDGE_COST"/>
  1021. </td>
  1022. <td class='center'>
  1023. <input value='${monthvar.ACTUAL_COST_BRIDGE_COST_4}' onblur='editValue(this)' name='ACTUAL_COST_BRIDGE_COST_4'
  1024. class='editInput ACTUAL_COST_BRIDGE_COST_4' type='text' readonly='readonly' totalType='sum'/>
  1025. </td>
  1026. <td class='center'>
  1027. <input value='${monthvar.PAY_COST_BRIDGE_COST_4}' onblur='editValue(this)' name='PAY_COST_BRIDGE_COST_4'
  1028. class='editInput PAY_COST_BRIDGE_COST_4' type='text' readonly='readonly' totalType='sum'/>
  1029. </td>
  1030. <td class='center'>
  1031. <input value='${monthvar.RATIO_BRIDGE_COST_4}' name='RATIO_BRIDGE_COST_4' class='percentCell RATIO_BRIDGE_COST_4' type='text' readonly='readonly'
  1032. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_BRIDGE_COST_4}" />'
  1033. num1="ACTUAL_COST_BRIDGE_COST_4" num2="BRIDGE_COST"/>
  1034. </td>
  1035. <td class='center'>
  1036. <input value='${monthvar.ACTUAL_COST_BRIDGE_COST_5}' onblur='editValue(this)' name='ACTUAL_COST_BRIDGE_COST_5'
  1037. class='editInput ACTUAL_COST_BRIDGE_COST_5' type='text' readonly='readonly' totalType='sum'/>
  1038. </td>
  1039. <td class='center'>
  1040. <input value='${monthvar.PAY_COST_BRIDGE_COST_5}' onblur='editValue(this)' name='PAY_COST_BRIDGE_COST_5'
  1041. class='editInput PAY_COST_BRIDGE_COST_5' type='text' readonly='readonly' totalType='sum'/>
  1042. </td>
  1043. <td class='center'>
  1044. <input value='${monthvar.RATIO_BRIDGE_COST_5}' name='RATIO_BRIDGE_COST_5' class='percentCell RATIO_BRIDGE_COST_5' type='text' readonly='readonly'
  1045. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_BRIDGE_COST_5}" />'
  1046. num1="ACTUAL_COST_BRIDGE_COST_5" num2="BRIDGE_COST"/>
  1047. </td>
  1048. <td class='center'>
  1049. <input value='${monthvar.ACTUAL_COST_BRIDGE_COST_6}' onblur='editValue(this)' name='ACTUAL_COST_BRIDGE_COST_6'
  1050. class='editInput ACTUAL_COST_BRIDGE_COST_6' type='text' readonly='readonly' totalType='sum'/>
  1051. </td>
  1052. <td class='center'>
  1053. <input value='${monthvar.PAY_COST_BRIDGE_COST_6}' onblur='editValue(this)' name='PAY_COST_BRIDGE_COST_6'
  1054. class='editInput PAY_COST_BRIDGE_COST_6' type='text' readonly='readonly' totalType='sum'/>
  1055. </td>
  1056. <td class='center'>
  1057. <input value='${monthvar.RATIO_BRIDGE_COST_6}' name='RATIO_BRIDGE_COST_6' class='percentCell RATIO_BRIDGE_COST_6' type='text' readonly='readonly'
  1058. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_BRIDGE_COST_6}" />'
  1059. num1="ACTUAL_COST_BRIDGE_COST_6" num2="BRIDGE_COST"/>
  1060. </td>
  1061. <td class='center'>
  1062. <input value='${monthvar.ACTUAL_COST_BRIDGE_COST_7}' onblur='editValue(this)' name='ACTUAL_COST_BRIDGE_COST_7'
  1063. class='editInput ACTUAL_COST_BRIDGE_COST_7' type='text' readonly='readonly' totalType='sum'/>
  1064. </td>
  1065. <td class='center'>
  1066. <input value='${monthvar.PAY_COST_BRIDGE_COST_7}' onblur='editValue(this)' name='PAY_COST_BRIDGE_COST_7'
  1067. class='editInput PAY_COST_BRIDGE_COST_7' type='text' readonly='readonly' totalType='sum'/>
  1068. </td>
  1069. <td class='center'>
  1070. <input value='${monthvar.RATIO_BRIDGE_COST_7}' name='RATIO_BRIDGE_COST_7' class='percentCell RATIO_BRIDGE_COST_7' type='text' readonly='readonly'
  1071. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_BRIDGE_COST_7}" />'
  1072. num1="ACTUAL_COST_BRIDGE_COST_7" num2="BRIDGE_COST"/>
  1073. </td>
  1074. <td class='center'>
  1075. <input value='${monthvar.ACTUAL_COST_BRIDGE_COST_8}' onblur='editValue(this)' name='ACTUAL_COST_BRIDGE_COST_8'
  1076. class='editInput ACTUAL_COST_BRIDGE_COST_8' type='text' readonly='readonly' totalType='sum'/>
  1077. </td>
  1078. <td class='center'>
  1079. <input value='${monthvar.PAY_COST_BRIDGE_COST_8}' onblur='editValue(this)' name='PAY_COST_BRIDGE_COST_8'
  1080. class='editInput PAY_COST_BRIDGE_COST_8' type='text' readonly='readonly' totalType='sum'/>
  1081. </td>
  1082. <td class='center'>
  1083. <input value='${monthvar.RATIO_BRIDGE_COST_8}' name='RATIO_BRIDGE_COST_8' class='percentCell RATIO_BRIDGE_COST_8' type='text' readonly='readonly'
  1084. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_BRIDGE_COST_8}" />'
  1085. num1="ACTUAL_COST_BRIDGE_COST_8" num2="BRIDGE_COST"/>
  1086. </td>
  1087. <td class='center'>
  1088. <input value='${monthvar.ACTUAL_COST_BRIDGE_COST_9}' onblur='editValue(this)' name='ACTUAL_COST_BRIDGE_COST_9'
  1089. class='editInput ACTUAL_COST_BRIDGE_COST_9' type='text' readonly='readonly' totalType='sum'/>
  1090. </td>
  1091. <td class='center'>
  1092. <input value='${monthvar.PAY_COST_BRIDGE_COST_9}' onblur='editValue(this)' name='PAY_COST_BRIDGE_COST_9'
  1093. class='editInput PAY_COST_BRIDGE_COST_9' type='text' readonly='readonly' totalType='sum'/>
  1094. </td>
  1095. <td class='center'>
  1096. <input value='${monthvar.RATIO_BRIDGE_COST_9}' name='RATIO_BRIDGE_COST_9' class='percentCell RATIO_BRIDGE_COST_9' type='text' readonly='readonly'
  1097. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_BRIDGE_COST_9}" />'
  1098. num1="ACTUAL_COST_BRIDGE_COST_9" num2="BRIDGE_COST"/>
  1099. </td>
  1100. <td class='center'>
  1101. <input value='${monthvar.ACTUAL_COST_BRIDGE_COST_10}' onblur='editValue(this)' name='ACTUAL_COST_BRIDGE_COST_10'
  1102. class='editInput ACTUAL_COST_BRIDGE_COST_10' type='text' readonly='readonly' totalType='sum'/>
  1103. </td>
  1104. <td class='center'>
  1105. <input value='${monthvar.PAY_COST_BRIDGE_COST_10}' onblur='editValue(this)' name='PAY_COST_BRIDGE_COST_10'
  1106. class='editInput PAY_COST_BRIDGE_COST_10' type='text' readonly='readonly' totalType='sum'/>
  1107. </td>
  1108. <td class='center'>
  1109. <input value='${monthvar.RATIO_BRIDGE_COST_10}' name='RATIO_BRIDGE_COST_10' class='percentCell RATIO_BRIDGE_COST_10' type='text' readonly='readonly'
  1110. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_BRIDGE_COST_10}" />'
  1111. num1="ACTUAL_COST_BRIDGE_COST_10" num2="BRIDGE_COST"/>
  1112. </td>
  1113. <td class='center'>
  1114. <input value='${monthvar.ACTUAL_COST_BRIDGE_COST_11}' onblur='editValue(this)' name='ACTUAL_COST_BRIDGE_COST_11'
  1115. class='editInput ACTUAL_COST_BRIDGE_COST_11' type='text' readonly='readonly' totalType='sum'/>
  1116. </td>
  1117. <td class='center'>
  1118. <input value='${monthvar.PAY_COST_BRIDGE_COST_11}' onblur='editValue(this)' name='PAY_COST_BRIDGE_COST_11'
  1119. class='editInput PAY_COST_BRIDGE_COST_11' type='text' readonly='readonly' totalType='sum'/>
  1120. </td>
  1121. <td class='center'>
  1122. <input value='${monthvar.RATIO_BRIDGE_COST_11}' name='RATIO_BRIDGE_COST_11' class='percentCell RATIO_BRIDGE_COST_11' type='text' readonly='readonly'
  1123. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_BRIDGE_COST_11}" />'
  1124. num1="ACTUAL_COST_BRIDGE_COST_11" num2="BRIDGE_COST"/>
  1125. </td>
  1126. <td class='center'>
  1127. <input value='${monthvar.ACTUAL_COST_BRIDGE_COST_12}' onblur='editValue(this)' name='ACTUAL_COST_BRIDGE_COST_12'
  1128. class='editInput ACTUAL_COST_BRIDGE_COST_12' type='text' readonly='readonly' totalType='sum'/>
  1129. </td>
  1130. <td class='center'>
  1131. <input value='${monthvar.PAY_COST_BRIDGE_COST_12}' onblur='editValue(this)' name='PAY_COST_BRIDGE_COST_12'
  1132. class='editInput PAY_COST_BRIDGE_COST_12' type='text' readonly='readonly' totalType='sum'/>
  1133. </td>
  1134. <td class='center'>
  1135. <input value='${monthvar.RATIO_BRIDGE_COST_12}' name='RATIO_BRIDGE_COST_12' class='percentCell RATIO_BRIDGE_COST_12' type='text' readonly='readonly'
  1136. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_BRIDGE_COST_12}" />'
  1137. num1="ACTUAL_COST_BRIDGE_COST_12" num2="BRIDGE_COST"/>
  1138. </td>
  1139. <td class='center'>
  1140. <span class='rowSumCell ACTUAL_COST_BRIDGE_COST' totalType='sum'></span>
  1141. </td>
  1142. <td class='center'>
  1143. <span class='rowSumCell PAY_COST_BRIDGE_COST' totalType='sum'></span>
  1144. </td>
  1145. <td class='center'>
  1146. <span class='percentCell' num1="ACTUAL_COST_BRIDGE_COST" num2="BRIDGE_COST"></span>
  1147. </td>
  1148. </c:if>
  1149. </c:forEach>
  1150. </tr>
  1151. <tr class='edittr'>
  1152. <td class='center'><label class="num">6</label> </td>
  1153. <td class='center'>涵洞通道</td>
  1154. <td class='center'>
  1155. <input value='${plancost.CULVERT_COST}' class='CULVERT_COST' type='text' readonly='readonly' totalType='sum'/>
  1156. </td>
  1157. <td class='center'></td>
  1158. <c:forEach items="${monthVarList}" var="monthvar" varStatus="vs">
  1159. <c:if test="${monthvar.type == 'CULVERT_COST'}">
  1160. <td class='center' style='display:none;'>
  1161. <input value='${pd.YEAR}' name='YEAR' type='text' readonly='readonly'/>
  1162. </td>
  1163. <td class='center' style='display:none;'>
  1164. <input value='${pd.COMPANY}' name='COMPANY' type='text' readonly='readonly'/>
  1165. </td>
  1166. <td class='center' style='display:none;'>
  1167. <input value='${pd.COMPANY_ID}' name='COMPANY_ID' type='text' readonly='readonly'/>
  1168. </td>
  1169. <td class='center' style='display:none;'>
  1170. <input value='${pd.ROAD_ID}' name='ROAD_ID' type='text' readonly='readonly'/>
  1171. </td>
  1172. <td class='center' style='display:none;'>
  1173. <input value='${pd.ROAD}' name='ROAD' type='text' readonly='readonly'/>
  1174. </td>
  1175. <td class='center' style='display:none;'>
  1176. <input value='CULVERT_COST' name='TYPE' type='text' readonly='readonly'/>
  1177. </td>
  1178. <td class='center'>
  1179. <input value='${monthvar.ACTUAL_COST_CULVERT_COST_1}' onblur='editValue(this)' name='ACTUAL_COST_CULVERT_COST_1'
  1180. class='editInput ACTUAL_COST_CULVERT_COST_1' type='text' readonly='readonly' totalType='sum'/>
  1181. </td>
  1182. <td class='center'>
  1183. <input value='${monthvar.PAY_COST_CULVERT_COST_1}' onblur='editValue(this)' name='PAY_COST_CULVERT_COST_1'
  1184. class='editInput PAY_COST_CULVERT_COST_1' type='text' readonly='readonly' totalType='sum'/>
  1185. </td>
  1186. <td class='center'>
  1187. <input value='${monthvar.RATIO_CULVERT_COST_1}' name='RATIO_CULVERT_COST_1' class='percentCell RATIO_CULVERT_COST_1' type='text' readonly='readonly'
  1188. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CULVERT_COST_1}" />'
  1189. num1="ACTUAL_COST_CULVERT_COST_1" num2="CULVERT_COST"/>
  1190. </td>
  1191. <td class='center'>
  1192. <input value='${monthvar.ACTUAL_COST_CULVERT_COST_2}' onblur='editValue(this)' name='ACTUAL_COST_CULVERT_COST_2'
  1193. class='editInput ACTUAL_COST_CULVERT_COST_2' type='text' readonly='readonly' totalType='sum'/>
  1194. </td>
  1195. <td class='center'>
  1196. <input value='${monthvar.PAY_COST_CULVERT_COST_2}' onblur='editValue(this)' name='PAY_COST_CULVERT_COST_2'
  1197. class='editInput PAY_COST_CULVERT_COST_2' type='text' readonly='readonly' totalType='sum'/>
  1198. </td>
  1199. <td class='center'>
  1200. <input value='${monthvar.RATIO_CULVERT_COST_2}' name='RATIO_CULVERT_COST_2' class='percentCell RATIO_CULVERT_COST_2' type='text' readonly='readonly'
  1201. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CULVERT_COST_2}" />'
  1202. num1="ACTUAL_COST_CULVERT_COST_2" num2="CULVERT_COST"/>
  1203. </td>
  1204. <td class='center'>
  1205. <input value='${monthvar.ACTUAL_COST_CULVERT_COST_3}' onblur='editValue(this)' name='ACTUAL_COST_CULVERT_COST_3'
  1206. class='editInput ACTUAL_COST_CULVERT_COST_3' type='text' readonly='readonly' totalType='sum'/>
  1207. </td>
  1208. <td class='center'>
  1209. <input value='${monthvar.PAY_COST_CULVERT_COST_3}' onblur='editValue(this)' name='PAY_COST_CULVERT_COST_3'
  1210. class='editInput PAY_COST_CULVERT_COST_3' type='text' readonly='readonly' totalType='sum'/>
  1211. </td>
  1212. <td class='center'>
  1213. <input value='${monthvar.RATIO_CULVERT_COST_3}' name='RATIO_CULVERT_COST_3' class='percentCell RATIO_CULVERT_COST_3' type='text' readonly='readonly'
  1214. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CULVERT_COST_3}" />'
  1215. num1="ACTUAL_COST_CULVERT_COST_3" num2="CULVERT_COST"/>
  1216. </td>
  1217. <td class='center'>
  1218. <input value='${monthvar.ACTUAL_COST_CULVERT_COST_4}' onblur='editValue(this)' name='ACTUAL_COST_CULVERT_COST_4'
  1219. class='editInput ACTUAL_COST_CULVERT_COST_4' type='text' readonly='readonly' totalType='sum'/>
  1220. </td>
  1221. <td class='center'>
  1222. <input value='${monthvar.PAY_COST_CULVERT_COST_4}' onblur='editValue(this)' name='PAY_COST_CULVERT_COST_4'
  1223. class='editInput PAY_COST_CULVERT_COST_4' type='text' readonly='readonly' totalType='sum'/>
  1224. </td>
  1225. <td class='center'>
  1226. <input value='${monthvar.RATIO_CULVERT_COST_4}' name='RATIO_CULVERT_COST_4' class='percentCell RATIO_CULVERT_COST_4' type='text' readonly='readonly'
  1227. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CULVERT_COST_4}" />'
  1228. num1="ACTUAL_COST_CULVERT_COST_4" num2="CULVERT_COST"/>
  1229. </td>
  1230. <td class='center'>
  1231. <input value='${monthvar.ACTUAL_COST_CULVERT_COST_5}' onblur='editValue(this)' name='ACTUAL_COST_CULVERT_COST_5'
  1232. class='editInput ACTUAL_COST_CULVERT_COST_5' type='text' readonly='readonly' totalType='sum'/>
  1233. </td>
  1234. <td class='center'>
  1235. <input value='${monthvar.PAY_COST_CULVERT_COST_5}' onblur='editValue(this)' name='PAY_COST_CULVERT_COST_5'
  1236. class='editInput PAY_COST_CULVERT_COST_5' type='text' readonly='readonly' totalType='sum'/>
  1237. </td>
  1238. <td class='center'>
  1239. <input value='${monthvar.RATIO_CULVERT_COST_5}' name='RATIO_CULVERT_COST_5' class='percentCell RATIO_CULVERT_COST_5' type='text' readonly='readonly'
  1240. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CULVERT_COST_5}" />'
  1241. num1="ACTUAL_COST_CULVERT_COST_5" num2="CULVERT_COST"/>
  1242. </td>
  1243. <td class='center'>
  1244. <input value='${monthvar.ACTUAL_COST_CULVERT_COST_6}' onblur='editValue(this)' name='ACTUAL_COST_CULVERT_COST_6'
  1245. class='editInput ACTUAL_COST_CULVERT_COST_6' type='text' readonly='readonly' totalType='sum'/>
  1246. </td>
  1247. <td class='center'>
  1248. <input value='${monthvar.PAY_COST_CULVERT_COST_6}' onblur='editValue(this)' name='PAY_COST_CULVERT_COST_6'
  1249. class='editInput PAY_COST_CULVERT_COST_6' type='text' readonly='readonly' totalType='sum'/>
  1250. </td>
  1251. <td class='center'>
  1252. <input value='${monthvar.RATIO_CULVERT_COST_6}' name='RATIO_CULVERT_COST_6' class='percentCell RATIO_CULVERT_COST_6' type='text' readonly='readonly'
  1253. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CULVERT_COST_6}" />'
  1254. num1="ACTUAL_COST_CULVERT_COST_6" num2="CULVERT_COST"/>
  1255. </td>
  1256. <td class='center'>
  1257. <input value='${monthvar.ACTUAL_COST_CULVERT_COST_7}' onblur='editValue(this)' name='ACTUAL_COST_CULVERT_COST_7'
  1258. class='editInput ACTUAL_COST_CULVERT_COST_7' type='text' readonly='readonly' totalType='sum'/>
  1259. </td>
  1260. <td class='center'>
  1261. <input value='${monthvar.PAY_COST_CULVERT_COST_7}' onblur='editValue(this)' name='PAY_COST_CULVERT_COST_7'
  1262. class='editInput PAY_COST_CULVERT_COST_7' type='text' readonly='readonly' totalType='sum'/>
  1263. </td>
  1264. <td class='center'>
  1265. <input value='${monthvar.RATIO_CULVERT_COST_7}' name='RATIO_CULVERT_COST_7' class='percentCell RATIO_CULVERT_COST_7' type='text' readonly='readonly'
  1266. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CULVERT_COST_7}" />'
  1267. num1="ACTUAL_COST_CULVERT_COST_7" num2="CULVERT_COST"/>
  1268. </td>
  1269. <td class='center'>
  1270. <input value='${monthvar.ACTUAL_COST_CULVERT_COST_8}' onblur='editValue(this)' name='ACTUAL_COST_CULVERT_COST_8'
  1271. class='editInput ACTUAL_COST_CULVERT_COST_8' type='text' readonly='readonly' totalType='sum'/>
  1272. </td>
  1273. <td class='center'>
  1274. <input value='${monthvar.PAY_COST_CULVERT_COST_8}' onblur='editValue(this)' name='PAY_COST_CULVERT_COST_8'
  1275. class='editInput PAY_COST_CULVERT_COST_8' type='text' readonly='readonly' totalType='sum'/>
  1276. </td>
  1277. <td class='center'>
  1278. <input value='${monthvar.RATIO_CULVERT_COST_8}' name='RATIO_CULVERT_COST_8' class='percentCell RATIO_CULVERT_COST_8' type='text' readonly='readonly'
  1279. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CULVERT_COST_8}" />'
  1280. num1="ACTUAL_COST_CULVERT_COST_8" num2="CULVERT_COST"/>
  1281. </td>
  1282. <td class='center'>
  1283. <input value='${monthvar.ACTUAL_COST_CULVERT_COST_9}' onblur='editValue(this)' name='ACTUAL_COST_CULVERT_COST_9'
  1284. class='editInput ACTUAL_COST_CULVERT_COST_9' type='text' readonly='readonly' totalType='sum'/>
  1285. </td>
  1286. <td class='center'>
  1287. <input value='${monthvar.PAY_COST_CULVERT_COST_9}' onblur='editValue(this)' name='PAY_COST_CULVERT_COST_9'
  1288. class='editInput PAY_COST_CULVERT_COST_9' type='text' readonly='readonly' totalType='sum'/>
  1289. </td>
  1290. <td class='center'>
  1291. <input value='${monthvar.RATIO_CULVERT_COST_9}' name='RATIO_CULVERT_COST_9' class='percentCell RATIO_CULVERT_COST_9' type='text' readonly='readonly'
  1292. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CULVERT_COST_9}" />'
  1293. num1="ACTUAL_COST_CULVERT_COST_9" num2="CULVERT_COST"/>
  1294. </td>
  1295. <td class='center'>
  1296. <input value='${monthvar.ACTUAL_COST_CULVERT_COST_10}' onblur='editValue(this)' name='ACTUAL_COST_CULVERT_COST_10'
  1297. class='editInput ACTUAL_COST_CULVERT_COST_10' type='text' readonly='readonly' totalType='sum'/>
  1298. </td>
  1299. <td class='center'>
  1300. <input value='${monthvar.PAY_COST_CULVERT_COST_10}' onblur='editValue(this)' name='PAY_COST_CULVERT_COST_10'
  1301. class='editInput PAY_COST_CULVERT_COST_10' type='text' readonly='readonly' totalType='sum'/>
  1302. </td>
  1303. <td class='center'>
  1304. <input value='${monthvar.RATIO_CULVERT_COST_10}' name='RATIO_CULVERT_COST_10' class='percentCell RATIO_CULVERT_COST_10' type='text' readonly='readonly'
  1305. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CULVERT_COST_10}" />'
  1306. num1="ACTUAL_COST_CULVERT_COST_10" num2="CULVERT_COST"/>
  1307. </td>
  1308. <td class='center'>
  1309. <input value='${monthvar.ACTUAL_COST_CULVERT_COST_11}' onblur='editValue(this)' name='ACTUAL_COST_CULVERT_COST_11'
  1310. class='editInput ACTUAL_COST_CULVERT_COST_11' type='text' readonly='readonly' totalType='sum'/>
  1311. </td>
  1312. <td class='center'>
  1313. <input value='${monthvar.PAY_COST_CULVERT_COST_11}' onblur='editValue(this)' name='PAY_COST_CULVERT_COST_11'
  1314. class='editInput PAY_COST_CULVERT_COST_11' type='text' readonly='readonly' totalType='sum'/>
  1315. </td>
  1316. <td class='center'>
  1317. <input value='${monthvar.RATIO_CULVERT_COST_11}' name='RATIO_CULVERT_COST_11' class='percentCell RATIO_CULVERT_COST_11' type='text' readonly='readonly'
  1318. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CULVERT_COST_11}" />'
  1319. num1="ACTUAL_COST_CULVERT_COST_11" num2="CULVERT_COST"/>
  1320. </td>
  1321. <td class='center'>
  1322. <input value='${monthvar.ACTUAL_COST_CULVERT_COST_12}' onblur='editValue(this)' name='ACTUAL_COST_CULVERT_COST_12'
  1323. class='editInput ACTUAL_COST_CULVERT_COST_12' type='text' readonly='readonly' totalType='sum'/>
  1324. </td>
  1325. <td class='center'>
  1326. <input value='${monthvar.PAY_COST_CULVERT_COST_12}' onblur='editValue(this)' name='PAY_COST_CULVERT_COST_12'
  1327. class='editInput PAY_COST_CULVERT_COST_12' type='text' readonly='readonly' totalType='sum'/>
  1328. </td>
  1329. <td class='center'>
  1330. <input value='${monthvar.RATIO_CULVERT_COST_12}' name='RATIO_CULVERT_COST_12' class='percentCell RATIO_CULVERT_COST_12' type='text' readonly='readonly'
  1331. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CULVERT_COST_12}" />'
  1332. num1="ACTUAL_COST_CULVERT_COST_12" num2="CULVERT_COST"/>
  1333. </td>
  1334. <td class='center'>
  1335. <span class='rowSumCell ACTUAL_COST_CULVERT_COST' totalType='sum'></span>
  1336. </td>
  1337. <td class='center'>
  1338. <span class='rowSumCell PAY_COST_CULVERT_COST' totalType='sum'></span>
  1339. </td>
  1340. <td class='center'>
  1341. <span class='percentCell' num1="ACTUAL_COST_CULVERT_COST" num2="CULVERT_COST"></span>
  1342. </td>
  1343. </c:if>
  1344. </c:forEach>
  1345. </tr>
  1346. <tr class='edittr'>
  1347. <td class='center'><label class="num">7</label> </td>
  1348. <td class='center'>隧道</td>
  1349. <td class='center'>
  1350. <input value='${plancost.TUNNEL_COST}' class='TUNNEL_COST' type='text' readonly='readonly' totalType='sum'/>
  1351. </td>
  1352. <td class='center'></td>
  1353. <c:forEach items="${monthVarList}" var="monthvar" varStatus="vs">
  1354. <c:if test="${monthvar.type == 'TUNNEL_COST'}">
  1355. <td class='center' style='display:none;'>
  1356. <input value='${pd.YEAR}' name='YEAR' type='text' readonly='readonly'/>
  1357. </td>
  1358. <td class='center' style='display:none;'>
  1359. <input value='${pd.COMPANY}' name='COMPANY' type='text' readonly='readonly'/>
  1360. </td>
  1361. <td class='center' style='display:none;'>
  1362. <input value='${pd.COMPANY_ID}' name='COMPANY_ID' type='text' readonly='readonly'/>
  1363. </td>
  1364. <td class='center' style='display:none;'>
  1365. <input value='${pd.ROAD_ID}' name='ROAD_ID' type='text' readonly='readonly'/>
  1366. </td>
  1367. <td class='center' style='display:none;'>
  1368. <input value='${pd.ROAD}' name='ROAD' type='text' readonly='readonly'/>
  1369. </td>
  1370. <td class='center' style='display:none;'>
  1371. <input value='TUNNEL_COST' name='TYPE' type='text' readonly='readonly'/>
  1372. </td>
  1373. <td class='center'>
  1374. <input value='${monthvar.ACTUAL_COST_TUNNEL_COST_1}' onblur='editValue(this)' name='ACTUAL_COST_TUNNEL_COST_1'
  1375. class='editInput ACTUAL_COST_TUNNEL_COST_1' type='text' readonly='readonly' totalType='sum'/>
  1376. </td>
  1377. <td class='center'>
  1378. <input value='${monthvar.PAY_COST_TUNNEL_COST_1}' onblur='editValue(this)' name='PAY_COST_TUNNEL_COST_1'
  1379. class='editInput PAY_COST_TUNNEL_COST_1' type='text' readonly='readonly' totalType='sum'/>
  1380. </td>
  1381. <td class='center'>
  1382. <input value='${monthvar.RATIO_TUNNEL_COST_1}' name='RATIO_TUNNEL_COST_1' class='percentCell RATIO_TUNNEL_COST_1' type='text' readonly='readonly'
  1383. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_TUNNEL_COST_1}" />'
  1384. num1="ACTUAL_COST_TUNNEL_COST_1" num2="TUNNEL_COST"/>
  1385. </td>
  1386. <td class='center'>
  1387. <input value='${monthvar.ACTUAL_COST_TUNNEL_COST_2}' onblur='editValue(this)' name='ACTUAL_COST_TUNNEL_COST_2'
  1388. class='editInput ACTUAL_COST_TUNNEL_COST_2' type='text' readonly='readonly' totalType='sum'/>
  1389. </td>
  1390. <td class='center'>
  1391. <input value='${monthvar.PAY_COST_TUNNEL_COST_2}' onblur='editValue(this)' name='PAY_COST_TUNNEL_COST_2'
  1392. class='editInput PAY_COST_TUNNEL_COST_2' type='text' readonly='readonly' totalType='sum'/>
  1393. </td>
  1394. <td class='center'>
  1395. <input value='${monthvar.RATIO_TUNNEL_COST_2}' name='RATIO_TUNNEL_COST_2' class='percentCell RATIO_TUNNEL_COST_2' type='text' readonly='readonly'
  1396. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_TUNNEL_COST_2}" />'
  1397. num1="ACTUAL_COST_TUNNEL_COST_2" num2="TUNNEL_COST"/>
  1398. </td>
  1399. <td class='center'>
  1400. <input value='${monthvar.ACTUAL_COST_TUNNEL_COST_3}' onblur='editValue(this)' name='ACTUAL_COST_TUNNEL_COST_3'
  1401. class='editInput ACTUAL_COST_TUNNEL_COST_3' type='text' readonly='readonly' totalType='sum'/>
  1402. </td>
  1403. <td class='center'>
  1404. <input value='${monthvar.PAY_COST_TUNNEL_COST_3}' onblur='editValue(this)' name='PAY_COST_TUNNEL_COST_3'
  1405. class='editInput PAY_COST_TUNNEL_COST_3' type='text' readonly='readonly' totalType='sum'/>
  1406. </td>
  1407. <td class='center'>
  1408. <input value='${monthvar.RATIO_TUNNEL_COST_3}' name='RATIO_TUNNEL_COST_3' class='percentCell RATIO_TUNNEL_COST_3' type='text' readonly='readonly'
  1409. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_TUNNEL_COST_3}" />'
  1410. num1="ACTUAL_COST_TUNNEL_COST_3" num2="TUNNEL_COST"/>
  1411. </td>
  1412. <td class='center'>
  1413. <input value='${monthvar.ACTUAL_COST_TUNNEL_COST_4}' onblur='editValue(this)' name='ACTUAL_COST_TUNNEL_COST_4'
  1414. class='editInput ACTUAL_COST_TUNNEL_COST_4' type='text' readonly='readonly' totalType='sum'/>
  1415. </td>
  1416. <td class='center'>
  1417. <input value='${monthvar.PAY_COST_TUNNEL_COST_4}' onblur='editValue(this)' name='PAY_COST_TUNNEL_COST_4'
  1418. class='editInput PAY_COST_TUNNEL_COST_4' type='text' readonly='readonly' totalType='sum'/>
  1419. </td>
  1420. <td class='center'>
  1421. <input value='${monthvar.RATIO_TUNNEL_COST_4}' name='RATIO_TUNNEL_COST_4' class='percentCell RATIO_TUNNEL_COST_4' type='text' readonly='readonly'
  1422. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_TUNNEL_COST_4}" />'
  1423. num1="ACTUAL_COST_TUNNEL_COST_4" num2="TUNNEL_COST"/>
  1424. </td>
  1425. <td class='center'>
  1426. <input value='${monthvar.ACTUAL_COST_TUNNEL_COST_5}' onblur='editValue(this)' name='ACTUAL_COST_TUNNEL_COST_5'
  1427. class='editInput ACTUAL_COST_TUNNEL_COST_5' type='text' readonly='readonly' totalType='sum'/>
  1428. </td>
  1429. <td class='center'>
  1430. <input value='${monthvar.PAY_COST_TUNNEL_COST_5}' onblur='editValue(this)' name='PAY_COST_TUNNEL_COST_5'
  1431. class='editInput PAY_COST_TUNNEL_COST_5' type='text' readonly='readonly' totalType='sum'/>
  1432. </td>
  1433. <td class='center'>
  1434. <input value='${monthvar.RATIO_TUNNEL_COST_5}' name='RATIO_TUNNEL_COST_5' class='percentCell RATIO_TUNNEL_COST_5' type='text' readonly='readonly'
  1435. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_TUNNEL_COST_5}" />'
  1436. num1="ACTUAL_COST_TUNNEL_COST_5" num2="TUNNEL_COST"/>
  1437. </td>
  1438. <td class='center'>
  1439. <input value='${monthvar.ACTUAL_COST_TUNNEL_COST_6}' onblur='editValue(this)' name='ACTUAL_COST_TUNNEL_COST_6'
  1440. class='editInput ACTUAL_COST_TUNNEL_COST_6' type='text' readonly='readonly' totalType='sum'/>
  1441. </td>
  1442. <td class='center'>
  1443. <input value='${monthvar.PAY_COST_TUNNEL_COST_6}' onblur='editValue(this)' name='PAY_COST_TUNNEL_COST_6'
  1444. class='editInput PAY_COST_TUNNEL_COST_6' type='text' readonly='readonly' totalType='sum'/>
  1445. </td>
  1446. <td class='center'>
  1447. <input value='${monthvar.RATIO_TUNNEL_COST_6}' name='RATIO_TUNNEL_COST_6' class='percentCell RATIO_TUNNEL_COST_6' type='text' readonly='readonly'
  1448. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_TUNNEL_COST_6}" />'
  1449. num1="ACTUAL_COST_TUNNEL_COST_6" num2="TUNNEL_COST"/>
  1450. </td>
  1451. <td class='center'>
  1452. <input value='${monthvar.ACTUAL_COST_TUNNEL_COST_7}' onblur='editValue(this)' name='ACTUAL_COST_TUNNEL_COST_7'
  1453. class='editInput ACTUAL_COST_TUNNEL_COST_7' type='text' readonly='readonly' totalType='sum'/>
  1454. </td>
  1455. <td class='center'>
  1456. <input value='${monthvar.PAY_COST_TUNNEL_COST_7}' onblur='editValue(this)' name='PAY_COST_TUNNEL_COST_7'
  1457. class='editInput PAY_COST_TUNNEL_COST_7' type='text' readonly='readonly' totalType='sum'/>
  1458. </td>
  1459. <td class='center'>
  1460. <input value='${monthvar.RATIO_TUNNEL_COST_7}' name='RATIO_TUNNEL_COST_7' class='percentCell RATIO_TUNNEL_COST_7' type='text' readonly='readonly'
  1461. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_TUNNEL_COST_7}" />'
  1462. num1="ACTUAL_COST_TUNNEL_COST_7" num2="TUNNEL_COST"/>
  1463. </td>
  1464. <td class='center'>
  1465. <input value='${monthvar.ACTUAL_COST_TUNNEL_COST_8}' onblur='editValue(this)' name='ACTUAL_COST_TUNNEL_COST_8'
  1466. class='editInput ACTUAL_COST_TUNNEL_COST_8' type='text' readonly='readonly' totalType='sum'/>
  1467. </td>
  1468. <td class='center'>
  1469. <input value='${monthvar.PAY_COST_TUNNEL_COST_8}' onblur='editValue(this)' name='PAY_COST_TUNNEL_COST_8'
  1470. class='editInput PAY_COST_TUNNEL_COST_8' type='text' readonly='readonly' totalType='sum'/>
  1471. </td>
  1472. <td class='center'>
  1473. <input value='${monthvar.RATIO_TUNNEL_COST_8}' name='RATIO_TUNNEL_COST_8' class='percentCell RATIO_TUNNEL_COST_8' type='text' readonly='readonly'
  1474. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_TUNNEL_COST_8}" />'
  1475. num1="ACTUAL_COST_TUNNEL_COST_8" num2="TUNNEL_COST"/>
  1476. </td>
  1477. <td class='center'>
  1478. <input value='${monthvar.ACTUAL_COST_TUNNEL_COST_9}' onblur='editValue(this)' name='ACTUAL_COST_TUNNEL_COST_9'
  1479. class='editInput ACTUAL_COST_TUNNEL_COST_9' type='text' readonly='readonly' totalType='sum'/>
  1480. </td>
  1481. <td class='center'>
  1482. <input value='${monthvar.PAY_COST_TUNNEL_COST_9}' onblur='editValue(this)' name='PAY_COST_TUNNEL_COST_9'
  1483. class='editInput PAY_COST_TUNNEL_COST_9' type='text' readonly='readonly' totalType='sum'/>
  1484. </td>
  1485. <td class='center'>
  1486. <input value='${monthvar.RATIO_TUNNEL_COST_9}' name='RATIO_TUNNEL_COST_9' class='percentCell RATIO_TUNNEL_COST_9' type='text' readonly='readonly'
  1487. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_TUNNEL_COST_9}" />'
  1488. num1="ACTUAL_COST_TUNNEL_COST_9" num2="TUNNEL_COST"/>
  1489. </td>
  1490. <td class='center'>
  1491. <input value='${monthvar.ACTUAL_COST_TUNNEL_COST_10}' onblur='editValue(this)' name='ACTUAL_COST_TUNNEL_COST_10'
  1492. class='editInput ACTUAL_COST_TUNNEL_COST_10' type='text' readonly='readonly' totalType='sum'/>
  1493. </td>
  1494. <td class='center'>
  1495. <input value='${monthvar.PAY_COST_TUNNEL_COST_10}' onblur='editValue(this)' name='PAY_COST_TUNNEL_COST_10'
  1496. class='editInput PAY_COST_TUNNEL_COST_10' type='text' readonly='readonly' totalType='sum'/>
  1497. </td>
  1498. <td class='center'>
  1499. <input value='${monthvar.RATIO_TUNNEL_COST_10}' name='RATIO_TUNNEL_COST_10' class='percentCell RATIO_TUNNEL_COST_10' type='text' readonly='readonly'
  1500. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_TUNNEL_COST_10}" />'
  1501. num1="ACTUAL_COST_TUNNEL_COST_10" num2="TUNNEL_COST"/>
  1502. </td>
  1503. <td class='center'>
  1504. <input value='${monthvar.ACTUAL_COST_TUNNEL_COST_11}' onblur='editValue(this)' name='ACTUAL_COST_TUNNEL_COST_11'
  1505. class='editInput ACTUAL_COST_TUNNEL_COST_11' type='text' readonly='readonly' totalType='sum'/>
  1506. </td>
  1507. <td class='center'>
  1508. <input value='${monthvar.PAY_COST_TUNNEL_COST_11}' onblur='editValue(this)' name='PAY_COST_TUNNEL_COST_11'
  1509. class='editInput PAY_COST_TUNNEL_COST_11' type='text' readonly='readonly' totalType='sum'/>
  1510. </td>
  1511. <td class='center'>
  1512. <input value='${monthvar.RATIO_TUNNEL_COST_11}' name='RATIO_TUNNEL_COST_11' class='percentCell RATIO_TUNNEL_COST_11' type='text' readonly='readonly'
  1513. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_TUNNEL_COST_11}" />'
  1514. num1="ACTUAL_COST_TUNNEL_COST_11" num2="TUNNEL_COST"/>
  1515. </td>
  1516. <td class='center'>
  1517. <input value='${monthvar.ACTUAL_COST_TUNNEL_COST_12}' onblur='editValue(this)' name='ACTUAL_COST_TUNNEL_COST_12'
  1518. class='editInput ACTUAL_COST_TUNNEL_COST_12' type='text' readonly='readonly' totalType='sum'/>
  1519. </td>
  1520. <td class='center'>
  1521. <input value='${monthvar.PAY_COST_TUNNEL_COST_12}' onblur='editValue(this)' name='PAY_COST_TUNNEL_COST_12'
  1522. class='editInput PAY_COST_TUNNEL_COST_12' type='text' readonly='readonly' totalType='sum'/>
  1523. </td>
  1524. <td class='center'>
  1525. <input value='${monthvar.RATIO_TUNNEL_COST_12}' name='RATIO_TUNNEL_COST_12' class='percentCell RATIO_TUNNEL_COST_12' type='text' readonly='readonly'
  1526. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_TUNNEL_COST_12}" />'
  1527. num1="ACTUAL_COST_TUNNEL_COST_12" num2="TUNNEL_COST"/>
  1528. </td>
  1529. <td class='center'>
  1530. <span class='rowSumCell ACTUAL_COST_TUNNEL_COST' totalType='sum'></span>
  1531. </td>
  1532. <td class='center'>
  1533. <span class='rowSumCell PAY_COST_TUNNEL_COST' totalType='sum'></span>
  1534. </td>
  1535. <td class='center'>
  1536. <span class='percentCell' num1="ACTUAL_COST_TUNNEL_COST" num2="TUNNEL_COST"></span>
  1537. </td>
  1538. </c:if>
  1539. </c:forEach>
  1540. </tr>
  1541. <tr class='edittr'>
  1542. <td class='center'><label class="num">8</label> </td>
  1543. <td class='center'>绿化</td>
  1544. <td class='center'>
  1545. <input value='${plancost.GREEN_COST}' class='GREEN_COST' type='text' readonly='readonly' totalType='sum'/>
  1546. </td>
  1547. <td class='center'></td>
  1548. <c:forEach items="${monthVarList}" var="monthvar" varStatus="vs">
  1549. <c:if test="${monthvar.type == 'GREEN_COST'}">
  1550. <td class='center' style='display:none;'>
  1551. <input value='${pd.YEAR}' name='YEAR' type='text' readonly='readonly'/>
  1552. </td>
  1553. <td class='center' style='display:none;'>
  1554. <input value='${pd.COMPANY}' name='COMPANY' type='text' readonly='readonly'/>
  1555. </td>
  1556. <td class='center' style='display:none;'>
  1557. <input value='${pd.COMPANY_ID}' name='COMPANY_ID' type='text' readonly='readonly'/>
  1558. </td>
  1559. <td class='center' style='display:none;'>
  1560. <input value='${pd.ROAD_ID}' name='ROAD_ID' type='text' readonly='readonly'/>
  1561. </td>
  1562. <td class='center' style='display:none;'>
  1563. <input value='${pd.ROAD}' name='ROAD' type='text' readonly='readonly'/>
  1564. </td>
  1565. <td class='center' style='display:none;'>
  1566. <input value='GREEN_COST' name='TYPE' type='text' readonly='readonly'/>
  1567. </td>
  1568. <td class='center'>
  1569. <input value='${monthvar.ACTUAL_COST_GREEN_COST_1}' onblur='editValue(this)' name='ACTUAL_COST_GREEN_COST_1'
  1570. class='editInput ACTUAL_COST_GREEN_COST_1' type='text' readonly='readonly' totalType='sum'/>
  1571. </td>
  1572. <td class='center'>
  1573. <input value='${monthvar.PAY_COST_GREEN_COST_1}' onblur='editValue(this)' name='PAY_COST_GREEN_COST_1'
  1574. class='editInput PAY_COST_GREEN_COST_1' type='text' readonly='readonly' totalType='sum'/>
  1575. </td>
  1576. <td class='center'>
  1577. <input value='${monthvar.RATIO_GREEN_COST_1}' name='RATIO_GREEN_COST_1' class='percentCell RATIO_GREEN_COST_1' type='text' readonly='readonly'
  1578. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_GREEN_COST_1}" />'
  1579. num1="ACTUAL_COST_GREEN_COST_1" num2="GREEN_COST"/>
  1580. </td>
  1581. <td class='center'>
  1582. <input value='${monthvar.ACTUAL_COST_GREEN_COST_2}' onblur='editValue(this)' name='ACTUAL_COST_GREEN_COST_2'
  1583. class='editInput ACTUAL_COST_GREEN_COST_2' type='text' readonly='readonly' totalType='sum'/>
  1584. </td>
  1585. <td class='center'>
  1586. <input value='${monthvar.PAY_COST_GREEN_COST_2}' onblur='editValue(this)' name='PAY_COST_GREEN_COST_2'
  1587. class='editInput PAY_COST_GREEN_COST_2' type='text' readonly='readonly' totalType='sum'/>
  1588. </td>
  1589. <td class='center'>
  1590. <input value='${monthvar.RATIO_GREEN_COST_2}' name='RATIO_GREEN_COST_2' class='percentCell RATIO_GREEN_COST_2' type='text' readonly='readonly'
  1591. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_GREEN_COST_2}" />'
  1592. num1="ACTUAL_COST_GREEN_COST_2" num2="GREEN_COST"/>
  1593. </td>
  1594. <td class='center'>
  1595. <input value='${monthvar.ACTUAL_COST_GREEN_COST_3}' onblur='editValue(this)' name='ACTUAL_COST_GREEN_COST_3'
  1596. class='editInput ACTUAL_COST_GREEN_COST_3' type='text' readonly='readonly' totalType='sum'/>
  1597. </td>
  1598. <td class='center'>
  1599. <input value='${monthvar.PAY_COST_GREEN_COST_3}' onblur='editValue(this)' name='PAY_COST_GREEN_COST_3'
  1600. class='editInput PAY_COST_GREEN_COST_3' type='text' readonly='readonly' totalType='sum'/>
  1601. </td>
  1602. <td class='center'>
  1603. <input value='${monthvar.RATIO_GREEN_COST_3}' name='RATIO_GREEN_COST_3' class='percentCell RATIO_GREEN_COST_3' type='text' readonly='readonly'
  1604. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_GREEN_COST_3}" />'
  1605. num1="ACTUAL_COST_GREEN_COST_3" num2="GREEN_COST"/>
  1606. </td>
  1607. <td class='center'>
  1608. <input value='${monthvar.ACTUAL_COST_GREEN_COST_4}' onblur='editValue(this)' name='ACTUAL_COST_GREEN_COST_4'
  1609. class='editInput ACTUAL_COST_GREEN_COST_4' type='text' readonly='readonly' totalType='sum'/>
  1610. </td>
  1611. <td class='center'>
  1612. <input value='${monthvar.PAY_COST_GREEN_COST_4}' onblur='editValue(this)' name='PAY_COST_GREEN_COST_4'
  1613. class='editInput PAY_COST_GREEN_COST_4' type='text' readonly='readonly' totalType='sum'/>
  1614. </td>
  1615. <td class='center'>
  1616. <input value='${monthvar.RATIO_GREEN_COST_4}' name='RATIO_GREEN_COST_4' class='percentCell RATIO_GREEN_COST_4' type='text' readonly='readonly'
  1617. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_GREEN_COST_4}" />'
  1618. num1="ACTUAL_COST_GREEN_COST_4" num2="GREEN_COST"/>
  1619. </td>
  1620. <td class='center'>
  1621. <input value='${monthvar.ACTUAL_COST_GREEN_COST_5}' onblur='editValue(this)' name='ACTUAL_COST_GREEN_COST_5'
  1622. class='editInput ACTUAL_COST_GREEN_COST_5' type='text' readonly='readonly' totalType='sum'/>
  1623. </td>
  1624. <td class='center'>
  1625. <input value='${monthvar.PAY_COST_GREEN_COST_5}' onblur='editValue(this)' name='PAY_COST_GREEN_COST_5'
  1626. class='editInput PAY_COST_GREEN_COST_5' type='text' readonly='readonly' totalType='sum'/>
  1627. </td>
  1628. <td class='center'>
  1629. <input value='${monthvar.RATIO_GREEN_COST_5}' name='RATIO_GREEN_COST_5' class='percentCell RATIO_GREEN_COST_5' type='text' readonly='readonly'
  1630. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_GREEN_COST_5}" />'
  1631. num1="ACTUAL_COST_GREEN_COST_5" num2="GREEN_COST"/>
  1632. </td>
  1633. <td class='center'>
  1634. <input value='${monthvar.ACTUAL_COST_GREEN_COST_6}' onblur='editValue(this)' name='ACTUAL_COST_GREEN_COST_6'
  1635. class='editInput ACTUAL_COST_GREEN_COST_6' type='text' readonly='readonly' totalType='sum'/>
  1636. </td>
  1637. <td class='center'>
  1638. <input value='${monthvar.PAY_COST_GREEN_COST_6}' onblur='editValue(this)' name='PAY_COST_GREEN_COST_6'
  1639. class='editInput PAY_COST_GREEN_COST_6' type='text' readonly='readonly' totalType='sum'/>
  1640. </td>
  1641. <td class='center'>
  1642. <input value='${monthvar.RATIO_GREEN_COST_6}' name='RATIO_GREEN_COST_6' class='percentCell RATIO_GREEN_COST_6' type='text' readonly='readonly'
  1643. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_GREEN_COST_6}" />'
  1644. num1="ACTUAL_COST_GREEN_COST_6" num2="GREEN_COST"/>
  1645. </td>
  1646. <td class='center'>
  1647. <input value='${monthvar.ACTUAL_COST_GREEN_COST_7}' onblur='editValue(this)' name='ACTUAL_COST_GREEN_COST_7'
  1648. class='editInput ACTUAL_COST_GREEN_COST_7' type='text' readonly='readonly' totalType='sum'/>
  1649. </td>
  1650. <td class='center'>
  1651. <input value='${monthvar.PAY_COST_GREEN_COST_7}' onblur='editValue(this)' name='PAY_COST_GREEN_COST_7'
  1652. class='editInput PAY_COST_GREEN_COST_7' type='text' readonly='readonly' totalType='sum'/>
  1653. </td>
  1654. <td class='center'>
  1655. <input value='${monthvar.RATIO_GREEN_COST_7}' name='RATIO_GREEN_COST_7' class='percentCell RATIO_GREEN_COST_7' type='text' readonly='readonly'
  1656. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_GREEN_COST_7}" />'
  1657. num1="ACTUAL_COST_GREEN_COST_7" num2="GREEN_COST"/>
  1658. </td>
  1659. <td class='center'>
  1660. <input value='${monthvar.ACTUAL_COST_GREEN_COST_8}' onblur='editValue(this)' name='ACTUAL_COST_GREEN_COST_8'
  1661. class='editInput ACTUAL_COST_GREEN_COST_8' type='text' readonly='readonly' totalType='sum'/>
  1662. </td>
  1663. <td class='center'>
  1664. <input value='${monthvar.PAY_COST_GREEN_COST_8}' onblur='editValue(this)' name='PAY_COST_GREEN_COST_8'
  1665. class='editInput PAY_COST_GREEN_COST_8' type='text' readonly='readonly' totalType='sum'/>
  1666. </td>
  1667. <td class='center'>
  1668. <input value='${monthvar.RATIO_GREEN_COST_8}' name='RATIO_GREEN_COST_8' class='percentCell RATIO_GREEN_COST_8' type='text' readonly='readonly'
  1669. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_GREEN_COST_8}" />'
  1670. num1="ACTUAL_COST_GREEN_COST_8" num2="GREEN_COST"/>
  1671. </td>
  1672. <td class='center'>
  1673. <input value='${monthvar.ACTUAL_COST_GREEN_COST_9}' onblur='editValue(this)' name='ACTUAL_COST_GREEN_COST_9'
  1674. class='editInput ACTUAL_COST_GREEN_COST_9' type='text' readonly='readonly' totalType='sum'/>
  1675. </td>
  1676. <td class='center'>
  1677. <input value='${monthvar.PAY_COST_GREEN_COST_9}' onblur='editValue(this)' name='PAY_COST_GREEN_COST_9'
  1678. class='editInput PAY_COST_GREEN_COST_9' type='text' readonly='readonly' totalType='sum'/>
  1679. </td>
  1680. <td class='center'>
  1681. <input value='${monthvar.RATIO_GREEN_COST_9}' name='RATIO_GREEN_COST_9' class='percentCell RATIO_GREEN_COST_9' type='text' readonly='readonly'
  1682. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_GREEN_COST_9}" />'
  1683. num1="ACTUAL_COST_GREEN_COST_9" num2="GREEN_COST"/>
  1684. </td>
  1685. <td class='center'>
  1686. <input value='${monthvar.ACTUAL_COST_GREEN_COST_10}' onblur='editValue(this)' name='ACTUAL_COST_GREEN_COST_10'
  1687. class='editInput ACTUAL_COST_GREEN_COST_10' type='text' readonly='readonly' totalType='sum'/>
  1688. </td>
  1689. <td class='center'>
  1690. <input value='${monthvar.PAY_COST_GREEN_COST_10}' onblur='editValue(this)' name='PAY_COST_GREEN_COST_10'
  1691. class='editInput PAY_COST_GREEN_COST_10' type='text' readonly='readonly' totalType='sum'/>
  1692. </td>
  1693. <td class='center'>
  1694. <input value='${monthvar.RATIO_GREEN_COST_10}' name='RATIO_GREEN_COST_10' class='percentCell RATIO_GREEN_COST_10' type='text' readonly='readonly'
  1695. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_GREEN_COST_10}" />'
  1696. num1="ACTUAL_COST_GREEN_COST_10" num2="GREEN_COST"/>
  1697. </td>
  1698. <td class='center'>
  1699. <input value='${monthvar.ACTUAL_COST_GREEN_COST_11}' onblur='editValue(this)' name='ACTUAL_COST_GREEN_COST_11'
  1700. class='editInput ACTUAL_COST_GREEN_COST_11' type='text' readonly='readonly' totalType='sum'/>
  1701. </td>
  1702. <td class='center'>
  1703. <input value='${monthvar.PAY_COST_GREEN_COST_11}' onblur='editValue(this)' name='PAY_COST_GREEN_COST_11'
  1704. class='editInput PAY_COST_GREEN_COST_11' type='text' readonly='readonly' totalType='sum'/>
  1705. </td>
  1706. <td class='center'>
  1707. <input value='${monthvar.RATIO_GREEN_COST_11}' name='RATIO_GREEN_COST_11' class='percentCell RATIO_GREEN_COST_11' type='text' readonly='readonly'
  1708. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_GREEN_COST_11}" />'
  1709. num1="ACTUAL_COST_GREEN_COST_11" num2="GREEN_COST"/>
  1710. </td>
  1711. <td class='center'>
  1712. <input value='${monthvar.ACTUAL_COST_GREEN_COST_12}' onblur='editValue(this)' name='ACTUAL_COST_GREEN_COST_12'
  1713. class='editInput ACTUAL_COST_GREEN_COST_12' type='text' readonly='readonly' totalType='sum'/>
  1714. </td>
  1715. <td class='center'>
  1716. <input value='${monthvar.PAY_COST_GREEN_COST_12}' onblur='editValue(this)' name='PAY_COST_GREEN_COST_12'
  1717. class='editInput PAY_COST_GREEN_COST_12' type='text' readonly='readonly' totalType='sum'/>
  1718. </td>
  1719. <td class='center'>
  1720. <input value='${monthvar.RATIO_GREEN_COST_12}' name='RATIO_GREEN_COST_12' class='percentCell RATIO_GREEN_COST_12' type='text' readonly='readonly'
  1721. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_GREEN_COST_12}" />'
  1722. num1="ACTUAL_COST_GREEN_COST_12" num2="GREEN_COST"/>
  1723. </td>
  1724. <td class='center'>
  1725. <span class='rowSumCell ACTUAL_COST_GREEN_COST' totalType='sum'></span>
  1726. </td>
  1727. <td class='center'>
  1728. <span class='rowSumCell PAY_COST_GREEN_COST' totalType='sum'></span>
  1729. </td>
  1730. <td class='center'>
  1731. <span class='percentCell' num1="ACTUAL_COST_GREEN_COST" num2="GREEN_COST"></span>
  1732. </td>
  1733. </c:if>
  1734. </c:forEach>
  1735. </tr>
  1736. <tr class='edittr'>
  1737. <td class='center'><label class="num">9</label> </td>
  1738. <td class='center'>交安设施</td>
  1739. <td class='center'>
  1740. <input value='${plancost.SAFE_COST}' class='SAFE_COST' type='text' readonly='readonly' totalType='sum'/>
  1741. </td>
  1742. <td class='center'></td>
  1743. <c:forEach items="${monthVarList}" var="monthvar" varStatus="vs">
  1744. <c:if test="${monthvar.type == 'SAFE_COST'}">
  1745. <td class='center' style='display:none;'>
  1746. <input value='${pd.YEAR}' name='YEAR' type='text' readonly='readonly'/>
  1747. </td>
  1748. <td class='center' style='display:none;'>
  1749. <input value='${pd.COMPANY}' name='COMPANY' type='text' readonly='readonly'/>
  1750. </td>
  1751. <td class='center' style='display:none;'>
  1752. <input value='${pd.COMPANY_ID}' name='COMPANY_ID' type='text' readonly='readonly'/>
  1753. </td>
  1754. <td class='center' style='display:none;'>
  1755. <input value='${pd.ROAD_ID}' name='ROAD_ID' type='text' readonly='readonly'/>
  1756. </td>
  1757. <td class='center' style='display:none;'>
  1758. <input value='${pd.ROAD}' name='ROAD' type='text' readonly='readonly'/>
  1759. </td>
  1760. <td class='center' style='display:none;'>
  1761. <input value='SAFE_COST' name='TYPE' type='text' readonly='readonly'/>
  1762. </td>
  1763. <td class='center'>
  1764. <input value='${monthvar.ACTUAL_COST_SAFE_COST_1}' onblur='editValue(this)' name='ACTUAL_COST_SAFE_COST_1'
  1765. class='editInput ACTUAL_COST_SAFE_COST_1' type='text' readonly='readonly' totalType='sum'/>
  1766. </td>
  1767. <td class='center'>
  1768. <input value='${monthvar.PAY_COST_SAFE_COST_1}' onblur='editValue(this)' name='PAY_COST_SAFE_COST_1'
  1769. class='editInput PAY_COST_SAFE_COST_1' type='text' readonly='readonly' totalType='sum'/>
  1770. </td>
  1771. <td class='center'>
  1772. <input value='${monthvar.RATIO_SAFE_COST_1}' name='RATIO_SAFE_COST_1' class='percentCell RATIO_SAFE_COST_1' type='text' readonly='readonly'
  1773. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SAFE_COST_1}" />'
  1774. num1="ACTUAL_COST_SAFE_COST_1" num2="SAFE_COST"/>
  1775. </td>
  1776. <td class='center'>
  1777. <input value='${monthvar.ACTUAL_COST_SAFE_COST_2}' onblur='editValue(this)' name='ACTUAL_COST_SAFE_COST_2'
  1778. class='editInput ACTUAL_COST_SAFE_COST_2' type='text' readonly='readonly' totalType='sum'/>
  1779. </td>
  1780. <td class='center'>
  1781. <input value='${monthvar.PAY_COST_SAFE_COST_2}' onblur='editValue(this)' name='PAY_COST_SAFE_COST_2'
  1782. class='editInput PAY_COST_SAFE_COST_2' type='text' readonly='readonly' totalType='sum'/>
  1783. </td>
  1784. <td class='center'>
  1785. <input value='${monthvar.RATIO_SAFE_COST_2}' name='RATIO_SAFE_COST_2' class='percentCell RATIO_SAFE_COST_2' type='text' readonly='readonly'
  1786. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SAFE_COST_2}" />'
  1787. num1="ACTUAL_COST_SAFE_COST_2" num2="SAFE_COST"/>
  1788. </td>
  1789. <td class='center'>
  1790. <input value='${monthvar.ACTUAL_COST_SAFE_COST_3}' onblur='editValue(this)' name='ACTUAL_COST_SAFE_COST_3'
  1791. class='editInput ACTUAL_COST_SAFE_COST_3' type='text' readonly='readonly' totalType='sum'/>
  1792. </td>
  1793. <td class='center'>
  1794. <input value='${monthvar.PAY_COST_SAFE_COST_3}' onblur='editValue(this)' name='PAY_COST_SAFE_COST_3'
  1795. class='editInput PAY_COST_SAFE_COST_3' type='text' readonly='readonly' totalType='sum'/>
  1796. </td>
  1797. <td class='center'>
  1798. <input value='${monthvar.RATIO_SAFE_COST_3}' name='RATIO_SAFE_COST_3' class='percentCell RATIO_SAFE_COST_3' type='text' readonly='readonly'
  1799. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SAFE_COST_3}" />'
  1800. num1="ACTUAL_COST_SAFE_COST_3" num2="SAFE_COST"/>
  1801. </td>
  1802. <td class='center'>
  1803. <input value='${monthvar.ACTUAL_COST_SAFE_COST_4}' onblur='editValue(this)' name='ACTUAL_COST_SAFE_COST_4'
  1804. class='editInput ACTUAL_COST_SAFE_COST_4' type='text' readonly='readonly' totalType='sum'/>
  1805. </td>
  1806. <td class='center'>
  1807. <input value='${monthvar.PAY_COST_SAFE_COST_4}' onblur='editValue(this)' name='PAY_COST_SAFE_COST_4'
  1808. class='editInput PAY_COST_SAFE_COST_4' type='text' readonly='readonly' totalType='sum'/>
  1809. </td>
  1810. <td class='center'>
  1811. <input value='${monthvar.RATIO_SAFE_COST_4}' name='RATIO_SAFE_COST_4' class='percentCell RATIO_SAFE_COST_4' type='text' readonly='readonly'
  1812. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SAFE_COST_4}" />'
  1813. num1="ACTUAL_COST_SAFE_COST_4" num2="SAFE_COST"/>
  1814. </td>
  1815. <td class='center'>
  1816. <input value='${monthvar.ACTUAL_COST_SAFE_COST_5}' onblur='editValue(this)' name='ACTUAL_COST_SAFE_COST_5'
  1817. class='editInput ACTUAL_COST_SAFE_COST_5' type='text' readonly='readonly' totalType='sum'/>
  1818. </td>
  1819. <td class='center'>
  1820. <input value='${monthvar.PAY_COST_SAFE_COST_5}' onblur='editValue(this)' name='PAY_COST_SAFE_COST_5'
  1821. class='editInput PAY_COST_SAFE_COST_5' type='text' readonly='readonly' totalType='sum'/>
  1822. </td>
  1823. <td class='center'>
  1824. <input value='${monthvar.RATIO_SAFE_COST_5}' name='RATIO_SAFE_COST_5' class='percentCell RATIO_SAFE_COST_5' type='text' readonly='readonly'
  1825. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SAFE_COST_5}" />'
  1826. num1="ACTUAL_COST_SAFE_COST_5" num2="SAFE_COST"/>
  1827. </td>
  1828. <td class='center'>
  1829. <input value='${monthvar.ACTUAL_COST_SAFE_COST_6}' onblur='editValue(this)' name='ACTUAL_COST_SAFE_COST_6'
  1830. class='editInput ACTUAL_COST_SAFE_COST_6' type='text' readonly='readonly' totalType='sum'/>
  1831. </td>
  1832. <td class='center'>
  1833. <input value='${monthvar.PAY_COST_SAFE_COST_6}' onblur='editValue(this)' name='PAY_COST_SAFE_COST_6'
  1834. class='editInput PAY_COST_SAFE_COST_6' type='text' readonly='readonly' totalType='sum'/>
  1835. </td>
  1836. <td class='center'>
  1837. <input value='${monthvar.RATIO_SAFE_COST_6}' name='RATIO_SAFE_COST_6' class='percentCell RATIO_SAFE_COST_6' type='text' readonly='readonly'
  1838. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SAFE_COST_6}" />'
  1839. num1="ACTUAL_COST_SAFE_COST_6" num2="SAFE_COST"/>
  1840. </td>
  1841. <td class='center'>
  1842. <input value='${monthvar.ACTUAL_COST_SAFE_COST_7}' onblur='editValue(this)' name='ACTUAL_COST_SAFE_COST_7'
  1843. class='editInput ACTUAL_COST_SAFE_COST_7' type='text' readonly='readonly' totalType='sum'/>
  1844. </td>
  1845. <td class='center'>
  1846. <input value='${monthvar.PAY_COST_SAFE_COST_7}' onblur='editValue(this)' name='PAY_COST_SAFE_COST_7'
  1847. class='editInput PAY_COST_SAFE_COST_7' type='text' readonly='readonly' totalType='sum'/>
  1848. </td>
  1849. <td class='center'>
  1850. <input value='${monthvar.RATIO_SAFE_COST_7}' name='RATIO_SAFE_COST_7' class='percentCell RATIO_SAFE_COST_7' type='text' readonly='readonly'
  1851. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SAFE_COST_7}" />'
  1852. num1="ACTUAL_COST_SAFE_COST_7" num2="SAFE_COST"/>
  1853. </td>
  1854. <td class='center'>
  1855. <input value='${monthvar.ACTUAL_COST_SAFE_COST_8}' onblur='editValue(this)' name='ACTUAL_COST_SAFE_COST_8'
  1856. class='editInput ACTUAL_COST_SAFE_COST_8' type='text' readonly='readonly' totalType='sum'/>
  1857. </td>
  1858. <td class='center'>
  1859. <input value='${monthvar.PAY_COST_SAFE_COST_8}' onblur='editValue(this)' name='PAY_COST_SAFE_COST_8'
  1860. class='editInput PAY_COST_SAFE_COST_8' type='text' readonly='readonly' totalType='sum'/>
  1861. </td>
  1862. <td class='center'>
  1863. <input value='${monthvar.RATIO_SAFE_COST_8}' name='RATIO_SAFE_COST_8' class='percentCell RATIO_SAFE_COST_8' type='text' readonly='readonly'
  1864. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SAFE_COST_8}" />'
  1865. num1="ACTUAL_COST_SAFE_COST_8" num2="SAFE_COST"/>
  1866. </td>
  1867. <td class='center'>
  1868. <input value='${monthvar.ACTUAL_COST_SAFE_COST_9}' onblur='editValue(this)' name='ACTUAL_COST_SAFE_COST_9'
  1869. class='editInput ACTUAL_COST_SAFE_COST_9' type='text' readonly='readonly' totalType='sum'/>
  1870. </td>
  1871. <td class='center'>
  1872. <input value='${monthvar.PAY_COST_SAFE_COST_9}' onblur='editValue(this)' name='PAY_COST_SAFE_COST_9'
  1873. class='editInput PAY_COST_SAFE_COST_9' type='text' readonly='readonly' totalType='sum'/>
  1874. </td>
  1875. <td class='center'>
  1876. <input value='${monthvar.RATIO_SAFE_COST_9}' name='RATIO_SAFE_COST_9' class='percentCell RATIO_SAFE_COST_9' type='text' readonly='readonly'
  1877. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SAFE_COST_9}" />'
  1878. num1="ACTUAL_COST_SAFE_COST_9" num2="SAFE_COST"/>
  1879. </td>
  1880. <td class='center'>
  1881. <input value='${monthvar.ACTUAL_COST_SAFE_COST_10}' onblur='editValue(this)' name='ACTUAL_COST_SAFE_COST_10'
  1882. class='editInput ACTUAL_COST_SAFE_COST_10' type='text' readonly='readonly' totalType='sum'/>
  1883. </td>
  1884. <td class='center'>
  1885. <input value='${monthvar.PAY_COST_SAFE_COST_10}' onblur='editValue(this)' name='PAY_COST_SAFE_COST_10'
  1886. class='editInput PAY_COST_SAFE_COST_10' type='text' readonly='readonly' totalType='sum'/>
  1887. </td>
  1888. <td class='center'>
  1889. <input value='${monthvar.RATIO_SAFE_COST_10}' name='RATIO_SAFE_COST_10' class='percentCell RATIO_SAFE_COST_10' type='text' readonly='readonly'
  1890. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SAFE_COST_10}" />'
  1891. num1="ACTUAL_COST_SAFE_COST_10" num2="SAFE_COST"/>
  1892. </td>
  1893. <td class='center'>
  1894. <input value='${monthvar.ACTUAL_COST_SAFE_COST_11}' onblur='editValue(this)' name='ACTUAL_COST_SAFE_COST_11'
  1895. class='editInput ACTUAL_COST_SAFE_COST_11' type='text' readonly='readonly' totalType='sum'/>
  1896. </td>
  1897. <td class='center'>
  1898. <input value='${monthvar.PAY_COST_SAFE_COST_11}' onblur='editValue(this)' name='PAY_COST_SAFE_COST_11'
  1899. class='editInput PAY_COST_SAFE_COST_11' type='text' readonly='readonly' totalType='sum'/>
  1900. </td>
  1901. <td class='center'>
  1902. <input value='${monthvar.RATIO_SAFE_COST_11}' name='RATIO_SAFE_COST_11' class='percentCell RATIO_SAFE_COST_11' type='text' readonly='readonly'
  1903. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SAFE_COST_11}" />'
  1904. num1="ACTUAL_COST_SAFE_COST_11" num2="SAFE_COST"/>
  1905. </td>
  1906. <td class='center'>
  1907. <input value='${monthvar.ACTUAL_COST_SAFE_COST_12}' onblur='editValue(this)' name='ACTUAL_COST_SAFE_COST_12'
  1908. class='editInput ACTUAL_COST_SAFE_COST_12' type='text' readonly='readonly' totalType='sum'/>
  1909. </td>
  1910. <td class='center'>
  1911. <input value='${monthvar.PAY_COST_SAFE_COST_12}' onblur='editValue(this)' name='PAY_COST_SAFE_COST_12'
  1912. class='editInput PAY_COST_SAFE_COST_12' type='text' readonly='readonly' totalType='sum'/>
  1913. </td>
  1914. <td class='center'>
  1915. <input value='${monthvar.RATIO_SAFE_COST_12}' name='RATIO_SAFE_COST_12' class='percentCell RATIO_SAFE_COST_12' type='text' readonly='readonly'
  1916. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_SAFE_COST_12}" />'
  1917. num1="ACTUAL_COST_SAFE_COST_12" num2="SAFE_COST"/>
  1918. </td>
  1919. <td class='center'>
  1920. <span class='rowSumCell ACTUAL_COST_SAFE_COST' totalType='sum'></span>
  1921. </td>
  1922. <td class='center'>
  1923. <span class='rowSumCell PAY_COST_SAFE_COST' totalType='sum'></span>
  1924. </td>
  1925. <td class='center'>
  1926. <span class='percentCell' num1="ACTUAL_COST_SAFE_COST" num2="SAFE_COST"></span>
  1927. </td>
  1928. </c:if>
  1929. </c:forEach>
  1930. </tr>
  1931. <tr class='edittr'>
  1932. <td class='center'><label class="num">10</label> </td>
  1933. <td class='center'>沿线设施</td>
  1934. <td class='center'>
  1935. <input value='${plancost.LINE_COST}' class='LINE_COST' type='text' readonly='readonly' totalType='sum'/>
  1936. </td>
  1937. <td class='center'></td>
  1938. <c:forEach items="${monthVarList}" var="monthvar" varStatus="vs">
  1939. <c:if test="${monthvar.type == 'LINE_COST'}">
  1940. <td class='center' style='display:none;'>
  1941. <input value='${pd.YEAR}' name='YEAR' type='text' readonly='readonly'/>
  1942. </td>
  1943. <td class='center' style='display:none;'>
  1944. <input value='${pd.COMPANY}' name='COMPANY' type='text' readonly='readonly'/>
  1945. </td>
  1946. <td class='center' style='display:none;'>
  1947. <input value='${pd.COMPANY_ID}' name='COMPANY_ID' type='text' readonly='readonly'/>
  1948. </td>
  1949. <td class='center' style='display:none;'>
  1950. <input value='${pd.ROAD_ID}' name='ROAD_ID' type='text' readonly='readonly'/>
  1951. </td>
  1952. <td class='center' style='display:none;'>
  1953. <input value='${pd.ROAD}' name='ROAD' type='text' readonly='readonly'/>
  1954. </td>
  1955. <td class='center' style='display:none;'>
  1956. <input value='LINE_COST' name='TYPE' type='text' readonly='readonly'/>
  1957. </td>
  1958. <td class='center'>
  1959. <input value='${monthvar.ACTUAL_COST_LINE_COST_1}' onblur='editValue(this)' name='ACTUAL_COST_LINE_COST_1'
  1960. class='editInput ACTUAL_COST_LINE_COST_1' type='text' readonly='readonly' totalType='sum'/>
  1961. </td>
  1962. <td class='center'>
  1963. <input value='${monthvar.PAY_COST_LINE_COST_1}' onblur='editValue(this)' name='PAY_COST_LINE_COST_1'
  1964. class='editInput PAY_COST_LINE_COST_1' type='text' readonly='readonly' totalType='sum'/>
  1965. </td>
  1966. <td class='center'>
  1967. <input value='${monthvar.RATIO_LINE_COST_1}' name='RATIO_LINE_COST_1' class='percentCell RATIO_LINE_COST_1' type='text' readonly='readonly'
  1968. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_LINE_COST_1}" />'
  1969. num1="ACTUAL_COST_LINE_COST_1" num2="LINE_COST"/>
  1970. </td>
  1971. <td class='center'>
  1972. <input value='${monthvar.ACTUAL_COST_LINE_COST_2}' onblur='editValue(this)' name='ACTUAL_COST_LINE_COST_2'
  1973. class='editInput ACTUAL_COST_LINE_COST_2' type='text' readonly='readonly' totalType='sum'/>
  1974. </td>
  1975. <td class='center'>
  1976. <input value='${monthvar.PAY_COST_LINE_COST_2}' onblur='editValue(this)' name='PAY_COST_LINE_COST_2'
  1977. class='editInput PAY_COST_LINE_COST_2' type='text' readonly='readonly' totalType='sum'/>
  1978. </td>
  1979. <td class='center'>
  1980. <input value='${monthvar.RATIO_LINE_COST_2}' name='RATIO_LINE_COST_2' class='percentCell RATIO_LINE_COST_2' type='text' readonly='readonly'
  1981. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_LINE_COST_2}" />'
  1982. num1="ACTUAL_COST_LINE_COST_2" num2="LINE_COST"/>
  1983. </td>
  1984. <td class='center'>
  1985. <input value='${monthvar.ACTUAL_COST_LINE_COST_3}' onblur='editValue(this)' name='ACTUAL_COST_LINE_COST_3'
  1986. class='editInput ACTUAL_COST_LINE_COST_3' type='text' readonly='readonly' totalType='sum'/>
  1987. </td>
  1988. <td class='center'>
  1989. <input value='${monthvar.PAY_COST_LINE_COST_3}' onblur='editValue(this)' name='PAY_COST_LINE_COST_3'
  1990. class='editInput PAY_COST_LINE_COST_3' type='text' readonly='readonly' totalType='sum'/>
  1991. </td>
  1992. <td class='center'>
  1993. <input value='${monthvar.RATIO_LINE_COST_3}' name='RATIO_LINE_COST_3' class='percentCell RATIO_LINE_COST_3' type='text' readonly='readonly'
  1994. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_LINE_COST_3}" />'
  1995. num1="ACTUAL_COST_LINE_COST_3" num2="LINE_COST"/>
  1996. </td>
  1997. <td class='center'>
  1998. <input value='${monthvar.ACTUAL_COST_LINE_COST_4}' onblur='editValue(this)' name='ACTUAL_COST_LINE_COST_4'
  1999. class='editInput ACTUAL_COST_LINE_COST_4' type='text' readonly='readonly' totalType='sum'/>
  2000. </td>
  2001. <td class='center'>
  2002. <input value='${monthvar.PAY_COST_LINE_COST_4}' onblur='editValue(this)' name='PAY_COST_LINE_COST_4'
  2003. class='editInput PAY_COST_LINE_COST_4' type='text' readonly='readonly' totalType='sum'/>
  2004. </td>
  2005. <td class='center'>
  2006. <input value='${monthvar.RATIO_LINE_COST_4}' name='RATIO_LINE_COST_4' class='percentCell RATIO_LINE_COST_4' type='text' readonly='readonly'
  2007. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_LINE_COST_4}" />'
  2008. num1="ACTUAL_COST_LINE_COST_4" num2="LINE_COST"/>
  2009. </td>
  2010. <td class='center'>
  2011. <input value='${monthvar.ACTUAL_COST_LINE_COST_5}' onblur='editValue(this)' name='ACTUAL_COST_LINE_COST_5'
  2012. class='editInput ACTUAL_COST_LINE_COST_5' type='text' readonly='readonly' totalType='sum'/>
  2013. </td>
  2014. <td class='center'>
  2015. <input value='${monthvar.PAY_COST_LINE_COST_5}' onblur='editValue(this)' name='PAY_COST_LINE_COST_5'
  2016. class='editInput PAY_COST_LINE_COST_5' type='text' readonly='readonly' totalType='sum'/>
  2017. </td>
  2018. <td class='center'>
  2019. <input value='${monthvar.RATIO_LINE_COST_5}' name='RATIO_LINE_COST_5' class='percentCell RATIO_LINE_COST_5' type='text' readonly='readonly'
  2020. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_LINE_COST_5}" />'
  2021. num1="ACTUAL_COST_LINE_COST_5" num2="LINE_COST"/>
  2022. </td>
  2023. <td class='center'>
  2024. <input value='${monthvar.ACTUAL_COST_LINE_COST_6}' onblur='editValue(this)' name='ACTUAL_COST_LINE_COST_6'
  2025. class='editInput ACTUAL_COST_LINE_COST_6' type='text' readonly='readonly' totalType='sum'/>
  2026. </td>
  2027. <td class='center'>
  2028. <input value='${monthvar.PAY_COST_LINE_COST_6}' onblur='editValue(this)' name='PAY_COST_LINE_COST_6'
  2029. class='editInput PAY_COST_LINE_COST_6' type='text' readonly='readonly' totalType='sum'/>
  2030. </td>
  2031. <td class='center'>
  2032. <input value='${monthvar.RATIO_LINE_COST_6}' name='RATIO_LINE_COST_6' class='percentCell RATIO_LINE_COST_6' type='text' readonly='readonly'
  2033. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_LINE_COST_6}" />'
  2034. num1="ACTUAL_COST_LINE_COST_6" num2="LINE_COST"/>
  2035. </td>
  2036. <td class='center'>
  2037. <input value='${monthvar.ACTUAL_COST_LINE_COST_7}' onblur='editValue(this)' name='ACTUAL_COST_LINE_COST_7'
  2038. class='editInput ACTUAL_COST_LINE_COST_7' type='text' readonly='readonly' totalType='sum'/>
  2039. </td>
  2040. <td class='center'>
  2041. <input value='${monthvar.PAY_COST_LINE_COST_7}' onblur='editValue(this)' name='PAY_COST_LINE_COST_7'
  2042. class='editInput PAY_COST_LINE_COST_7' type='text' readonly='readonly' totalType='sum'/>
  2043. </td>
  2044. <td class='center'>
  2045. <input value='${monthvar.RATIO_LINE_COST_7}' name='RATIO_LINE_COST_7' class='percentCell RATIO_LINE_COST_7' type='text' readonly='readonly'
  2046. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_LINE_COST_7}" />'
  2047. num1="ACTUAL_COST_LINE_COST_7" num2="LINE_COST"/>
  2048. </td>
  2049. <td class='center'>
  2050. <input value='${monthvar.ACTUAL_COST_LINE_COST_8}' onblur='editValue(this)' name='ACTUAL_COST_LINE_COST_8'
  2051. class='editInput ACTUAL_COST_LINE_COST_8' type='text' readonly='readonly' totalType='sum'/>
  2052. </td>
  2053. <td class='center'>
  2054. <input value='${monthvar.PAY_COST_LINE_COST_8}' onblur='editValue(this)' name='PAY_COST_LINE_COST_8'
  2055. class='editInput PAY_COST_LINE_COST_8' type='text' readonly='readonly' totalType='sum'/>
  2056. </td>
  2057. <td class='center'>
  2058. <input value='${monthvar.RATIO_LINE_COST_8}' name='RATIO_LINE_COST_8' class='percentCell RATIO_LINE_COST_8' type='text' readonly='readonly'
  2059. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_LINE_COST_8}" />'
  2060. num1="ACTUAL_COST_LINE_COST_8" num2="LINE_COST"/>
  2061. </td>
  2062. <td class='center'>
  2063. <input value='${monthvar.ACTUAL_COST_LINE_COST_9}' onblur='editValue(this)' name='ACTUAL_COST_LINE_COST_9'
  2064. class='editInput ACTUAL_COST_LINE_COST_9' type='text' readonly='readonly' totalType='sum'/>
  2065. </td>
  2066. <td class='center'>
  2067. <input value='${monthvar.PAY_COST_LINE_COST_9}' onblur='editValue(this)' name='PAY_COST_LINE_COST_9'
  2068. class='editInput PAY_COST_LINE_COST_9' type='text' readonly='readonly' totalType='sum'/>
  2069. </td>
  2070. <td class='center'>
  2071. <input value='${monthvar.RATIO_LINE_COST_9}' name='RATIO_LINE_COST_9' class='percentCell RATIO_LINE_COST_9' type='text' readonly='readonly'
  2072. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_LINE_COST_9}" />'
  2073. num1="ACTUAL_COST_LINE_COST_9" num2="LINE_COST"/>
  2074. </td>
  2075. <td class='center'>
  2076. <input value='${monthvar.ACTUAL_COST_LINE_COST_10}' onblur='editValue(this)' name='ACTUAL_COST_LINE_COST_10'
  2077. class='editInput ACTUAL_COST_LINE_COST_10' type='text' readonly='readonly' totalType='sum'/>
  2078. </td>
  2079. <td class='center'>
  2080. <input value='${monthvar.PAY_COST_LINE_COST_10}' onblur='editValue(this)' name='PAY_COST_LINE_COST_10'
  2081. class='editInput PAY_COST_LINE_COST_10' type='text' readonly='readonly' totalType='sum'/>
  2082. </td>
  2083. <td class='center'>
  2084. <input value='${monthvar.RATIO_LINE_COST_10}' name='RATIO_LINE_COST_10' class='percentCell RATIO_LINE_COST_10' type='text' readonly='readonly'
  2085. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_LINE_COST_10}" />'
  2086. num1="ACTUAL_COST_LINE_COST_10" num2="LINE_COST"/>
  2087. </td>
  2088. <td class='center'>
  2089. <input value='${monthvar.ACTUAL_COST_LINE_COST_11}' onblur='editValue(this)' name='ACTUAL_COST_LINE_COST_11'
  2090. class='editInput ACTUAL_COST_LINE_COST_11' type='text' readonly='readonly' totalType='sum'/>
  2091. </td>
  2092. <td class='center'>
  2093. <input value='${monthvar.PAY_COST_LINE_COST_11}' onblur='editValue(this)' name='PAY_COST_LINE_COST_11'
  2094. class='editInput PAY_COST_LINE_COST_11' type='text' readonly='readonly' totalType='sum'/>
  2095. </td>
  2096. <td class='center'>
  2097. <input value='${monthvar.RATIO_LINE_COST_11}' name='RATIO_LINE_COST_11' class='percentCell RATIO_LINE_COST_11' type='text' readonly='readonly'
  2098. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_LINE_COST_11}" />'
  2099. num1="ACTUAL_COST_LINE_COST_11" num2="LINE_COST"/>
  2100. </td>
  2101. <td class='center'>
  2102. <input value='${monthvar.ACTUAL_COST_LINE_COST_12}' onblur='editValue(this)' name='ACTUAL_COST_LINE_COST_12'
  2103. class='editInput ACTUAL_COST_LINE_COST_12' type='text' readonly='readonly' totalType='sum'/>
  2104. </td>
  2105. <td class='center'>
  2106. <input value='${monthvar.PAY_COST_LINE_COST_12}' onblur='editValue(this)' name='PAY_COST_LINE_COST_12'
  2107. class='editInput PAY_COST_LINE_COST_12' type='text' readonly='readonly' totalType='sum'/>
  2108. </td>
  2109. <td class='center'>
  2110. <input value='${monthvar.RATIO_LINE_COST_12}' name='RATIO_LINE_COST_12' class='percentCell RATIO_LINE_COST_12' type='text' readonly='readonly'
  2111. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_LINE_COST_12}" />'
  2112. num1="ACTUAL_COST_LINE_COST_12" num2="LINE_COST"/>
  2113. </td>
  2114. <td class='center'>
  2115. <span class='rowSumCell ACTUAL_COST_LINE_COST' totalType='sum'></span>
  2116. </td>
  2117. <td class='center'>
  2118. <span class='rowSumCell PAY_COST_LINE_COST' totalType='sum'></span>
  2119. </td>
  2120. <td class='center'>
  2121. <span class='percentCell' num1="ACTUAL_COST_LINE_COST" num2="LINE_COST"></span>
  2122. </td>
  2123. </c:if>
  2124. </c:forEach>
  2125. </tr>
  2126. <tr class='edittr'>
  2127. <td class='center'><label class="num">11</label> </td>
  2128. <td class='center'>养护车辆设备</td>
  2129. <td class='center'>
  2130. <input value='${plancost.CAR_COST}' class='CAR_COST' type='text' readonly='readonly' totalType='sum'/>
  2131. </td>
  2132. <td class='center'></td>
  2133. <c:forEach items="${monthVarList}" var="monthvar" varStatus="vs">
  2134. <c:if test="${monthvar.type == 'CAR_COST'}">
  2135. <td class='center' style='display:none;'>
  2136. <input value='${pd.YEAR}' name='YEAR' type='text' readonly='readonly'/>
  2137. </td>
  2138. <td class='center' style='display:none;'>
  2139. <input value='${pd.COMPANY}' name='COMPANY' type='text' readonly='readonly'/>
  2140. </td>
  2141. <td class='center' style='display:none;'>
  2142. <input value='${pd.COMPANY_ID}' name='COMPANY_ID' type='text' readonly='readonly'/>
  2143. </td>
  2144. <td class='center' style='display:none;'>
  2145. <input value='${pd.ROAD_ID}' name='ROAD_ID' type='text' readonly='readonly'/>
  2146. </td>
  2147. <td class='center' style='display:none;'>
  2148. <input value='${pd.ROAD}' name='ROAD' type='text' readonly='readonly'/>
  2149. </td>
  2150. <td class='center' style='display:none;'>
  2151. <input value='CAR_COST' name='TYPE' type='text' readonly='readonly'/>
  2152. </td>
  2153. <td class='center'>
  2154. <input value='${monthvar.ACTUAL_COST_CAR_COST_1}' onblur='editValue(this)' name='ACTUAL_COST_CAR_COST_1'
  2155. class='editInput ACTUAL_COST_CAR_COST_1' type='text' readonly='readonly' totalType='sum'/>
  2156. </td>
  2157. <td class='center'>
  2158. <input value='${monthvar.PAY_COST_CAR_COST_1}' onblur='editValue(this)' name='PAY_COST_CAR_COST_1'
  2159. class='editInput PAY_COST_CAR_COST_1' type='text' readonly='readonly' totalType='sum'/>
  2160. </td>
  2161. <td class='center'>
  2162. <input value='${monthvar.RATIO_CAR_COST_1}' name='RATIO_CAR_COST_1' class='percentCell RATIO_CAR_COST_1' type='text' readonly='readonly'
  2163. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CAR_COST_1}" />'
  2164. num1="ACTUAL_COST_CAR_COST_1" num2="CAR_COST"/>
  2165. </td>
  2166. <td class='center'>
  2167. <input value='${monthvar.ACTUAL_COST_CAR_COST_2}' onblur='editValue(this)' name='ACTUAL_COST_CAR_COST_2'
  2168. class='editInput ACTUAL_COST_CAR_COST_2' type='text' readonly='readonly' totalType='sum'/>
  2169. </td>
  2170. <td class='center'>
  2171. <input value='${monthvar.PAY_COST_CAR_COST_2}' onblur='editValue(this)' name='PAY_COST_CAR_COST_2'
  2172. class='editInput PAY_COST_CAR_COST_2' type='text' readonly='readonly' totalType='sum'/>
  2173. </td>
  2174. <td class='center'>
  2175. <input value='${monthvar.RATIO_CAR_COST_2}' name='RATIO_CAR_COST_2' class='percentCell RATIO_CAR_COST_2' type='text' readonly='readonly'
  2176. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CAR_COST_2}" />'
  2177. num1="ACTUAL_COST_CAR_COST_2" num2="CAR_COST"/>
  2178. </td>
  2179. <td class='center'>
  2180. <input value='${monthvar.ACTUAL_COST_CAR_COST_3}' onblur='editValue(this)' name='ACTUAL_COST_CAR_COST_3'
  2181. class='editInput ACTUAL_COST_CAR_COST_3' type='text' readonly='readonly' totalType='sum'/>
  2182. </td>
  2183. <td class='center'>
  2184. <input value='${monthvar.PAY_COST_CAR_COST_3}' onblur='editValue(this)' name='PAY_COST_CAR_COST_3'
  2185. class='editInput PAY_COST_CAR_COST_3' type='text' readonly='readonly' totalType='sum'/>
  2186. </td>
  2187. <td class='center'>
  2188. <input value='${monthvar.RATIO_CAR_COST_3}' name='RATIO_CAR_COST_3' class='percentCell RATIO_CAR_COST_3' type='text' readonly='readonly'
  2189. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CAR_COST_3}" />'
  2190. num1="ACTUAL_COST_CAR_COST_3" num2="CAR_COST"/>
  2191. </td>
  2192. <td class='center'>
  2193. <input value='${monthvar.ACTUAL_COST_CAR_COST_4}' onblur='editValue(this)' name='ACTUAL_COST_CAR_COST_4'
  2194. class='editInput ACTUAL_COST_CAR_COST_4' type='text' readonly='readonly' totalType='sum'/>
  2195. </td>
  2196. <td class='center'>
  2197. <input value='${monthvar.PAY_COST_CAR_COST_4}' onblur='editValue(this)' name='PAY_COST_CAR_COST_4'
  2198. class='editInput PAY_COST_CAR_COST_4' type='text' readonly='readonly' totalType='sum'/>
  2199. </td>
  2200. <td class='center'>
  2201. <input value='${monthvar.RATIO_CAR_COST_4}' name='RATIO_CAR_COST_4' class='percentCell RATIO_CAR_COST_4' type='text' readonly='readonly'
  2202. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CAR_COST_4}" />'
  2203. num1="ACTUAL_COST_CAR_COST_4" num2="CAR_COST"/>
  2204. </td>
  2205. <td class='center'>
  2206. <input value='${monthvar.ACTUAL_COST_CAR_COST_5}' onblur='editValue(this)' name='ACTUAL_COST_CAR_COST_5'
  2207. class='editInput ACTUAL_COST_CAR_COST_5' type='text' readonly='readonly' totalType='sum'/>
  2208. </td>
  2209. <td class='center'>
  2210. <input value='${monthvar.PAY_COST_CAR_COST_5}' onblur='editValue(this)' name='PAY_COST_CAR_COST_5'
  2211. class='editInput PAY_COST_CAR_COST_5' type='text' readonly='readonly' totalType='sum'/>
  2212. </td>
  2213. <td class='center'>
  2214. <input value='${monthvar.RATIO_CAR_COST_5}' name='RATIO_CAR_COST_5' class='percentCell RATIO_CAR_COST_5' type='text' readonly='readonly'
  2215. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CAR_COST_5}" />'
  2216. num1="ACTUAL_COST_CAR_COST_5" num2="CAR_COST"/>
  2217. </td>
  2218. <td class='center'>
  2219. <input value='${monthvar.ACTUAL_COST_CAR_COST_6}' onblur='editValue(this)' name='ACTUAL_COST_CAR_COST_6'
  2220. class='editInput ACTUAL_COST_CAR_COST_6' type='text' readonly='readonly' totalType='sum'/>
  2221. </td>
  2222. <td class='center'>
  2223. <input value='${monthvar.PAY_COST_CAR_COST_6}' onblur='editValue(this)' name='PAY_COST_CAR_COST_6'
  2224. class='editInput PAY_COST_CAR_COST_6' type='text' readonly='readonly' totalType='sum'/>
  2225. </td>
  2226. <td class='center'>
  2227. <input value='${monthvar.RATIO_CAR_COST_6}' name='RATIO_CAR_COST_6' class='percentCell RATIO_CAR_COST_6' type='text' readonly='readonly'
  2228. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CAR_COST_6}" />'
  2229. num1="ACTUAL_COST_CAR_COST_6" num2="CAR_COST"/>
  2230. </td>
  2231. <td class='center'>
  2232. <input value='${monthvar.ACTUAL_COST_CAR_COST_7}' onblur='editValue(this)' name='ACTUAL_COST_CAR_COST_7'
  2233. class='editInput ACTUAL_COST_CAR_COST_7' type='text' readonly='readonly' totalType='sum'/>
  2234. </td>
  2235. <td class='center'>
  2236. <input value='${monthvar.PAY_COST_CAR_COST_7}' onblur='editValue(this)' name='PAY_COST_CAR_COST_7'
  2237. class='editInput PAY_COST_CAR_COST_7' type='text' readonly='readonly' totalType='sum'/>
  2238. </td>
  2239. <td class='center'>
  2240. <input value='${monthvar.RATIO_CAR_COST_7}' name='RATIO_CAR_COST_7' class='percentCell RATIO_CAR_COST_7' type='text' readonly='readonly'
  2241. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CAR_COST_7}" />'
  2242. num1="ACTUAL_COST_CAR_COST_7" num2="CAR_COST"/>
  2243. </td>
  2244. <td class='center'>
  2245. <input value='${monthvar.ACTUAL_COST_CAR_COST_8}' onblur='editValue(this)' name='ACTUAL_COST_CAR_COST_8'
  2246. class='editInput ACTUAL_COST_CAR_COST_8' type='text' readonly='readonly' totalType='sum'/>
  2247. </td>
  2248. <td class='center'>
  2249. <input value='${monthvar.PAY_COST_CAR_COST_8}' onblur='editValue(this)' name='PAY_COST_CAR_COST_8'
  2250. class='editInput PAY_COST_CAR_COST_8' type='text' readonly='readonly' totalType='sum'/>
  2251. </td>
  2252. <td class='center'>
  2253. <input value='${monthvar.RATIO_CAR_COST_8}' name='RATIO_CAR_COST_8' class='percentCell RATIO_CAR_COST_8' type='text' readonly='readonly'
  2254. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CAR_COST_8}" />'
  2255. num1="ACTUAL_COST_CAR_COST_8" num2="CAR_COST"/>
  2256. </td>
  2257. <td class='center'>
  2258. <input value='${monthvar.ACTUAL_COST_CAR_COST_9}' onblur='editValue(this)' name='ACTUAL_COST_CAR_COST_9'
  2259. class='editInput ACTUAL_COST_CAR_COST_9' type='text' readonly='readonly' totalType='sum'/>
  2260. </td>
  2261. <td class='center'>
  2262. <input value='${monthvar.PAY_COST_CAR_COST_9}' onblur='editValue(this)' name='PAY_COST_CAR_COST_9'
  2263. class='editInput PAY_COST_CAR_COST_9' type='text' readonly='readonly' totalType='sum'/>
  2264. </td>
  2265. <td class='center'>
  2266. <input value='${monthvar.RATIO_CAR_COST_9}' name='RATIO_CAR_COST_9' class='percentCell RATIO_CAR_COST_9' type='text' readonly='readonly'
  2267. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CAR_COST_9}" />'
  2268. num1="ACTUAL_COST_CAR_COST_9" num2="CAR_COST"/>
  2269. </td>
  2270. <td class='center'>
  2271. <input value='${monthvar.ACTUAL_COST_CAR_COST_10}' onblur='editValue(this)' name='ACTUAL_COST_CAR_COST_10'
  2272. class='editInput ACTUAL_COST_CAR_COST_10' type='text' readonly='readonly' totalType='sum'/>
  2273. </td>
  2274. <td class='center'>
  2275. <input value='${monthvar.PAY_COST_CAR_COST_10}' onblur='editValue(this)' name='PAY_COST_CAR_COST_10'
  2276. class='editInput PAY_COST_CAR_COST_10' type='text' readonly='readonly' totalType='sum'/>
  2277. </td>
  2278. <td class='center'>
  2279. <input value='${monthvar.RATIO_CAR_COST_10}' name='RATIO_CAR_COST_10' class='percentCell RATIO_CAR_COST_10' type='text' readonly='readonly'
  2280. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CAR_COST_10}" />'
  2281. num1="ACTUAL_COST_CAR_COST_10" num2="CAR_COST"/>
  2282. </td>
  2283. <td class='center'>
  2284. <input value='${monthvar.ACTUAL_COST_CAR_COST_11}' onblur='editValue(this)' name='ACTUAL_COST_CAR_COST_11'
  2285. class='editInput ACTUAL_COST_CAR_COST_11' type='text' readonly='readonly' totalType='sum'/>
  2286. </td>
  2287. <td class='center'>
  2288. <input value='${monthvar.PAY_COST_CAR_COST_11}' onblur='editValue(this)' name='PAY_COST_CAR_COST_11'
  2289. class='editInput PAY_COST_CAR_COST_11' type='text' readonly='readonly' totalType='sum'/>
  2290. </td>
  2291. <td class='center'>
  2292. <input value='${monthvar.RATIO_CAR_COST_11}' name='RATIO_CAR_COST_11' class='percentCell RATIO_CAR_COST_11' type='text' readonly='readonly'
  2293. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CAR_COST_11}" />'
  2294. num1="ACTUAL_COST_CAR_COST_11" num2="CAR_COST"/>
  2295. </td>
  2296. <td class='center'>
  2297. <input value='${monthvar.ACTUAL_COST_CAR_COST_12}' onblur='editValue(this)' name='ACTUAL_COST_CAR_COST_12'
  2298. class='editInput ACTUAL_COST_CAR_COST_12' type='text' readonly='readonly' totalType='sum'/>
  2299. </td>
  2300. <td class='center'>
  2301. <input value='${monthvar.PAY_COST_CAR_COST_12}' onblur='editValue(this)' name='PAY_COST_CAR_COST_12'
  2302. class='editInput PAY_COST_CAR_COST_12' type='text' readonly='readonly' totalType='sum'/>
  2303. </td>
  2304. <td class='center'>
  2305. <input value='${monthvar.RATIO_CAR_COST_12}' name='RATIO_CAR_COST_12' class='percentCell RATIO_CAR_COST_12' type='text' readonly='readonly'
  2306. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_CAR_COST_12}" />'
  2307. num1="ACTUAL_COST_CAR_COST_12" num2="CAR_COST"/>
  2308. </td>
  2309. <td class='center'>
  2310. <span class='rowSumCell ACTUAL_COST_CAR_COST' totalType='sum'></span>
  2311. </td>
  2312. <td class='center'>
  2313. <span class='rowSumCell PAY_COST_CAR_COST' totalType='sum'></span>
  2314. </td>
  2315. <td class='center'>
  2316. <span class='percentCell' num1="ACTUAL_COST_CAR_COST" num2="CAR_COST"></span>
  2317. </td>
  2318. </c:if>
  2319. </c:forEach>
  2320. </tr>
  2321. <tr class='edittr'>
  2322. <td class='center'><label class="num">12</label> </td>
  2323. <td class='center'>应急保通</td>
  2324. <td class='center'>
  2325. <input value='${plancost.EMERGENCY_COST}' class='EMERGENCY_COST' type='text' readonly='readonly' totalType='sum'/>
  2326. </td>
  2327. <td class='center'></td>
  2328. <c:forEach items="${monthVarList}" var="monthvar" varStatus="vs">
  2329. <c:if test="${monthvar.type == 'EMERGENCY_COST'}">
  2330. <td class='center' style='display:none;'>
  2331. <input value='${pd.YEAR}' name='YEAR' type='text' readonly='readonly'/>
  2332. </td>
  2333. <td class='center' style='display:none;'>
  2334. <input value='${pd.COMPANY}' name='COMPANY' type='text' readonly='readonly'/>
  2335. </td>
  2336. <td class='center' style='display:none;'>
  2337. <input value='${pd.COMPANY_ID}' name='COMPANY_ID' type='text' readonly='readonly'/>
  2338. </td>
  2339. <td class='center' style='display:none;'>
  2340. <input value='${pd.ROAD_ID}' name='ROAD_ID' type='text' readonly='readonly'/>
  2341. </td>
  2342. <td class='center' style='display:none;'>
  2343. <input value='${pd.ROAD}' name='ROAD' type='text' readonly='readonly'/>
  2344. </td>
  2345. <td class='center' style='display:none;'>
  2346. <input value='EMERGENCY_COST' name='TYPE' type='text' readonly='readonly'/>
  2347. </td>
  2348. <td class='center'>
  2349. <input value='${monthvar.ACTUAL_COST_EMERGENCY_COST_1}' onblur='editValue(this)' name='ACTUAL_COST_EMERGENCY_COST_1'
  2350. class='editInput ACTUAL_COST_EMERGENCY_COST_1' type='text' readonly='readonly' totalType='sum'/>
  2351. </td>
  2352. <td class='center'>
  2353. <input value='${monthvar.PAY_COST_EMERGENCY_COST_1}' onblur='editValue(this)' name='PAY_COST_EMERGENCY_COST_1'
  2354. class='editInput PAY_COST_EMERGENCY_COST_1' type='text' readonly='readonly' totalType='sum'/>
  2355. </td>
  2356. <td class='center'>
  2357. <input value='${monthvar.RATIO_EMERGENCY_COST_1}' name='RATIO_EMERGENCY_COST_1' class='percentCell RATIO_EMERGENCY_COST_1' type='text' readonly='readonly'
  2358. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_EMERGENCY_COST_1}" />'
  2359. num1="ACTUAL_COST_EMERGENCY_COST_1" num2="EMERGENCY_COST"/>
  2360. </td>
  2361. <td class='center'>
  2362. <input value='${monthvar.ACTUAL_COST_EMERGENCY_COST_2}' onblur='editValue(this)' name='ACTUAL_COST_EMERGENCY_COST_2'
  2363. class='editInput ACTUAL_COST_EMERGENCY_COST_2' type='text' readonly='readonly' totalType='sum'/>
  2364. </td>
  2365. <td class='center'>
  2366. <input value='${monthvar.PAY_COST_EMERGENCY_COST_2}' onblur='editValue(this)' name='PAY_COST_EMERGENCY_COST_2'
  2367. class='editInput PAY_COST_EMERGENCY_COST_2' type='text' readonly='readonly' totalType='sum'/>
  2368. </td>
  2369. <td class='center'>
  2370. <input value='${monthvar.RATIO_EMERGENCY_COST_2}' name='RATIO_EMERGENCY_COST_2' class='percentCell RATIO_EMERGENCY_COST_2' type='text' readonly='readonly'
  2371. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_EMERGENCY_COST_2}" />'
  2372. num1="ACTUAL_COST_EMERGENCY_COST_2" num2="EMERGENCY_COST"/>
  2373. </td>
  2374. <td class='center'>
  2375. <input value='${monthvar.ACTUAL_COST_EMERGENCY_COST_3}' onblur='editValue(this)' name='ACTUAL_COST_EMERGENCY_COST_3'
  2376. class='editInput ACTUAL_COST_EMERGENCY_COST_3' type='text' readonly='readonly' totalType='sum'/>
  2377. </td>
  2378. <td class='center'>
  2379. <input value='${monthvar.PAY_COST_EMERGENCY_COST_3}' onblur='editValue(this)' name='PAY_COST_EMERGENCY_COST_3'
  2380. class='editInput PAY_COST_EMERGENCY_COST_3' type='text' readonly='readonly' totalType='sum'/>
  2381. </td>
  2382. <td class='center'>
  2383. <input value='${monthvar.RATIO_EMERGENCY_COST_3}' name='RATIO_EMERGENCY_COST_3' class='percentCell RATIO_EMERGENCY_COST_3' type='text' readonly='readonly'
  2384. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_EMERGENCY_COST_3}" />'
  2385. num1="ACTUAL_COST_EMERGENCY_COST_3" num2="EMERGENCY_COST"/>
  2386. </td>
  2387. <td class='center'>
  2388. <input value='${monthvar.ACTUAL_COST_EMERGENCY_COST_4}' onblur='editValue(this)' name='ACTUAL_COST_EMERGENCY_COST_4'
  2389. class='editInput ACTUAL_COST_EMERGENCY_COST_4' type='text' readonly='readonly' totalType='sum'/>
  2390. </td>
  2391. <td class='center'>
  2392. <input value='${monthvar.PAY_COST_EMERGENCY_COST_4}' onblur='editValue(this)' name='PAY_COST_EMERGENCY_COST_4'
  2393. class='editInput PAY_COST_EMERGENCY_COST_4' type='text' readonly='readonly' totalType='sum'/>
  2394. </td>
  2395. <td class='center'>
  2396. <input value='${monthvar.RATIO_EMERGENCY_COST_4}' name='RATIO_EMERGENCY_COST_4' class='percentCell RATIO_EMERGENCY_COST_4' type='text' readonly='readonly'
  2397. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_EMERGENCY_COST_4}" />'
  2398. num1="ACTUAL_COST_EMERGENCY_COST_4" num2="EMERGENCY_COST"/>
  2399. </td>
  2400. <td class='center'>
  2401. <input value='${monthvar.ACTUAL_COST_EMERGENCY_COST_5}' onblur='editValue(this)' name='ACTUAL_COST_EMERGENCY_COST_5'
  2402. class='editInput ACTUAL_COST_EMERGENCY_COST_5' type='text' readonly='readonly' totalType='sum'/>
  2403. </td>
  2404. <td class='center'>
  2405. <input value='${monthvar.PAY_COST_EMERGENCY_COST_5}' onblur='editValue(this)' name='PAY_COST_EMERGENCY_COST_5'
  2406. class='editInput PAY_COST_EMERGENCY_COST_5' type='text' readonly='readonly' totalType='sum'/>
  2407. </td>
  2408. <td class='center'>
  2409. <input value='${monthvar.RATIO_EMERGENCY_COST_5}' name='RATIO_EMERGENCY_COST_5' class='percentCell RATIO_EMERGENCY_COST_5' type='text' readonly='readonly'
  2410. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_EMERGENCY_COST_5}" />'
  2411. num1="ACTUAL_COST_EMERGENCY_COST_5" num2="EMERGENCY_COST"/>
  2412. </td>
  2413. <td class='center'>
  2414. <input value='${monthvar.ACTUAL_COST_EMERGENCY_COST_6}' onblur='editValue(this)' name='ACTUAL_COST_EMERGENCY_COST_6'
  2415. class='editInput ACTUAL_COST_EMERGENCY_COST_6' type='text' readonly='readonly' totalType='sum'/>
  2416. </td>
  2417. <td class='center'>
  2418. <input value='${monthvar.PAY_COST_EMERGENCY_COST_6}' onblur='editValue(this)' name='PAY_COST_EMERGENCY_COST_6'
  2419. class='editInput PAY_COST_EMERGENCY_COST_6' type='text' readonly='readonly' totalType='sum'/>
  2420. </td>
  2421. <td class='center'>
  2422. <input value='${monthvar.RATIO_EMERGENCY_COST_6}' name='RATIO_EMERGENCY_COST_6' class='percentCell RATIO_EMERGENCY_COST_6' type='text' readonly='readonly'
  2423. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_EMERGENCY_COST_6}" />'
  2424. num1="ACTUAL_COST_EMERGENCY_COST_6" num2="EMERGENCY_COST"/>
  2425. </td>
  2426. <td class='center'>
  2427. <input value='${monthvar.ACTUAL_COST_EMERGENCY_COST_7}' onblur='editValue(this)' name='ACTUAL_COST_EMERGENCY_COST_7'
  2428. class='editInput ACTUAL_COST_EMERGENCY_COST_7' type='text' readonly='readonly' totalType='sum'/>
  2429. </td>
  2430. <td class='center'>
  2431. <input value='${monthvar.PAY_COST_EMERGENCY_COST_7}' onblur='editValue(this)' name='PAY_COST_EMERGENCY_COST_7'
  2432. class='editInput PAY_COST_EMERGENCY_COST_7' type='text' readonly='readonly' totalType='sum'/>
  2433. </td>
  2434. <td class='center'>
  2435. <input value='${monthvar.RATIO_EMERGENCY_COST_7}' name='RATIO_EMERGENCY_COST_7' class='percentCell RATIO_EMERGENCY_COST_7' type='text' readonly='readonly'
  2436. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_EMERGENCY_COST_7}" />'
  2437. num1="ACTUAL_COST_EMERGENCY_COST_7" num2="EMERGENCY_COST"/>
  2438. </td>
  2439. <td class='center'>
  2440. <input value='${monthvar.ACTUAL_COST_EMERGENCY_COST_8}' onblur='editValue(this)' name='ACTUAL_COST_EMERGENCY_COST_8'
  2441. class='editInput ACTUAL_COST_EMERGENCY_COST_8' type='text' readonly='readonly' totalType='sum'/>
  2442. </td>
  2443. <td class='center'>
  2444. <input value='${monthvar.PAY_COST_EMERGENCY_COST_8}' onblur='editValue(this)' name='PAY_COST_EMERGENCY_COST_8'
  2445. class='editInput PAY_COST_EMERGENCY_COST_8' type='text' readonly='readonly' totalType='sum'/>
  2446. </td>
  2447. <td class='center'>
  2448. <input value='${monthvar.RATIO_EMERGENCY_COST_8}' name='RATIO_EMERGENCY_COST_8' class='percentCell RATIO_EMERGENCY_COST_8' type='text' readonly='readonly'
  2449. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_EMERGENCY_COST_8}" />'
  2450. num1="ACTUAL_COST_EMERGENCY_COST_8" num2="EMERGENCY_COST"/>
  2451. </td>
  2452. <td class='center'>
  2453. <input value='${monthvar.ACTUAL_COST_EMERGENCY_COST_9}' onblur='editValue(this)' name='ACTUAL_COST_EMERGENCY_COST_9'
  2454. class='editInput ACTUAL_COST_EMERGENCY_COST_9' type='text' readonly='readonly' totalType='sum'/>
  2455. </td>
  2456. <td class='center'>
  2457. <input value='${monthvar.PAY_COST_EMERGENCY_COST_9}' onblur='editValue(this)' name='PAY_COST_EMERGENCY_COST_9'
  2458. class='editInput PAY_COST_EMERGENCY_COST_9' type='text' readonly='readonly' totalType='sum'/>
  2459. </td>
  2460. <td class='center'>
  2461. <input value='${monthvar.RATIO_EMERGENCY_COST_9}' name='RATIO_EMERGENCY_COST_9' class='percentCell RATIO_EMERGENCY_COST_9' type='text' readonly='readonly'
  2462. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_EMERGENCY_COST_9}" />'
  2463. num1="ACTUAL_COST_EMERGENCY_COST_9" num2="EMERGENCY_COST"/>
  2464. </td>
  2465. <td class='center'>
  2466. <input value='${monthvar.ACTUAL_COST_EMERGENCY_COST_10}' onblur='editValue(this)' name='ACTUAL_COST_EMERGENCY_COST_10'
  2467. class='editInput ACTUAL_COST_EMERGENCY_COST_10' type='text' readonly='readonly' totalType='sum'/>
  2468. </td>
  2469. <td class='center'>
  2470. <input value='${monthvar.PAY_COST_EMERGENCY_COST_10}' onblur='editValue(this)' name='PAY_COST_EMERGENCY_COST_10'
  2471. class='editInput PAY_COST_EMERGENCY_COST_10' type='text' readonly='readonly' totalType='sum'/>
  2472. </td>
  2473. <td class='center'>
  2474. <input value='${monthvar.RATIO_EMERGENCY_COST_10}' name='RATIO_EMERGENCY_COST_10' class='percentCell RATIO_EMERGENCY_COST_10' type='text' readonly='readonly'
  2475. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_EMERGENCY_COST_10}" />'
  2476. num1="ACTUAL_COST_EMERGENCY_COST_10" num2="EMERGENCY_COST"/>
  2477. </td>
  2478. <td class='center'>
  2479. <input value='${monthvar.ACTUAL_COST_EMERGENCY_COST_11}' onblur='editValue(this)' name='ACTUAL_COST_EMERGENCY_COST_11'
  2480. class='editInput ACTUAL_COST_EMERGENCY_COST_11' type='text' readonly='readonly' totalType='sum'/>
  2481. </td>
  2482. <td class='center'>
  2483. <input value='${monthvar.PAY_COST_EMERGENCY_COST_11}' onblur='editValue(this)' name='PAY_COST_EMERGENCY_COST_11'
  2484. class='editInput PAY_COST_EMERGENCY_COST_11' type='text' readonly='readonly' totalType='sum'/>
  2485. </td>
  2486. <td class='center'>
  2487. <input value='${monthvar.RATIO_EMERGENCY_COST_11}' name='RATIO_EMERGENCY_COST_11' class='percentCell RATIO_EMERGENCY_COST_11' type='text' readonly='readonly'
  2488. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_EMERGENCY_COST_11}" />'
  2489. num1="ACTUAL_COST_EMERGENCY_COST_11" num2="EMERGENCY_COST"/>
  2490. </td>
  2491. <td class='center'>
  2492. <input value='${monthvar.ACTUAL_COST_EMERGENCY_COST_12}' onblur='editValue(this)' name='ACTUAL_COST_EMERGENCY_COST_12'
  2493. class='editInput ACTUAL_COST_EMERGENCY_COST_12' type='text' readonly='readonly' totalType='sum'/>
  2494. </td>
  2495. <td class='center'>
  2496. <input value='${monthvar.PAY_COST_EMERGENCY_COST_12}' onblur='editValue(this)' name='PAY_COST_EMERGENCY_COST_12'
  2497. class='editInput PAY_COST_EMERGENCY_COST_12' type='text' readonly='readonly' totalType='sum'/>
  2498. </td>
  2499. <td class='center'>
  2500. <input value='${monthvar.RATIO_EMERGENCY_COST_12}' name='RATIO_EMERGENCY_COST_12' class='percentCell RATIO_EMERGENCY_COST_12' type='text' readonly='readonly'
  2501. value='<fmt:formatNumber type="percent" value="${monthvar.RATIO_EMERGENCY_COST_12}" />'
  2502. num1="ACTUAL_COST_EMERGENCY_COST_12" num2="EMERGENCY_COST"/>
  2503. </td>
  2504. <td class='center'>
  2505. <span class='rowSumCell ACTUAL_COST_EMERGENCY_COST' totalType='sum'></span>
  2506. </td>
  2507. <td class='center'>
  2508. <span class='rowSumCell PAY_COST_EMERGENCY_COST' totalType='sum'></span>
  2509. </td>
  2510. <td class='center'>
  2511. <span class='percentCell' num1="ACTUAL_COST_EMERGENCY_COST" num2="EMERGENCY_COST"></span>
  2512. </td>
  2513. </c:if>
  2514. </c:forEach>
  2515. </tr>
  2516. <tr class="totaltr">
  2517. <td class='center' colspan='2'>小计</td>
  2518. <td class='center'><span class='sumCell PLAN_COST'></span></td>
  2519. <td class='center'></td>
  2520. <td class='center'><span class='sumCell ACTUAL_COST_1'></span></td>
  2521. <td class='center'><span class='sumCell PAY_COST_1'></span></td>
  2522. <td class='center'><span class='percentCell' num1="ACTUAL_COST_1" num2="PLAN_COST"></span></td>
  2523. <td class='center'><span class='sumCell ACTUAL_COST_2'></span></td>
  2524. <td class='center'><span class='sumCell PAY_COST_2'></span></td>
  2525. <td class='center'><span class='percentCell' num1="ACTUAL_COST_2" num2="PLAN_COST"></span></td>
  2526. <td class='center'><span class='sumCell ACTUAL_COST_3'></span></td>
  2527. <td class='center'><span class='sumCell PAY_COST_3'></span></td>
  2528. <td class='center'><span class='percentCell' num1="ACTUAL_COST_3" num2="PLAN_COST"></span></td>
  2529. <td class='center'><span class='sumCell ACTUAL_COST_4'></span></td>
  2530. <td class='center'><span class='sumCell PAY_COST_4'></span></td>
  2531. <td class='center'><span class='percentCell' num1="ACTUAL_COST_4" num2="PLAN_COST"></span></td>
  2532. <td class='center'><span class='sumCell ACTUAL_COST_5'></span></td>
  2533. <td class='center'><span class='sumCell PAY_COST_5'></span></td>
  2534. <td class='center'><span class='percentCell' num1="ACTUAL_COST_5" num2="PLAN_COST"></span></td>
  2535. <td class='center'><span class='sumCell ACTUAL_COST_6'></span></td>
  2536. <td class='center'><span class='sumCell PAY_COST_6'></span></td>
  2537. <td class='center'><span class='percentCell' num1="ACTUAL_COST_6" num2="PLAN_COST"></span></td>
  2538. <td class='center'><span class='sumCell ACTUAL_COST_7'></span></td>
  2539. <td class='center'><span class='sumCell PAY_COST_7'></span></td>
  2540. <td class='center'><span class='percentCell' num1="ACTUAL_COST_7" num2="PLAN_COST"></span></td>
  2541. <td class='center'><span class='sumCell ACTUAL_COST_8'></span></td>
  2542. <td class='center'><span class='sumCell PAY_COST_8'></span></td>
  2543. <td class='center'><span class='percentCell' num1="ACTUAL_COST_8" num2="PLAN_COST"></span></td>
  2544. <td class='center'><span class='sumCell ACTUAL_COST_9'></span></td>
  2545. <td class='center'><span class='sumCell PAY_COST_9'></span></td>
  2546. <td class='center'><span class='percentCell' num1="ACTUAL_COST_9" num2="PLAN_COST"></span></td>
  2547. <td class='center'><span class='sumCell ACTUAL_COST_10'></span></td>
  2548. <td class='center'><span class='sumCell PAY_COST_10'></span></td>
  2549. <td class='center'><span class='percentCell' num1="ACTUAL_COST_10" num2="PLAN_COST"></span></td>
  2550. <td class='center'><span class='sumCell ACTUAL_COST_11'></span></td>
  2551. <td class='center'><span class='sumCell PAY_COST_11'></span></td>
  2552. <td class='center'><span class='percentCell' num1="ACTUAL_COST_11" num2="PLAN_COST"></span></td>
  2553. <td class='center'><span class='sumCell ACTUAL_COST_12'></span></td>
  2554. <td class='center'><span class='sumCell PAY_COST_12'></span></td>
  2555. <td class='center'><span class='percentCell' num1="ACTUAL_COST_12" num2="PLAN_COST"></span></td>
  2556. <td class='center'><span class='sumCell SUM_ACTUAL_COST'></span></td>
  2557. <td class='center'><span class='sumCell SUM_PAY_COST'></span></td>
  2558. <td class='center'><span class='percentCell' num1="SUM_ACTUAL_COST" num2="PLAN_COST"></span></td>
  2559. </tr>
  2560. </c:when>
  2561. <c:otherwise>
  2562. <tr class="main_info">
  2563. <td colspan="100" class="center" >没有相关数据,请在年度计划中添加日常养护计划</td>
  2564. </tr>
  2565. </c:otherwise>
  2566. </c:choose>
  2567. </tbody>
  2568. </form>
  2569. </table>
  2570. </div>
  2571. <div id="zhongxin2" class="center" style="display:none"><br/><br/><br/><br/><br/><img src="static/images/jiazai.gif" /><br/><h4 class="lighter block green">提交中...</h4></div>
  2572. <!-- </form> -->
  2573. </div>
  2574. </div>
  2575. </div>
  2576. <!-- /.page-content -->
  2577. </div>
  2578. </div>
  2579. <!-- /.main-content -->
  2580. </div>
  2581. <!-- /.main-container -->
  2582. <footer>
  2583. <div style="width: 100%;padding-bottom: 2px;margin-left:1%;margin-top:10px;" >
  2584. <!-- <a id='editbutton' class="btn btn-mini btn-primary" onclick="editTable();">修改</a>
  2585. <a class="btn btn-mini btn-info" onclick="saveTable();">保存</a> -->
  2586. </div>
  2587. </footer>
  2588. <!-- 页面底部js¨ -->
  2589. <%@ include file="../../../system/index/foot.jsp"%>
  2590. <!-- 删除时确认窗口 -->
  2591. <script src="static/ace/js/bootbox.js"></script>
  2592. <!--提示框-->
  2593. <!-- <script type="text/javascript" src="static/js/jquery.tips.js"></script> -->
  2594. <script type="text/javascript" src="static/js/monthProgress/fixTable.js"></script>
  2595. <script type="text/javascript" src="static/js/monthProgress/dailyCompletion.js"></script>
  2596. <script type="text/javascript">
  2597. var varList = eval('${varList}');
  2598. var monthRoadList = eval('${monthRoadList}');
  2599. var sumRoadList = eval('${yearRoadList}');
  2600. var companyData = ${companyRoad};
  2601. var year = ${pd.YEAR};
  2602. $(function() {
  2603. //debugger;
  2604. FixTable("simple-table",3, $('#main-container').width()-17, $('.no-skin').parent().height()-100);
  2605. });
  2606. /* function changeRoad(){
  2607. debugger
  2608. var myselect = document.getElementById("roadid").innerHTML;
  2609. getTop(globalThis).jzts();
  2610. var COMPANY_ID = document.getElementById("COMPANY_ID").innerHTML;
  2611. window.location.href="daily/showTable.do?COMPANY_ID=" +COMPANY_ID + "&YEAR="+year + "&ROAD="+myselect;
  2612. } */
  2613. function save(){
  2614. var road = $('#roadSelect').find("option:selected").text();
  2615. var company = $('#companySelect').find("option:selected").text();
  2616. window.location.href="daily/showTable2.do?COMPANY=" +company + "&YEAR="+year + "&ROAD="+road + "&TABLETYPE=monthly_daily_completion";
  2617. }
  2618. function setRoads(company){
  2619. debugger
  2620. var str = '';
  2621. for(var i=0; i<companyData[0][company].length; i++){
  2622. str += '<option value="'+companyData[0][company][i]+'">'+companyData[0][company][i]+'</option>';
  2623. }
  2624. $('#roadSelect').html(str);
  2625. }
  2626. </script>
  2627. </body>
  2628. </html>