| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247 |
- <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-notify-tip {
- margin: 0 0 10px;
- padding: 8px 12px;
- font-size: 12px;
- line-height: 1.65;
- color: #8a6d3b;
- background: #fcf8e3;
- border: 1px solid #faebcc;
- border-radius: 3px;
- }
- .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: 980px;
- }
- .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-table td {
- padding: 6px 8px;
- vertical-align: middle;
- word-wrap: break-word;
- }
- .audit-issue-wrap .audit-quote-pick-table tbody tr {
- cursor: pointer;
- }
- .audit-issue-wrap .audit-quote-pick-table td label {
- margin: 0;
- font-weight: normal;
- cursor: pointer;
- }
- .audit-issue-wrap .audit-quote-item {
- margin-bottom: 6px;
- font-size: 12px;
- line-height: 1.5;
- }
- .audit-issue-wrap .audit-quote-item:last-child {
- margin-bottom: 0;
- }
- .audit-issue-wrap .audit-deadline-row {
- display: flex;
- align-items: flex-start;
- flex-wrap: wrap;
- gap: 8px 12px;
- margin: 0 0 12px;
- font-size: 13px;
- position: relative;
- z-index: 61;
- overflow: visible;
- }
- .audit-issue-wrap .audit-deadline-row .audit-field-label {
- font-weight: 600;
- color: #333;
- white-space: nowrap;
- flex-shrink: 0;
- margin: 7px 0 0;
- }
- .audit-issue-wrap .audit-deadline-input-wrap {
- position: relative;
- flex: 0 0 auto;
- z-index: 62;
- }
- .audit-issue-wrap .audit-sys-rq-input {
- width: 240px;
- max-width: 240px;
- min-width: 180px;
- }
- .audit-issue-wrap .audit-op-cell {
- white-space: nowrap;
- }
- .audit-issue-wrap .audit-op-cell .btn {
- padding: 2px 7px;
- font-size: 12px;
- margin: 0 2px 2px 0;
- }
- .audit-issue-wrap .audit-table-wrap.audit-quote-table-wrap {
- max-height: 360px;
- }
- .audit-issue-wrap .audit-quote-detail-table {
- min-width: 1180px;
- }
- .audit-issue-wrap .audit-quote-detail-table td.audit-quote-empty {
- color: #e67e22;
- }
- </style>
- <div class="audit-issue-wrap">
- <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>
- <th style="min-width:120px;">备注</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>
- <td>{$pr.MBZ|default=''}</td>
- </tr>
- {/volist}
- </tbody>
- </table>
- </div>
- <form id="audit-issue-form" class="form-horizontal" role="form" style="margin-bottom:0;">
- {:token()}
- <input type="hidden" name="scydgy_id" value="{$scydgyId|htmlentities}"/>
- <input type="hidden" id="audit-quote-groups-json" value="{$quoteGroupsJson|htmlentities}"/>
- <div class="audit-deadline-row">
- <span class="audit-field-label">截止时间:<span class="text-danger">*</span></span>
- <div class="audit-deadline-input-wrap">
- <input type="text" id="audit-sys-rq" name="sys_rq" class="form-control datetimepicker audit-sys-rq-input"
- value="{$sysRq|default=''|htmlentities}"
- data-date-format="YYYY-MM-DD HH:mm:ss" data-use-current="true"
- placeholder="请选择年月日时分" autocomplete="off"/>
- </div>
- </div>
- </form>
- <p class="audit-notify-tip">
- <i class="fa fa-exclamation-triangle"></i>
- <strong>重要提示:</strong>请查看各供应商报价,<strong>选定唯一一家</strong>后点击「确认供应商」进入采购终审(本步<strong>任何发送短信通知</strong>)。
- 需再次提醒报价时,请在右侧<strong>操作</strong>列点击「发邮件」或「发短信」。
- </p>
- <div class="audit-table-wrap audit-quote-table-wrap">
- <table class="table table-bordered table-condensed audit-table audit-quote-pick-table audit-quote-detail-table">
- <thead>
- <tr>
- <th class="text-center" style="width:42px;">选定</th>
- <th style="min-width:140px;">供应商名称</th>
- <th style="width:88px;">姓名</th>
- <th style="min-width:160px;">邮箱</th>
- <th style="width:120px;">手机号</th>
- <th style="min-width:120px;">工序名称</th>
- <th class="text-center" style="width:88px;">单价</th>
- <th class="text-center" style="width:100px;">交货日期</th>
- <th class="text-center" style="width:88px;">小计</th>
- <th class="text-center" style="width:120px;">操作</th>
- </tr>
- </thead>
- <tbody id="audit-quote-tbody">
- {volist name="quoteGroups" id="co" key="k"}
- {volist name="co.lines" id="ln" key="lk"}
- <tr>
- {if $lk == 1}
- <td class="text-center"{if condition="$co.display_rowspan gt 1"} rowspan="{$co.display_rowspan}"{/if} style="vertical-align:middle;">
- <label>
- <input type="radio" class="audit-quote-pick" name="audit_quote_pick" value="{$co.name|default=''|htmlentities}"
- {if condition="$pickedCompanyName neq '' && $pickedCompanyName eq $co.name"} checked="checked"{/if}/>
- </label>
- </td>
- <td{if condition="$co.display_rowspan gt 1"} rowspan="{$co.display_rowspan}"{/if} style="vertical-align:middle;">{$co.name|default=''|htmlentities}</td>
- <td{if condition="$co.display_rowspan gt 1"} rowspan="{$co.display_rowspan}"{/if} style="vertical-align:middle;">{$co.username|default=''|htmlentities}</td>
- <td{if condition="$co.display_rowspan gt 1"} rowspan="{$co.display_rowspan}"{/if} style="vertical-align:middle;">{$co.email|default=''|htmlentities}</td>
- <td{if condition="$co.display_rowspan gt 1"} rowspan="{$co.display_rowspan}"{/if} style="vertical-align:middle;">{$co.phone|default=''|htmlentities}</td>
- {/if}
- <td>{$ln.cgymc|default=''|htmlentities}</td>
- <td class="text-center{if condition="$ln.amount_filled neq 1"} audit-quote-empty{/if}">{$ln.unit_price_text|default='未填写'|htmlentities}</td>
- <td class="text-center{if condition="$ln.delivery_filled neq 1"} audit-quote-empty{/if}">{$ln.delivery_show|default='未填写'|htmlentities}</td>
- <td class="text-center">{$ln.subtotal_text|default=''|htmlentities}</td>
- {if $lk == 1}
- <td class="text-center audit-op-cell"{if condition="$co.display_rowspan gt 1"} rowspan="{$co.display_rowspan}"{/if} style="vertical-align:middle;">
- <button type="button" class="btn btn-default btn-xs audit-row-send-email" data-company="{$co.name|default=''|htmlentities}">发邮件</button>
- <button type="button" class="btn btn-default btn-xs audit-row-send-sms" data-company="{$co.name|default=''|htmlentities}">发短信</button>
- </td>
- {/if}
- </tr>
- {/volist}
- {if !empty($co.has_total)}
- <tr class="active">
- <td colspan="3" class="text-right"><strong>总计</strong></td>
- <td class="text-center"><strong>{$co.total_text|default=''|htmlentities}</strong></td>
- </tr>
- {/if}
- {/volist}
- </tbody>
- </table>
- </div>
- <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: 12px" class="btn btn-primary btn-embossed" id="btn-audit-issue-submit">
- <i class="fa fa-check"></i> 确认
- </button>
- <button type="button" class="btn btn-default btn-embossed" id="btn-audit-issue-close">
- <i class="fa fa-times"></i> 关闭
- </button>
- </div>
- </div>
- </div>
- </div>
|