Este commit está contenido en:
2025-02-20 14:59:35 +08:00
padre d7be84fac6
commit d4a3bb8ffc
Se han modificado 2541 ficheros con 336536 adiciones y 0 borrados
@@ -0,0 +1,46 @@
<#include "/ztmpl/zhiqim_manager/"+themeMain+"/define.htm"/>
<input id="creater" type="hidden" value="${creater}">
<input id="productTypeId" type="hidden" value="${productTypeId}">
<#-- 列表 -->
<table class="z-table z-bordered z-h40-tr z-pd5 z-bg-white z-text-center" style="height:auto;">
<tr bgcolor="${zmr_thead_bgcolor}">
<td width="140">订单号</td>
<td width="100">订单类型</td>
<td width="150">所属组织</td>
<td width="130">旺旺号</td>
<td width="120">店铺</td>
<td width="110">设计师</td>
<td width="90">录单时间</td>
<td width="110">倒计时</td>
<td width="90">领单时间</td>
<td width="110">订单状态</td>
<td width="160">进度备注</td>
<td width="*" style="min-width:220px">产品</td>
<td width="80">订单金额</td>
</tr>
${zhiqim_manager_tr_no_record(pageResult, 12, "暂时没有滞留单")}
<#for item : pageResult.list()>
<#var isCountDown=CalculationUtil.retentDealCountDownCal(request,item.getDesignId())/>
<input id="buyerNick_${item.getDesignId()}" type="hidden" value="${item.getBuyerNick()}">
<input id="userQq_${item.getDesignId()}" type="hidden" value="${item.getUserQq()}">
<tr class="z-pointer <#if isCountDown == "">z-text-red</#if>" ${zhiqim_manager_tr_onmouse()} ${zhiqim_manager_tr_click_radio()}>
<td>${item.getDesignId()}</td>
<td>${DraftConstants.get(item.getDraftType())}</td>
<td>${ZmrOrgDao.getOrgName(request,item.getOrgId())}</td>
<td>${item.getBuyerNick()}</td>
<td>${item.getShopNick()}</td>
<td>${item.getDesigner()}</td>
<td>${Sqls.toDateTimeString(item.getCreateTime())}</td>
<td>
<#var effectiveTime = typeMap.get(item.getTypeId()).getEffectiveTime()/>
<span id="time_${item.getDesignId()}" data-effectiveTime="${effectiveTime}" data-createTime="${item.getCreateTime()}"></span>
</td>
<td>${Sqls.toDateTimeString(item.getDesignReceiveTime())}</td>
<td>${StatusConstants.getStatus(item.getStatus())}</td>
<td>${progressNoteMap.get(item.getDesignId())}</td>
<td>${item.getOrderText()}</td>
<td>${Amounts.toYuanMustRadix(item.getAmount())}</td>
</tr>
</#for>
</table>
${zhiqim_manager_paging_jsMethod(pageResult, "doQueryRetentionDealOrder")}