| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <#include "/ztmpl/zhiqim_manager/"+themeMain+"/define.htm"/>
- <table class="z-table z-bordered z-bg-white z-text-center" style="background-color: #efefef;">
- <tr class="z-h40 z-text-center z-bg-gray">
- <td width="120">订单号</td>
- <td width="130">旺旺号</td>
- <td width="*">产品</td>
- <td width="120">组织</td>
- <td width="120">设计师</td>
- <td width="100">订单状态</td>
- <td width="140">进度备注</td>
- <td width="140">领单时间</td>
- <td width="140">初稿时间</td>
- <td width="140">定稿时间</td>
- <td width="100">超时时效</td>
- </tr>
- <#if result.size() == 0>
- <tr valign="middle" class="z-h40 z-text-center z-bg-white">
- <td colspan="12">暂不存在定稿超时订单信息</td>
- </tr>
- </#if>
- <#var typeMap = DesignTypeDao.mapAll()/>
- <#for item : pageResult.list()>
- <#var effectiveTime = Validates.isEmpty(typeMap) ? 0 : ( typeMap.containsKey(item.getTypeId()) ? typeMap.get(item.getTypeId()).getEffectiveEndTime() : 0)/>
- <tr align="center" class="z-h40 z-pointer" bgcolor="${zhiqim_manager_tr_bg(item_index)}">
- <td>${item.getDesignId()}</td>
- <td>${item.getBuyerNick()}</td>
- <td>${item.getOrderText()}</td>
- <td>${ZmrOrgDao.getOrgName(request, item.getOrgId())}</td>
- <td>${item.getDesigner()}</td>
- <td>${StatusConstants.getStatus(item.getStatus())}</td>
- <td>${progressNoteMap.get(item.getDesignId())}</td>
- <td>${Sqls.toDateTimeString(item.getDesignBeginTime())}</td>
- <td>${Sqls.toDateTimeString(item.getDesignDraftTime())}</td>
- <td>${Sqls.toDateTimeString(item.getDesignEndTime())}</td>
- <td>
- <#if item.getStatus() gte "55" >
- <span class="z-pointer z-text-ellipsis" data-role="z-tooltip" data-options="placement:top;top:5;align:center;width:140px;" data-text="定稿时间-领单时间"><span class="z-text-red">${CalculationUtil.dateTimeTran(DateTimes.compareMinute(item.getDesignEndTime(), item.getDesignBeginTime()) - effectiveTime)}</span></span>
- <#else>
- <span class="z-pointer z-text-ellipsis" data-role="z-tooltip" data-options="placement:top;top:5;align:center;width:140px;" data-text="当前时间-领单时间"><span class="z-text-red">${CalculationUtil.dateTimeTran(DateTimes.compareMinute(Sqls.nowTimestamp(), item.getDesignBeginTime()) - effectiveTime)}</span></span>
- </#if>
- </td>
- </tr>
- </#for>
- </table>
- ${zhiqim_manager_paging_jsMethod(pageResult, "doQueryCompleteTimeoutOrderInfo")}
|