101 라인
5.5 KiB
Plaintext
101 라인
5.5 KiB
Plaintext
<#def designatedPath="/orderCheckWait.htm"/>
|
|
${Styles.htmlOverflowHidden()}
|
|
${Scripts.src("/zinc/js/global_2019010801.js")}
|
|
${yangcai_calc_Left_width_height(400, 110)}
|
|
<#var data="data=copy,userText,CustomFile,EndFile,WorkFile,FristThumFile,TbzFile"/>
|
|
<#var addRule="addRule=CustomFile,EndFile,WorkFile,TbzFile"/>
|
|
<#var delRule="delRule=CustomFile,EndFile,WorkFile,TbzFile"/>
|
|
|
|
${zhiqim_manager_breadcrumb("已审订单")}
|
|
${zhiqim_manager_content()}
|
|
|
|
<#-- 导航 -->
|
|
<div data-role="z-tabnav" class="z-tabnav-main z-mg-b20 ${zmr_color_class}">
|
|
<nav>
|
|
<ul>
|
|
<#if ZmrPathRule.check(request, "/orderCheckWait.htm")><li onclick="Z.L.href('/orderCheckWait.htm');">待审订单</li></#if>
|
|
<li class="z-active">已审订单</li>
|
|
<#if ZmrPathRule.check(request, "/orderCheckWait.htm")><li onclick="Z.L.href('/orderCheckBackList.htm');">退回列表</li></#if>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
|
|
<#-- 左侧功能 -->
|
|
<div id="left" class="z-overflow-y-auto z-overflow-x-hidden z-relative-left">
|
|
|
|
<#-- 查询条件 -->
|
|
${zhiqim_manager_title("查询条件")}
|
|
<form name="theFrom" id="theFrom" >
|
|
<table class="z-table z-bordered z-pd6 z-bg-white">
|
|
<tr class="z-h40">
|
|
<td width="30%">订单号:<input name="designId" class="${zmr_color_class} z-input z-w160" value="${designId}" maxlength="64" placeholder="订单号"></td>
|
|
<td width="34%">产品类型:<select name="typeId" class="z-select z-w200" data-role="z-select" data-class="${zmr_color_class}">
|
|
<option value="">全部</option>
|
|
<#for item : typeList>
|
|
<option value="${item.getTypeId()}" <#if typeId == item.getTypeId()>selected</#if>>${item.getTypeName()}</option>
|
|
</#for>
|
|
</select>
|
|
</td>
|
|
<td>审核时间:<input id="startDate" name="startDate" class="z-input z-w90 ${zmr_color_class}" readonly="true" onfocus="Z.date(this);" value="${startDate}"> -
|
|
<input id="endDate" name="endDate" class="z-input z-mg-l3 z-w90 ${zmr_color_class}" readonly="true" onfocus="Z.date(this);" value="${endDate}">
|
|
</td>
|
|
</tr>
|
|
<tr class="z-h40">
|
|
<td>旺旺号:<input name="buyerNick" class="${zmr_color_class} z-input z-w160" value="${buyerNick}" maxlength="64" placeholder="旺旺号"></td>
|
|
<td>其他信息:<input class="${zmr_color_class} z-input z-w200" id="otherInfo" name="otherInfo" maxlength="64" value="${otherInfo}" placeholder="收件人、电话、对稿手机"></td>
|
|
<td>
|
|
<button class="z-button z-large z-w120 z-mg-r15 ${zmr_color_class}">查询</button><button class="z-button z-large" type="button" onclick="Z.FM.clearForm(this.form);">清空</button>
|
|
</td>
|
|
</tr>
|
|
<tr class="z-h40" align="center">
|
|
<td colspan="3">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
|
|
<#-- 列表 -->
|
|
<div class="z-overflow-auto z-bd-r">
|
|
<table class="z-table z-bordered z-h40-tr z-pd5 zi-bd-r-none z-bg-white z-text-center" style="width:1300px">
|
|
<tr bgcolor="${zmr_thead_bgcolor}">
|
|
<td width="50"><input name="allDesignId" type="checkbox" data-role="z-checkbox" data-class="${zmr_color_class}" value="${pageResult.pageNo()}" onclick="Z.FM.doSelectCheckBox('designId', this.checked);"> 选择</td>
|
|
<td width="80">订单号</td>
|
|
<td width="80">商户</td>
|
|
<td width="80">稿件类型</td>
|
|
<td width="80">订单金额</td>
|
|
<td width="60">产品类型</td>
|
|
<td width="90">审稿时间</td>
|
|
<td width="90">审稿人</td>
|
|
<td width="150">特殊工艺</td>
|
|
<td width="80">设计师</td>
|
|
</tr>
|
|
${zhiqim_manager_tr_no_record(pageResult, 20, "暂时没有订单信息")}
|
|
<#for item : pageResult.list()>
|
|
<input id="buyerNick_${item.getDesignId()}" type="hidden" value="${item.getBuyerNick()}">
|
|
<input id="userQq_${item.getDesignId()}" type="hidden" value="${item.getUserQq()}">
|
|
<tr class="z-pointer" ${zhiqim_manager_tr_onmouse()} ${zhiqim_manager_tr_click_checkbox()}>
|
|
<td><input name="designId" type="checkbox" data-role="z-checkbox" data-class="${zmr_color_class}" value="${item.getDesignId()}" onclick="Z.L.href('attaFileList.htm?designId=${item.getDesignId()}&${data}&${addRule}&${delRule}', attaFileList);"></td>
|
|
<td>${item.getDesignId()}</td>
|
|
<td>${Global.get(DesignMerchantCache.class).getName(item.getMerchantId())}</td>
|
|
<td>${DraftConstants.get(item.getDraftType())}</td>
|
|
<td>${Amounts.toYuanMustRadix(item.getAmount())}</td>
|
|
<td>${Global.get(DesignTypeCache.class).getName(item.getTypeId())}</td>
|
|
<td>${Sqls.toDateTimeString(item.getCheckTime())}</td>
|
|
<td>${item.getChecker()}</td>
|
|
<td>${item.getPrintSpecial()}</td>
|
|
<td>${item.getDesigner()}</td>
|
|
</tr>
|
|
</#for>
|
|
</table>
|
|
</div>
|
|
${zhiqim_manager_paging(pageResult, "orderCheckFinish.htm")}
|
|
</div>
|
|
${zhiqim_manager_content_end()}
|
|
|
|
<#--右侧文件信息-->
|
|
<div class="z-fixed z-pd10 z-bd-l z-bg-white z-h100p" style="top:${zmr_topnav_height}px;right:0;width:400px;z-index:50;">
|
|
<iframe name="attaFileList" src="attaFileList.htm?${data}&${addRule}&${delRule}" frameborder="0" scrolling="auto" height="100%" width="100%"></iframe>
|
|
</div>
|
|
|
|
<#-- 联系旺旺&联系QQ弹窗框 -->
|
|
<iframe id="openFrm" class="z-hide" src="about:blank"></iframe> |