cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[#if info?? && info.datas?? && info.datas?size>0]
<table class="display_form common_list_table">
    <tr class="title">
        <td width="5%">序号</td>
        <td width="15%">盘点单号</td>
        <td width="15%">工单名称</td>
        <td width="9%">账面总数</td>
        <td width="9%">盘点总数</td>
        <td width="7%">盘盈</td>
        <td width="7%">盘亏</td>
        <td width="7%">申请人</td>
        <td width="10%">申请时间</td>
        <td width="7%">状态</td>
        <td width="15%">操作</td>
    </tr>
    [#list info.datas as item]
        <tr>
            <td>${info.rowNum+item_index+1}</td>
            <td>${item.order_code}</td>
            <td>${item.order_name}</td>
            <td>${item.book_num}</td>
            <td>${item.inventory_num}</td>
            <td>${item.overage_num}</td>
            <td>${item.loss_num}</td>
            <td>${item.create_name}</td>
            <td>${DateUtil.format("yyyy-MM-dd HH:mm",item.gmt_create)}</td>
            <td>${Constants.getKCPD_STATE(item.state)}</td>
            <td class="list_btnmore_wrap">
                <a class="blue_txt" href="javascript:detail('${item.id}');"><span>详情</span></a>
            </td>
        </tr>
    [/#list]
</table>
[#else]
<div class="loadpos"><span class="nodata"></span></div>
[/#if]