| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- <style>
- body.is-dialog .audit-issue-wrap {
- padding: 12px 14px 0;
- max-width: 100%;
- box-sizing: border-box;
- }
- .audit-issue-wrap .audit-block-title {
- margin: 0 0 6px;
- font-weight: 600;
- font-size: 13px;
- color: #333;
- }
- .audit-issue-wrap .audit-table-wrap {
- max-height: 240px;
- overflow: auto;
- margin-bottom: 12px;
- border: 1px solid #e5e5e5;
- }
- .audit-issue-wrap .audit-process-table {
- margin: 0;
- font-size: 12px;
- table-layout: fixed;
- width: 100%;
- min-width: 860px;
- }
- .audit-issue-wrap .audit-process-table th {
- background: #f5f5f5;
- white-space: nowrap;
- font-weight: 600;
- padding: 6px 8px;
- vertical-align: middle;
- }
- .audit-issue-wrap .audit-process-table th.text-center,
- .audit-issue-wrap .audit-process-table td.text-center {
- text-align: center;
- }
- .audit-issue-wrap .audit-process-table td {
- padding: 6px 8px;
- vertical-align: middle;
- word-wrap: break-word;
- }
- .audit-issue-wrap .audit-table {
- margin: 0;
- font-size: 12px;
- }
- .audit-issue-wrap .audit-table th {
- background: #f5f5f5;
- white-space: nowrap;
- }
- .audit-issue-wrap .audit-quote-lines {
- margin: 0;
- padding: 0;
- font-size: 11px;
- color: #555;
- line-height: 1.65;
- }
- .audit-issue-wrap .audit-quote-line {
- margin: 0;
- padding: 0;
- list-style: none;
- }
- .audit-issue-wrap .audit-quote-line + .audit-quote-line {
- margin-top: 4px;
- }
- .audit-issue-wrap .audit-quote-line .quote-gymc {
- color: #333;
- }
- .audit-issue-wrap .audit-quote-line .quote-ok {
- color: #3c763d;
- }
- .audit-issue-wrap .audit-quote-line .quote-wait {
- color: #999;
- }
- .audit-issue-wrap .audit-quote-line .quote-meta {
- color: #666;
- }
- .audit-issue-wrap .audit-quote-line .quote-empty {
- color: #d9534f;
- }
- .audit-issue-wrap .audit-pick-table td label {
- margin: 0;
- font-weight: normal;
- cursor: pointer;
- }
- .audit-issue-wrap tr.audit-row-no-quote td {
- color: #666;
- }
- .audit-issue-wrap tr.audit-row-no-quote label {
- cursor: pointer;
- }
- .audit-issue-wrap .text-quote-ok {
- color: #3c763d;
- }
- .audit-issue-wrap .text-quote-wait {
- color: #999;
- }
- </style>
- <div class="audit-issue-wrap">
- <div class="audit-block-title">本单工序({$processCount|default='1'} 项)</div>
- <div class="audit-table-wrap">
- <table class="table table-bordered table-condensed audit-process-table">
- <thead>
- <tr>
- <th class="text-center" style="width:100px;">订单号</th>
- <th style="min-width:160px;">印件名称</th>
- <th>工序名称</th>
- <th class="text-center" style="width:56px;">单位</th>
- <th class="text-center" style="width:72px;">工作量</th>
- <th class="text-center" style="width:72px;">本次数量</th>
- <th class="text-center" style="width:72px;">最高限价</th>
- <th class="text-center" style="width:80px;">订法</th>
- </tr>
- </thead>
- <tbody>
- {volist name="processDisplayRows" id="pr"}
- <tr>
- {if $pr.show_order_cells}
- <td class="text-center"{if condition="$pr.order_rowspan gt 1"} rowspan="{$pr.order_rowspan}"{/if}>{$pr.CCYDH|default=''}</td>
- <td{if condition="$pr.order_rowspan gt 1"} rowspan="{$pr.order_rowspan}"{/if}>{$pr.CYJMC|default=''}</td>
- {/if}
- <td>{$pr.CGYMC|default=''}</td>
- <td class="text-center">{$pr.CDW|default=''}</td>
- <td class="text-center">{$pr.NGZL|default=''}</td>
- <td class="text-center">{$pr.This_quantity|default=''}</td>
- <td class="text-center">{$pr.ceilingPrice|default=''}</td>
- <td class="text-center">{$pr.CDF|default=''}</td>
- </tr>
- {/volist}
- </tbody>
- </table>
- </div>
- <div class="audit-block-title">供应商报价(请勾选一家)</div>
- <div class="audit-table-wrap">
- <table class="table table-bordered table-condensed audit-table audit-pick-table">
- <thead>
- <tr>
- <th style="width:42px;"></th>
- <th>公司名称</th>
- <th>联系人</th>
- <th>邮箱</th>
- <th>手机号</th>
- <th>报价明细</th>
- </tr>
- </thead>
- <tbody id="audit-pick-tbody">
- {volist name="supplierGroups" id="co" key="k"}
- <tr class="{if !$co.has_quote}audit-row-no-quote{/if}" data-has-quote="{if $co.has_quote}1{else /}0{/if}">
- <td class="text-center">
- <label>
- <input type="radio" name="audit_pick_company" class="audit-pick-radio" value="{$k-1}"/>
- </label>
- </td>
- <td>{$co.name|default=''}</td>
- <td>{$co.username|default=''}</td>
- <td>{$co.email|default=''}</td>
- <td>{$co.phone|default=''}</td>
- <td>
- {if isset($co.lines) && $co.lines}
- <div class="audit-quote-lines">
- {volist name="co.lines" id="ln"}
- <div class="audit-quote-line">
- <span class="quote-meta">工序名称:</span><span class="quote-gymc">{$ln.cgymc|default='工序'}</span>
- <span class="quote-meta"> · 金额 </span>{if condition="$ln.amount_filled"}<span>{$ln.amount_show}</span>{else /}<span class="quote-empty">未填</span>{/if}<span class="quote-meta">,货期 </span>{if condition="$ln.delivery_filled"}<span>{$ln.delivery_show}</span>{else /}<span class="quote-empty">未填</span>{/if}
- </div>
- {/volist}
- </div>
- {else /}
- <span class="text-quote-wait">待报价</span>
- {/if}
- </td>
- </tr>
- {/volist}
- </tbody>
- </table>
- </div>
- <form id="audit-issue-form" class="form-horizontal" role="form">
- {:token()}
- <input type="hidden" name="scydgy_id" value="{$scydgyId|htmlentities}"/>
- <input type="hidden" id="audit-supplier-groups-json" value="{$supplierGroupsJson|htmlentities}"/>
- </form>
- <div class="form-group layer-footer">
- <div class="row procuremen-audit-issue-footer-row">
- <div class="col-xs-12 procuremen-audit-issue-footer-btns">
- <button type="button" style="margin-right: 20px" class="btn btn-primary btn-embossed" id="btn-audit-issue-submit">
- <i class="fa fa-check"></i> 确认
- </button>
- <button type="button" style="margin-right: 20px" class="btn btn-default btn-embossed" id="btn-audit-issue-close">
- <i class="fa fa-times"></i> 关闭
- </button>
- </div>
- </div>
- </div>
- </div>
|