bwtz.ejs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. <% include ./stage_sub_menu.ejs %>
  2. <div class="panel-content">
  3. <div class="panel-title">
  4. <div class="title-main d-flex justify-content-between">
  5. <% include ./stage_sub_mini_menu.ejs %>
  6. <div>
  7. <div class="d-inline-block">
  8. <div class="dropdown">
  9. <button class="btn btn-sm btn-light dropdown-toggle text-primary" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
  10. <i class="fa fa-list-ol"></i> 显示层级
  11. </button>
  12. <div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
  13. <a class="dropdown-item" name="showLevel" tag="1" href="javascirpt: void(0);">第一层</a>
  14. <a class="dropdown-item" name="showLevel" tag="2" href="javascirpt: void(0);">第二层</a>
  15. <a class="dropdown-item" name="showLevel" tag="3" href="javascirpt: void(0);">第三层</a>
  16. <a class="dropdown-item" name="showLevel" tag="4" href="javascirpt: void(0);">第四层</a>
  17. <a class="dropdown-item" name="showLevel" tag="5" href="javascirpt: void(0);">第五层</a>
  18. <a class="dropdown-item" name="showLevel" tag="last" href="javascirpt: void(0);">最底层</a>
  19. <!--<a class="dropdown-item" name="showLevel" tag="curMeasure" href="javascirpt: void(0);">只显示本期计量</a>-->
  20. </div>
  21. </div>
  22. </div>
  23. <div class="d-inline-block">
  24. <div class="dropdown">
  25. <button class="btn btn-sm btn-light dropdown-toggle text-primary" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
  26. <i class="fa fa-list-ol"></i> 过滤数据
  27. </button>
  28. <div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
  29. <a class="dropdown-item" href="javascirpt: void(0);" name="load-data" tag="cur">本期</a>
  30. <a class="dropdown-item" href="javascirpt: void(0);" name="load-data" tag="end">截止本期</a>
  31. <a class="dropdown-item" href="javascirpt: void(0);" name="load-data" tag="all">显示全部</a>
  32. </div>
  33. </div>
  34. </div>
  35. <div class="d-inline-block ml-3">
  36. <a id="exportBwtz" class="btn btn-primary btn-sm" href="javascript: void(0)">导出部位台账Excel</a>
  37. </div>
  38. </div>
  39. <div class="ml-auto">
  40. </div>
  41. </div>
  42. </div>
  43. <div class="content-wrap pr-46">
  44. <div class="c-header p-0"></div>
  45. <div class="row w-100 sub-content">
  46. <div class="c-body" id="left-view" style="width: 100%">
  47. <div class="sjs-height-1" id="xmj-spread">
  48. </div>
  49. <div class="bcontent-wrap" id="main-bottom">
  50. <div id="main-resize" class="resize-y" r-Type="height" div1="#xmj-spread" div2="#main-bottom" store-id="stage-bwtz" store-version="1.0.0" min="100"></div>
  51. <div class="bc-bar mb-1">
  52. <ul class="nav nav-tabs">
  53. <li class="nav-item">
  54. <a class="nav-link active" data-toggle="tab" href="#jldyjlqd" role="tab">计量单元/计量清单</a>
  55. </li>
  56. </ul>
  57. </div>
  58. <div class="sp-wrap" id="unit-spread">
  59. </div>
  60. </div>
  61. </div>
  62. <!--右栏-->
  63. <div class="c-body" id="right-view" style="display: none; width: 33%">
  64. <div class="resize-x" id="right-spr" r-Type="width" div1="#left-view" div2="#right-view" title="调整大小" a-type="percent"><!--调整左右高度条--></div>
  65. <div class="tab-content">
  66. <div id="search" class="tab-pane">
  67. </div>
  68. </div>
  69. </div>
  70. </div>
  71. <!--右侧菜单-->
  72. <div class="side-menu">
  73. <!--右侧菜单-->
  74. <ul class="nav flex-column right-nav">
  75. <li class="nav-item">
  76. <a class="nav-link" href="javascript: void(0);" role="tab" content="#search">查找定位</a>
  77. </li>
  78. </ul>
  79. </div>
  80. </div>
  81. </div>
  82. <script>
  83. const thirdParty = JSON.parse('<%- JSON.stringify(thirdParty) %>');
  84. function getGxbyText(data) {
  85. const def = thirdParty.gxby.find(function (x) {
  86. return x.value === data.gxby_status;
  87. });
  88. return def ? def.name : '';
  89. }
  90. function getDaglText(data) {
  91. const def = thirdParty.dagl.find(function (x) {
  92. return x.value === data.dagl_status;
  93. });
  94. return def ? def.name : '';
  95. }
  96. const xmjSpreadSetting = {
  97. cols: [
  98. {title: '项目节编号', colSpan: '1', rowSpan: '2', field: 'code', hAlign: 0, width: 145, formatter: '@', cellType: 'tree'},
  99. {title: '名称', colSpan: '1', rowSpan: '2', field: 'name', hAlign: 0, width: 185, formatter: '@'},
  100. {title: '单位', colSpan: '1', rowSpan: '2', field: 'unit', hAlign: 1, width: 60, formatter: '@', cellType: 'unit'},
  101. <% if (ctx.tender.info.display.ledger.dgnQty) { %>
  102. {title: '项目节数量|数量1', colSpan: '2|1', rowSpan: '1|1', field: 'dgn_qty1', hAlign: 2, width: 60, type: 'Number'},
  103. {title: '|数量2', colSpan: '|1', rowSpan: '|1', field: 'dgn_qty2', hAlign: 2, width: 60, type: 'Number'},
  104. {title: '经济指标', colSpan: '1', rowSpan: '2', field: 'dgn_price', hAlign: 2, width: 60, type: 'Number'},
  105. <% } %>
  106. {title: '台账金额', colSpan: '1', rowSpan: '2', field: 'total_price', hAlign: 2, width: 70, type: 'Number'},
  107. {title: '本期计量金额|合同计量', colSpan: '3|1', rowSpan: '1|1', field: 'contract_tp', hAlign: 2, width: 70, type: 'Number'},
  108. {title: '|数量变更', colSpan: '|1', rowSpan: '|1', field: 'qc_tp', hAlign: 2, width: 70, type: 'Number'},
  109. {title: '|完成计量', colSpan: '|1', rowSpan: '|1', field: 'gather_tp', hAlign: 2, width: 70, type: 'Number'},
  110. {title: '截止本期计量金额|合同计量', colSpan: '4|1', rowSpan: '1|1', field: 'end_contract_tp', hAlign: 2, width: 70, type: 'Number'},
  111. {title: '|数量变更', colSpan: '|1', rowSpan: '|1', field: 'end_qc_tp', hAlign: 2, width: 70, type: 'Number'},
  112. {title: '|完成计量', colSpan: '|1', rowSpan: '|1', field: 'end_gather_tp', hAlign: 2, width: 70, type: 'Number'},
  113. {title: '|完成率(%)', colSpan: '|1', rowSpan: '|1', field: 'end_gather_percent', hAlign: 2, width: 70, type: 'Number'},
  114. {title: '图(册)号', colSpan: '1', rowSpan: '2', field: 'drawing_code', hAlign: 0, width: 80, formatter: '@'},
  115. {title: '本期批注', colSpan: '1', rowSpan: '2', field: 'postil', hAlign: 0, width: 100, formatter: '@', cellType: 'ellipsisAutoTip'},
  116. {title: '备注', colSpan: '1', rowSpan: '2', field: 'memo', hAlign: 0, width: 100, formatter: '@', cellType: 'ellipsisAutoTip'},
  117. <% if (ctx.session.sessionProject.gxby) { %>
  118. {title: '工序报验', colSpan: '1', rowSpan: '2', field: 'gxby', hAlign: 1, width: 80, formatter: '@', readOnly: true, getValue: getGxbyText},
  119. <% } %>
  120. <% if (ctx.session.sessionProject.dagl) { %>
  121. {title: '档案管理', colSpan: '1', rowSpan: '2', field: 'dagl', hAlign: 1, width: 80, formatter: '@', readOnly: true, getValue: getDaglText},
  122. <% } %>
  123. ],
  124. emptyRows: 0,
  125. headRows: 2,
  126. headRowHeight: [25, 25],
  127. defaultRowHeight: 21,
  128. headerFont: '12px 微软雅黑',
  129. font: '12px 微软雅黑',
  130. readOnly: true,
  131. localCache: {
  132. key: 'stage-bwtz-xmj',
  133. colWidth: true,
  134. },
  135. };
  136. const unitSpreadSetting = {
  137. cols: [
  138. {title: '计量单元', colSpan: '1', rowSpan: '2', field: 'code', hAlign: 0, width: 120, formatter: '@', cellType: 'tree'},
  139. {title: '清单编号', colSpan: '1', rowSpan: '2', field: 'b_code', hAlign: 0, width: 70, formatter: '@'},
  140. {
  141. title: '名称', colSpan: '1', rowSpan: '2', field: 'name', hAlign: 0, width: 185, formatter: '@',
  142. getValue: function (data) {
  143. return data.pos_name + data.name;
  144. }
  145. },
  146. {title: '单位', colSpan: '1', rowSpan: '2', field: 'unit', hAlign: 1, width: 60, formatter: '@', cellType: 'unit'},
  147. {title: '单价', colSpan: '1', rowSpan: '2', field: 'unit_price', hAlign: 2, width: 60, type: 'Number'},
  148. {title: '台账|数量', colSpan: '2|1', rowSpan: '1|1', field: 'quantity', hAlign: 2, width: 60, type: 'Number'},
  149. {title: '|金额', colSpan: '|1', rowSpan: '|1', field: 'total_price', hAlign: 2, width: 60, type: 'Number'},
  150. <% if (ctx.tender.info.display.stage.realComplete) { %>
  151. {title: '现场实际|数量', colSpan: '2|1', rowSpan: '1|1', field: 'real_qty', hAlign: 2, width: 60, type: 'Number'},
  152. {title: '|金额', colSpan: '|1', rowSpan: '|1', field: 'real_tp', hAlign: 2, width: 60, type: 'Number'},
  153. {title: '预计变更|数量', colSpan: '2|1', rowSpan: '1|1', field: 'estimate_qty', hAlign: 2, width: 60, type: 'Number', readOnly: true},
  154. {title: '|金额', colSpan: '|1', rowSpan: '|1', field: 'estimate_tp', hAlign: 2, width: 60, type: 'Number'},
  155. <% } %>
  156. {title: '本期合同计量|数量', colSpan: '2|1', rowSpan: '1|1', field: 'contract_qty', hAlign: 2, width: 60, type: 'Number'},
  157. {title: '|金额', colSpan: '|1', rowSpan: '|1', field: 'contract_tp', hAlign: 2, width: 60, type: 'Number'},
  158. {title: '本期数量变更|数量', colSpan: '3|1', rowSpan: '1|1', field: 'qc_qty', hAlign: 2, width: 60, type: 'Number'},
  159. {title: '|金额', colSpan: '|1', rowSpan: '|1', field: 'qc_tp', hAlign: 2, width: 60, type: 'Number'},
  160. {title: '|变更令', colSpan: '|1', rowSpan: '|1', field: 'bgl_code', hAlign: 2, width: 60, formatter: '@', cellType: 'ellipsisAutoTip'},
  161. {title: '本期完成计量|数量', colSpan: '2|1', rowSpan: '1|1', field: 'gather_qty', hAlign: 2, width: 60, type: 'Number'},
  162. {title: '|金额', colSpan: '|1', rowSpan: '|1', field: 'gather_tp', hAlign: 2, width: 60, type: 'Number'},
  163. {title: '截止本期合同计量|数量', colSpan: '2|1', rowSpan: '1|1', field: 'end_contract_qty', hAlign: 2, width: 60, type: 'Number'},
  164. {title: '|金额', colSpan: '|1', rowSpan: '|1', field: 'end_contract_tp', hAlign: 2, width: 60, type: 'Number'},
  165. {title: '截止本期数量变更|数量', colSpan: '2|1', rowSpan: '1|1', field: 'end_qc_qty', hAlign: 2, width: 60, type: 'Number'},
  166. {title: '|金额', colSpan: '|1', rowSpan: '|1', field: 'end_qc_tp', hAlign: 2, width: 60, type: 'Number'},
  167. {title: '截止本期完成计量|数量', colSpan: '3|1', rowSpan: '1|1', field: 'end_gather_qty', hAlign: 2, width: 60, type: 'Number'},
  168. {title: '|金额', colSpan: '|1', rowSpan: '|1', field: 'end_gather_tp', hAlign: 2, width: 60, type: 'Number'},
  169. {title: '|完成率(%)', colSpan: '|1', rowSpan: '|1', field: 'end_gather_percent', hAlign: 2, width: 60, readOnly: true, type: 'Number'},
  170. {title: '图(册)号', colSpan: '1', rowSpan: '2', field: 'drawing_code_merge', hAlign: 0, width: 80, formatter: '@'},
  171. {title: '本期批注', colSpan: '1', rowSpan: '2', field: 'postil_merge', hAlign: 0, width: 100, formatter: '@', cellType: 'ellipsisAutoTip'},
  172. {title: '备注', colSpan: '1', rowSpan: '2', field: 'memo_merge', hAlign: 0, width: 100, formatter: '@', cellType: 'ellipsisAutoTip'},
  173. <% if (ctx.session.sessionProject.gxby) { %>
  174. {title: '工序报验', colSpan: '1', rowSpan: '2', field: 'gxby', hAlign: 1, width: 80, formatter: '@', readOnly: true, getValue: getGxbyText},
  175. <% } %>
  176. <% if (ctx.session.sessionProject.dagl) { %>
  177. {title: '档案管理', colSpan: '1', rowSpan: '2', field: 'dagl', hAlign: 1, width: 80, formatter: '@', readOnly: true, getValue: getDaglText},
  178. <% } %>
  179. ],
  180. emptyRows: 0,
  181. headRows: 2,
  182. headRowHeight: [25, 25],
  183. defaultRowHeight: 21,
  184. headerFont: '12px 微软雅黑',
  185. font: '12px 微软雅黑',
  186. readOnly: true,
  187. localCache: {
  188. key: 'stage-bwtz-unit',
  189. colWidth: true,
  190. },
  191. };
  192. const decimal = <%- ctx.tender.info.decimal.tp %>;
  193. const thousandth = <%- ctx.tender.info.display.thousandth %>;
  194. </script>