outward_detail.html 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640
  1. <style>
  2. body.is-dialog .outward-detail-wrap {
  3. margin: 0;
  4. padding: 12px 14px 0;
  5. max-width: 100%;
  6. box-sizing: border-box;
  7. }
  8. .outward-detail-head {
  9. margin-bottom: 10px;
  10. font-size: 13px;
  11. color: #666;
  12. line-height: 1.6;
  13. }
  14. .outward-detail-head strong {
  15. color: #333;
  16. }
  17. .outward-detail-table-wrap,
  18. .outward-confirm-process-wrap {
  19. /* 不在表格区域内部纵向滚动,由弹窗页面整体滚动 */
  20. overflow-x: auto;
  21. overflow-y: visible;
  22. max-height: none;
  23. -webkit-overflow-scrolling: touch;
  24. margin-bottom: 12px;
  25. border: 1px solid #e5e5e5;
  26. }
  27. .outward-confirm-company-wrap {
  28. overflow-x: auto;
  29. overflow-y: visible;
  30. max-height: none;
  31. -webkit-overflow-scrolling: touch;
  32. margin-bottom: 12px;
  33. border: 1px solid #e5e5e5;
  34. }
  35. .outward-detail-table-wrap {
  36. max-height: none;
  37. border: 0;
  38. }
  39. .outward-detail-table {
  40. table-layout: fixed;
  41. width: 100%;
  42. min-width: 1320px;
  43. margin-bottom: 0;
  44. }
  45. .outward-confirm-process-table {
  46. margin: 0;
  47. font-size: 12px;
  48. table-layout: fixed;
  49. width: 100%;
  50. min-width: 0;
  51. max-width: 100%;
  52. }
  53. .outward-confirm-company-table {
  54. margin: 0;
  55. font-size: 12px;
  56. table-layout: fixed;
  57. width: 1580px;
  58. min-width: 1580px;
  59. max-width: none;
  60. }
  61. .outward-confirm-process-table th:nth-child(3),
  62. .outward-confirm-process-table td.outward-process-name,
  63. .outward-confirm-company-table td.outward-process-name {
  64. white-space: nowrap;
  65. }
  66. .outward-confirm-process-table th.outward-col-name,
  67. .outward-confirm-process-table td.outward-col-name {
  68. width: 26%;
  69. white-space: normal;
  70. word-break: break-word;
  71. }
  72. .outward-confirm-process-table th.outward-col-remark,
  73. .outward-confirm-process-table td.outward-col-remark {
  74. width: 120px;
  75. max-width: 120px;
  76. white-space: normal;
  77. word-break: break-word;
  78. }
  79. .outward-detail-table > thead > tr > th,
  80. .outward-detail-table > tbody > tr > td,
  81. .outward-confirm-process-table th,
  82. .outward-confirm-process-table td,
  83. .outward-confirm-company-table th,
  84. .outward-confirm-company-table td {
  85. vertical-align: middle;
  86. word-wrap: break-word;
  87. word-break: break-word;
  88. white-space: normal;
  89. line-height: 1.45;
  90. padding: 6px 8px;
  91. }
  92. .outward-confirm-company-table th.col-supplier-name,
  93. .outward-confirm-company-table td.col-supplier-name {
  94. width: 150px;
  95. min-width: 150px;
  96. max-width: 150px;
  97. word-break: normal;
  98. overflow-wrap: break-word;
  99. white-space: normal;
  100. line-height: 1.4;
  101. }
  102. .outward-confirm-company-table th.col-supplier-email,
  103. .outward-confirm-company-table td.col-supplier-email {
  104. width: 120px;
  105. min-width: 120px;
  106. max-width: 120px;
  107. word-break: break-all;
  108. white-space: normal;
  109. line-height: 1.35;
  110. }
  111. .outward-confirm-company-table th.col-supplier-user,
  112. .outward-confirm-company-table td.col-supplier-user {
  113. width: 72px;
  114. min-width: 72px;
  115. white-space: nowrap;
  116. }
  117. .outward-confirm-company-table th.col-supplier-phone,
  118. .outward-confirm-company-table td.col-supplier-phone {
  119. width: 110px;
  120. min-width: 110px;
  121. white-space: nowrap;
  122. }
  123. .outward-confirm-process-table th,
  124. .outward-confirm-company-table th {
  125. background: #f5f5f5;
  126. font-weight: 600;
  127. white-space: nowrap;
  128. border: 1px solid #ddd !important;
  129. }
  130. .outward-confirm-process-table td,
  131. .outward-confirm-company-table td {
  132. border: 1px solid #ddd !important;
  133. }
  134. .outward-detail-table > thead > tr > th {
  135. font-weight: 600;
  136. white-space: nowrap;
  137. background: #f5f5f5;
  138. border: 1px solid #ddd !important;
  139. }
  140. .outward-detail-table > tbody > tr > td {
  141. border: 1px solid #ddd !important;
  142. }
  143. .outward-detail-table .col-title {
  144. white-space: normal;
  145. }
  146. .outward-detail-table .col-amount,
  147. .outward-detail-table .col-delivery {
  148. text-align: center;
  149. white-space: nowrap;
  150. }
  151. .outward-detail-table .col-sn,
  152. .outward-detail-table .col-time {
  153. white-space: nowrap;
  154. }
  155. .outward-confirm-block-title {
  156. margin: 0 0 6px;
  157. font-weight: 600;
  158. font-size: 13px;
  159. color: #333;
  160. }
  161. .outward-confirm-meta-row {
  162. display: flex;
  163. align-items: center;
  164. flex-wrap: wrap;
  165. gap: 6px 12px;
  166. margin: 0 0 10px;
  167. font-size: 13px;
  168. line-height: 1.5;
  169. }
  170. .outward-confirm-deadline-row {
  171. display: flex;
  172. align-items: center;
  173. flex-wrap: nowrap;
  174. gap: 10px 16px;
  175. margin: 0 0 10px;
  176. font-size: 13px;
  177. width: 100%;
  178. }
  179. .outward-confirm-deadline-item {
  180. display: flex;
  181. flex-wrap: nowrap;
  182. align-items: center;
  183. gap: 8px 10px;
  184. flex-shrink: 0;
  185. }
  186. .outward-confirm-deadline-row .deadline-label {
  187. font-weight: 600;
  188. color: #333;
  189. white-space: nowrap;
  190. margin: 0;
  191. }
  192. .outward-confirm-deadline-item.outward-order-type-item {
  193. align-items: center;
  194. }
  195. .outward-confirm-deadline-item.outward-manual-pick-item {
  196. align-items: flex-start;
  197. flex: 1 1 280px;
  198. min-width: 0;
  199. flex-shrink: 1;
  200. }
  201. .outward-confirm-order-type-text {
  202. display: inline-block;
  203. min-height: 30px;
  204. line-height: 30px;
  205. font-size: 13px;
  206. font-weight: 600;
  207. color: #333;
  208. vertical-align: middle;
  209. white-space: nowrap;
  210. }
  211. .outward-manual-pick-inline {
  212. display: flex;
  213. flex-direction: column;
  214. gap: 2px;
  215. flex: 1 1 180px;
  216. min-width: 0;
  217. margin-left: 8px;
  218. font-size: 13px;
  219. font-weight: 400;
  220. color: #555;
  221. line-height: 1.45;
  222. white-space: normal;
  223. vertical-align: middle;
  224. }
  225. .outward-manual-pick-inline .outward-manual-pick-line {
  226. display: block;
  227. }
  228. .outward-manual-pick-inline strong {
  229. color: #333;
  230. font-weight: 600;
  231. }
  232. .outward-manual-pick-tag {
  233. flex-shrink: 0;
  234. display: inline-block;
  235. height: auto;
  236. line-height: 1.45;
  237. margin-right: 0;
  238. padding: 0;
  239. border-radius: 0;
  240. background: transparent;
  241. color: #3c763d;
  242. font-size: 15px;
  243. font-weight: 600;
  244. white-space: nowrap;
  245. align-self: flex-start;
  246. padding-top: 1px;
  247. }
  248. .outward-manual-pick-tag .fa {
  249. font-size: 16px;
  250. margin-right: 4px;
  251. vertical-align: -1px;
  252. }
  253. .outward-confirm-delivery-deadline-input {
  254. width: 128px;
  255. min-width: 128px;
  256. max-width: 128px;
  257. height: 32px;
  258. padding: 4px 6px;
  259. font-size: 13px;
  260. box-sizing: border-box;
  261. }
  262. .outward-confirm-deadline-wrap.procuremen-sys-rq-split .procuremen-sys-rq-fields {
  263. display: flex;
  264. flex-wrap: nowrap;
  265. align-items: center;
  266. gap: 4px;
  267. }
  268. .outward-confirm-deadline-wrap.procuremen-sys-rq-split .procuremen-sys-rq-date {
  269. width: 128px;
  270. min-width: 128px;
  271. max-width: 128px;
  272. height: 32px;
  273. padding: 4px 6px;
  274. font-size: 13px;
  275. box-sizing: border-box;
  276. }
  277. .outward-confirm-deadline-wrap.procuremen-sys-rq-split .procuremen-sys-rq-date::-webkit-calendar-picker-indicator {
  278. margin: 0 0 0 2px;
  279. padding: 0;
  280. width: 14px;
  281. cursor: default;
  282. }
  283. .outward-confirm-deadline-wrap.procuremen-sys-rq-split .procuremen-sys-rq-time-group {
  284. display: inline-flex;
  285. align-items: center;
  286. gap: 2px;
  287. flex-shrink: 0;
  288. }
  289. .outward-confirm-deadline-wrap.procuremen-sys-rq-split .procuremen-sys-rq-hour,
  290. .outward-confirm-deadline-wrap.procuremen-sys-rq-split .procuremen-sys-rq-minute {
  291. width: 54px;
  292. min-width: 54px;
  293. height: 32px;
  294. padding: 4px 4px;
  295. font-size: 13px;
  296. }
  297. .outward-confirm-deadline-wrap.procuremen-sys-rq-split .procuremen-sys-rq-colon {
  298. color: #666;
  299. font-weight: 600;
  300. line-height: 32px;
  301. }
  302. .outward-confirm-deadline-wrap.procuremen-sys-rq-split.is-readonly .procuremen-sys-rq-date,
  303. .outward-confirm-deadline-wrap.procuremen-sys-rq-split.is-readonly .procuremen-sys-rq-hour,
  304. .outward-confirm-deadline-wrap.procuremen-sys-rq-split.is-readonly .procuremen-sys-rq-minute {
  305. background-color: #f5f5f5;
  306. color: #333;
  307. cursor: default;
  308. pointer-events: none;
  309. box-shadow: none;
  310. }
  311. .outward-confirm-company-table.outward-confirm-readonly tbody tr {
  312. cursor: default;
  313. }
  314. .outward-confirm-company-table.outward-confirm-readonly .pod-company-pick-cb {
  315. pointer-events: none;
  316. cursor: default;
  317. }
  318. .outward-confirm-company-table.outward-confirm-readonly label {
  319. cursor: default;
  320. }
  321. .outward-confirm-company-table td label {
  322. margin: 0;
  323. font-weight: normal;
  324. cursor: pointer;
  325. }
  326. .outward-confirm-company-table tbody tr {
  327. cursor: pointer;
  328. }
  329. .outward-confirm-company-table td.outward-quote-empty {
  330. color: #e67e22;
  331. }
  332. .outward-confirm-quote-cell {
  333. font-size: 12px;
  334. line-height: 1.55;
  335. }
  336. .outward-confirm-quote-item {
  337. padding: 4px 0;
  338. }
  339. .outward-confirm-quote-item + .outward-confirm-quote-item {
  340. margin-top: 6px;
  341. padding-top: 6px;
  342. border-top: 1px dashed #e8e8e8;
  343. }
  344. .outward-confirm-quote-item div {
  345. margin: 0;
  346. }
  347. .outward-detail-wrap .audit-notify-tip {
  348. margin: 0 0 10px;
  349. padding: 8px 12px;
  350. font-size: 12px;
  351. line-height: 1.65;
  352. color: #8a6d3b;
  353. background: #fcf8e3;
  354. border: 1px solid #faebcc;
  355. border-radius: 3px;
  356. }
  357. .outward-detail-wrap .audit-score-rule-tip {
  358. margin: 0 0 8px;
  359. padding: 6px 10px;
  360. font-size: 12px;
  361. line-height: 1.5;
  362. color: #31708f;
  363. background: #f0f7fb;
  364. border: 1px solid #d9edf7;
  365. border-radius: 3px;
  366. }
  367. .outward-detail-wrap .audit-score-rule-tip strong {
  368. color: #245269;
  369. }
  370. .btn.procuremen-btn-slate {
  371. color: #fff !important;
  372. background-color: #4b5573 !important;
  373. border-color: #3e4659 !important;
  374. }
  375. .btn.procuremen-btn-slate:hover,
  376. .btn.procuremen-btn-slate:focus,
  377. .btn.procuremen-btn-slate:active {
  378. color: #fff !important;
  379. background-color: #3f485f !important;
  380. border-color: #353c4c !important;
  381. }
  382. </style>
  383. <div class="panel panel-default panel-intro outward-detail-wrap outward-confirm-readonly" style="border:0;box-shadow:none;"
  384. data-scydgy-id="{$scydgyId|htmlentities}"
  385. data-purchase-order-id="{$purchaseOrderId|default=0}"
  386. data-confirm-process-count="{$confirmProcessCount|default=1}"
  387. data-required-sids="{$requiredSidListJson|htmlentities}"
  388. data-all-details-by-sid="{$allDetailsBySidJson|htmlentities}">
  389. <div style="display:none;">{:token()}</div>
  390. {if $showPurchaseConfirm}
  391. {if $processDisplayRows}
  392. <div class="outward-confirm-process-wrap">
  393. <table class="table table-bordered table-condensed outward-confirm-process-table">
  394. <colgroup>
  395. <col style="width:100px"/>
  396. <col style="width:26%"/>
  397. <col style="width:120px"/>
  398. <col style="width:80px"/>
  399. <col style="width:72px"/>
  400. <col style="width:72px"/>
  401. <col style="width:80px"/>
  402. <col style="width:120px"/>
  403. </colgroup>
  404. <thead>
  405. <tr>
  406. <th class="text-center">订单号</th>
  407. <th class="outward-col-name">印件名称</th>
  408. <th>工序名称</th>
  409. <th class="text-center">单位</th>
  410. <th class="text-center">本次数量</th>
  411. <th class="text-center">最高限价</th>
  412. <th class="text-center">订法</th>
  413. <th class="outward-col-remark">备注</th>
  414. </tr>
  415. </thead>
  416. <tbody>
  417. {volist name="processDisplayRows" id="pr"}
  418. <tr>
  419. {if $pr.show_order_cells}
  420. <td class="text-center"{if condition="$pr.order_rowspan gt 1"} rowspan="{$pr.order_rowspan}"{/if}>{$pr.CCYDH|default=''}</td>
  421. <td class="outward-col-name"{if condition="$pr.order_rowspan gt 1"} rowspan="{$pr.order_rowspan}"{/if}>{$pr.CYJMC|default=''}</td>
  422. {/if}
  423. <td class="outward-process-name">{$pr.CGYMC|default=''}</td>
  424. <td class="text-center">{$pr.CDW|default=''}</td>
  425. <td class="text-center">{$pr.This_quantity|default=''}</td>
  426. <td class="text-center">{$pr.ceilingPrice|default=''}</td>
  427. <td class="text-center">{$pr.CDF|default=''}</td>
  428. <td class="outward-col-remark">{$pr.MBZ|default=''}</td>
  429. </tr>
  430. {/volist}
  431. </tbody>
  432. </table>
  433. </div>
  434. {/if}
  435. <div class="outward-confirm-deadline-row">
  436. <div class="outward-confirm-deadline-item">
  437. <label class="deadline-label">招标截止日期:</label>
  438. <div class="outward-confirm-deadline-wrap procuremen-sys-rq-split is-readonly" id="outward-confirm-sys-rq-wrap" title="仅查看,不可修改">
  439. <input type="hidden" id="outward-confirm-sys-rq" name="sys_rq" value="{$sysRq|default=''|htmlentities}"/>
  440. <div class="procuremen-sys-rq-fields">
  441. <input type="date" class="form-control procuremen-sys-rq-date" title="招标截止日期" readonly="readonly" disabled="disabled" tabindex="-1"/>
  442. <div class="procuremen-sys-rq-time-group">
  443. <select class="form-control procuremen-sys-rq-hour" title="时" disabled="disabled" tabindex="-1"></select>
  444. <span class="procuremen-sys-rq-colon">:</span>
  445. <select class="form-control procuremen-sys-rq-minute" title="分" disabled="disabled" tabindex="-1"></select>
  446. </div>
  447. </div>
  448. </div>
  449. </div>
  450. <div class="outward-confirm-deadline-item">
  451. <label class="deadline-label">交货截止日期:</label>
  452. <input type="text" class="form-control outward-confirm-delivery-deadline-input" value="{$deliveryDeadline|default=''|htmlentities}" title="交货截止日期" readonly="readonly" disabled="disabled" tabindex="-1" placeholder=""/>
  453. </div>
  454. {if !empty($orderScoreRuleName)}
  455. <div class="outward-confirm-deadline-item outward-order-type-item">
  456. <label class="deadline-label">订单类型:</label>
  457. <span class="outward-confirm-order-type-text" title="{$supplierScoreRuleText|default=''|htmlentities}">{$orderScoreRuleName|htmlentities}</span>
  458. </div>
  459. {/if}
  460. {if condition="$manualPicked"}
  461. <div class="outward-confirm-deadline-item outward-manual-pick-item">
  462. <span class="outward-manual-pick-tag"><i class="fa fa-check-circle"></i> 已指定供应商</span>
  463. <span class="outward-manual-pick-inline">
  464. {if condition="$pickedCompanyName"}
  465. <span class="outward-manual-pick-line"><strong>指定供应商:</strong>{$pickedCompanyName|htmlentities}</span>
  466. {/if}
  467. {if condition="$manualPickReason"}
  468. <span class="outward-manual-pick-line"><strong>指定说明:</strong>{$manualPickReason|htmlentities}</span>
  469. {/if}
  470. </span>
  471. </div>
  472. {/if}
  473. </div>
  474. <p class="audit-notify-tip">
  475. <i class="fa fa-exclamation-triangle"></i>
  476. <strong>重要提示:</strong>审批通过:将向中标供应商发送「已通过」短信、向未中标供应商发送「未通过」短信。
  477. </p>
  478. {if !empty($quoteVisible)}
  479. <p class="audit-score-rule-tip">
  480. <i class="fa fa-info-circle"></i>
  481. {if !empty($orderScoreRuleName)}
  482. <strong>订单类型:</strong>{$orderScoreRuleName|htmlentities}
  483. <span class="text-muted">|</span>
  484. {/if}
  485. <strong>评分规则:</strong>{$supplierScoreRuleText|default='(总分)=(质量得分×50%)+(价格得分);价格得分=(最低单价合计/本供应商单价合计)×50%×100'|htmlentities}
  486. </p>
  487. {/if}
  488. <p class="outward-confirm-block-title">供应商({$confirmPickCount|default=0} 家)</p>
  489. <div class="outward-confirm-company-wrap">
  490. <table class="table table-bordered table-condensed outward-confirm-company-table outward-confirm-readonly">
  491. <thead>
  492. <tr>
  493. <th class="text-center" style="width:52px;">选定</th>
  494. <th class="col-supplier-name">供应商名称</th>
  495. <th class="col-supplier-user">姓名</th>
  496. <th class="col-supplier-email">邮箱</th>
  497. <th class="col-supplier-phone">手机号</th>
  498. <th class="text-center col-rank" style="width:64px;">排名</th>
  499. <th class="text-center" style="width:88px;">质量得分</th>
  500. <th class="text-center" style="width:80px;" title="价格得分=(最低单价合计/本供应商单价合计)×价格权重%×100">价格得分</th>
  501. {if !empty($showServiceLeadScore)}
  502. <th class="text-center" style="width:80px;" title="交货得分取月度评审(当月按上月起往前查,无则默认50)">交货得分</th>
  503. {/if}
  504. <th class="text-center" style="width:72px;">总分</th>
  505. <th style="width:120px;">工序名称</th>
  506. <th class="text-center" style="width:112px;">单价</th>
  507. <th class="text-center" style="width:88px;">预估工期</th>
  508. <th class="text-center" style="width:118px;">交货日期</th>
  509. <th class="text-center" style="width:100px;">小计</th>
  510. <th class="text-center" style="width:148px;">操作时间</th>
  511. </tr>
  512. </thead>
  513. <tbody>
  514. {volist name="confirmPickGroups" id="co" key="k"}
  515. {volist name="co.pick_lines" id="ql" key="lk"}
  516. <tr class="outward-confirm-supplier-row" data-supplier-idx="{$k-1}">
  517. {if $lk == 1}
  518. <td class="text-center"{if condition="$co.display_rowspan gt 1"} rowspan="{$co.display_rowspan}"{/if} style="vertical-align:middle;">
  519. <label>
  520. <input type="checkbox" class="pod-company-pick-cb" name="pod_company_pick[]" value="{$k-1}" disabled="disabled" tabindex="-1"
  521. data-detail-picks="{$co.detail_picks_json|htmlentities}"
  522. {if condition="$pickedCompanyName neq '' && $pickedCompanyName eq $co.name"} checked="checked"{/if}/>
  523. </label>
  524. </td>
  525. <td class="col-supplier-name"{if condition="$co.display_rowspan gt 1"} rowspan="{$co.display_rowspan}"{/if} style="vertical-align:middle;">{$co.name|default=''|htmlentities}</td>
  526. <td class="col-supplier-user"{if condition="$co.display_rowspan gt 1"} rowspan="{$co.display_rowspan}"{/if} style="vertical-align:middle;">{$co.username|default=''|htmlentities}</td>
  527. <td class="col-supplier-email"{if condition="$co.display_rowspan gt 1"} rowspan="{$co.display_rowspan}"{/if} style="vertical-align:middle;">{:htmlentities(mask_email(isset($co['email']) ? $co['email'] : ''))}</td>
  528. <td class="col-supplier-phone"{if condition="$co.display_rowspan gt 1"} rowspan="{$co.display_rowspan}"{/if} style="vertical-align:middle;">{:htmlentities(mask_phone(isset($co['phone']) ? $co['phone'] : ''))}</td>
  529. <td class="text-center col-rank"{if condition="$co.display_rowspan gt 1"} rowspan="{$co.display_rowspan}"{/if} style="vertical-align:middle;font-size:17px;font-weight:700;">{if condition="!empty($quoteVisible)"}{$co.service_rank_text|default=''|htmlentities}{/if}</td>
  530. <td class="text-center"{if condition="$co.display_rowspan gt 1"} rowspan="{$co.display_rowspan}"{/if} style="vertical-align:middle;">{if condition="!empty($quoteVisible)"}{$co.service_quality_score_text|default=''|htmlentities}{/if}</td>
  531. <td class="text-center"{if condition="$co.display_rowspan gt 1"} rowspan="{$co.display_rowspan}"{/if} style="vertical-align:middle;"{if condition="!empty($quoteVisible)"} title="单价合计 {$co.service_price_sum_text|default=''|htmlentities}"{/if}>{if condition="!empty($quoteVisible)"}{$co.service_price_score_text|default=''|htmlentities}{/if}</td>
  532. {if !empty($showServiceLeadScore)}
  533. <td class="text-center"{if condition="$co.display_rowspan gt 1"} rowspan="{$co.display_rowspan}"{/if} style="vertical-align:middle;">{if condition="!empty($quoteVisible)"}{$co.service_lead_score_text|default=''|htmlentities}{/if}</td>
  534. {/if}
  535. <td class="text-center"{if condition="$co.display_rowspan gt 1"} rowspan="{$co.display_rowspan}"{/if} style="vertical-align:middle;font-weight:600;">{if condition="!empty($quoteVisible)"}{$co.service_score_text|default=''|htmlentities}{/if}</td>
  536. {/if}
  537. <td class="outward-process-name">{$ql.cgymc|default=''|htmlentities}</td>
  538. <td class="text-center{if condition="!empty($ql.amount_quote_pending)"} outward-quote-empty{elseif condition="$ql.amount_filled neq 1"} outward-quote-empty{/if}">{$ql.unit_price_text|default='未填写'|htmlentities}</td>
  539. <td class="text-center{if condition="!empty($ql.lead_days_quote_pending)"} outward-quote-empty{elseif condition="$ql.lead_days_filled neq 1"} outward-quote-empty{/if}">{$ql.lead_days_text|default='未填写'|htmlentities}</td>
  540. <td class="text-center{if condition="!empty($ql.delivery_quote_pending)"} outward-quote-empty{elseif condition="$ql.delivery_filled neq 1"} outward-quote-empty{/if}">{$ql.delivery_text|default='未填写'|htmlentities}</td>
  541. <td class="text-center">{$ql.subtotal_text|default=''|htmlentities}</td>
  542. <td class="text-center">{$ql.oper_time_text|default=''|htmlentities}</td>
  543. </tr>
  544. {/volist}
  545. {if !empty($co.has_remark)}
  546. <tr class="outward-confirm-supplier-row{if !empty($co.is_void)} text-muted{/if}" data-supplier-idx="{$k-1}">
  547. <td><strong>备注</strong></td>
  548. <td colspan="5" class="{if !empty($co.remark_quote_pending)}outward-quote-empty{/if}" style="text-align:left;vertical-align:middle;">{$co.remark|default=''|htmlentities}</td>
  549. </tr>
  550. {/if}
  551. {if !empty($co.has_total)}
  552. <tr class="active outward-confirm-supplier-row" data-supplier-idx="{$k-1}">
  553. <td><strong>总计</strong></td>
  554. <td></td>
  555. <td></td>
  556. <td></td>
  557. <td class="text-center"><strong>{$co.total_text|default=''|htmlentities}</strong></td>
  558. <td></td>
  559. </tr>
  560. {/if}
  561. {/volist}
  562. {empty name="confirmPickGroups"}
  563. <tr>
  564. <td colspan="20" class="text-center text-muted">暂无供应商报价</td>
  565. </tr>
  566. {/empty}
  567. </tbody>
  568. </table>
  569. </div>
  570. <div class="form-group layer-footer">
  571. <div class="row procuremen-outward-confirm-footer-row">
  572. <div class="col-xs-12 procuremen-outward-confirm-footer-btns">
  573. {if $auth->check('procuremen/purchaseconfirmpick')}
  574. <button type="button" style="margin-right: 20px" class="btn procuremen-btn-slate btn-embossed" id="btn-pod-purchase-confirm"><i class="fa fa-check"></i> 审批通过</button>
  575. {/if}
  576. {if $auth->check('procuremen/purchaseapprovalreject')}
  577. <button type="button" style="margin-right: 20px" class="btn btn-warning btn-embossed" id="btn-pod-purchase-reject"><i class="fa fa-undo"></i> 审批驳回</button>
  578. {/if}
  579. <button type="button" style="margin-right: 20px" class="btn btn-default btn-embossed" id="btn-pod-purchase-close"><i class="fa fa-times"></i> 关闭</button>
  580. </div>
  581. </div>
  582. </div>
  583. {else /}
  584. <div class="table-responsive outward-detail-table-wrap">
  585. <table class="table table-striped table-bordered table-hover outward-detail-table">
  586. <colgroup>
  587. <col style="width:48px" />
  588. <col style="width:118px" />
  589. <col style="width:200px" />
  590. <col style="width:92px" />
  591. <col style="width:128px" />
  592. <col style="width:200px" />
  593. <col style="width:240px" />
  594. <col style="width:108px" />
  595. <col style="width:148px" />
  596. </colgroup>
  597. <thead>
  598. <tr>
  599. <th class="col-sn">序号</th>
  600. <th>订单号</th>
  601. <th class="col-title">印件名称</th>
  602. <th class="col-amount">加工金额</th>
  603. <th class="col-delivery">交货日期</th>
  604. <th>供应商名称</th>
  605. <th>邮箱</th>
  606. <th>手机号</th>
  607. <th class="col-time">审核时间</th>
  608. </tr>
  609. </thead>
  610. <tbody>
  611. {volist name="rows" id="r"}
  612. <tr>
  613. <td class="text-center col-sn">{$i}</td>
  614. <td>{$r.CCYDH|default=''}</td>
  615. <td class="col-title">{$r.CYJMC|default=''}</td>
  616. <td class="col-amount">{$r.amount|default=''}</td>
  617. <td class="col-delivery">{$r.delivery|default=''}</td>
  618. <td>{$r.company_name|default=''}</td>
  619. <td>{:htmlentities(mask_email(isset($r['email']) ? $r['email'] : ''))}</td>
  620. <td>{:htmlentities(mask_phone(isset($r['phone']) ? $r['phone'] : ''))}</td>
  621. <td class="col-time">{$r.createtime_text|default=''}</td>
  622. </tr>
  623. {/volist}
  624. {empty name="rows"}
  625. <tr>
  626. <td colspan="{$detailColspan|default=9}" class="text-center text-muted">暂无记录</td>
  627. </tr>
  628. {/empty}
  629. </tbody>
  630. </table>
  631. </div>
  632. {/if}
  633. </div>