|
|
@@ -7,7 +7,7 @@
|
|
7
|
7
|
<div jarvis-widget id="standard-datatable-widget" data-widget-color="darken" data-widget-editbutton="false">
|
|
8
|
8
|
<header>
|
|
9
|
9
|
<span class="widget-icon"> <i class="fa fa-table"></i> </span>
|
|
10
|
|
- <h2>性质转变单审批列表</h2>
|
|
|
10
|
+ <h2>性质转变单列表</h2>
|
|
11
|
11
|
</header>
|
|
12
|
12
|
<div>
|
|
13
|
13
|
<div class="widget-body no-padding">
|
|
|
@@ -30,6 +30,14 @@
|
|
30
|
30
|
<option value="">请选择</option>
|
|
31
|
31
|
</select> 
|
|
32
|
32
|
</label>
|
|
|
33
|
+ <label>
|
|
|
34
|
+ 审批状态: 
|
|
|
35
|
+ <select class="form-control input-sm" ng-model="searchCondition.auditState">
|
|
|
36
|
+ <option value="">请选择</option>
|
|
|
37
|
+ <option value="14">审批中</option>
|
|
|
38
|
+ <option value="5">审批结束</option>
|
|
|
39
|
+ </select>
|
|
|
40
|
+ </label> 
|
|
33
|
41
|
<label><a class="btn btn-default btn-sm" ng-click="loadData()">
|
|
34
|
42
|
<i class="fa fa-search"></i> 查 询
|
|
35
|
43
|
</a>
|
|
|
@@ -50,52 +58,51 @@
|
|
50
|
58
|
<table class="table table-striped table-bordered table-hover" width="100%">
|
|
51
|
59
|
<thead>
|
|
52
|
60
|
<tr>
|
|
53
|
|
- <th> 序号</th>
|
|
54
|
|
- <th> 性质转变单编号</th>
|
|
55
|
|
- <th> 仓房名称</th>
|
|
56
|
|
- <th> 货位名称</th>
|
|
57
|
|
- <th> 粮油品种</th>
|
|
58
|
|
- <th> 仓内粮食数量(吨)</th>
|
|
59
|
|
- <th> 转前性质</th>
|
|
60
|
|
- <th> 转后性质</th>
|
|
61
|
|
- <th> 划转数量(吨)</th>
|
|
62
|
|
- <th> 划转时间</th>
|
|
63
|
|
- <th> 当前审批节点</th>
|
|
64
|
|
- <th> 操作</th>
|
|
|
61
|
+ <th data-class="expand" style="text-align:center;" width="3%"> 序号</th>
|
|
|
62
|
+ <th data-class="expand" style="text-align:center;" width="7%"> 性质转变单编号</th>
|
|
|
63
|
+ <th data-class="expand" style="text-align:center;" width="4%"> 仓房名称</th>
|
|
|
64
|
+ <th data-class="expand" style="text-align:center;" width="4%"> 货位名称</th>
|
|
|
65
|
+ <th data-class="expand" style="text-align:center;" width="5%"> 粮油品种</th>
|
|
|
66
|
+ <th data-class="expand" style="text-align:center;" width="7%"> 仓内粮食数量(吨)</th>
|
|
|
67
|
+ <th data-class="expand" style="text-align:center;" width="7%"> 转前性质</th>
|
|
|
68
|
+ <th data-class="expand" style="text-align:center;" width="7%"> 转后性质</th>
|
|
|
69
|
+ <th data-class="expand" style="text-align:center;" width="5%"> 划转数量(吨)</th>
|
|
|
70
|
+ <th data-class="expand" style="text-align:center;" width="8%"> 划转时间</th>
|
|
|
71
|
+ <th data-class="expand" style="text-align:center;" width="5%"> 审批状态</th>
|
|
|
72
|
+ <th data-class="expand" style="text-align:center;" width="4%"> 操作</th>
|
|
65
|
73
|
</tr>
|
|
66
|
74
|
</thead>
|
|
67
|
75
|
|
|
68
|
76
|
<tbody>
|
|
69
|
77
|
<tr ng-repeat="receiveNotice in pageInfo.list">
|
|
70
|
|
- <td>{{$index+1}}</td>
|
|
71
|
|
- <td>{{receiveNotice.lsxzzbdh}}</td>
|
|
72
|
|
- <td>{{storehouseObj[receiveNotice.houseId].storehouseName}}</td>
|
|
73
|
|
- <td>
|
|
|
78
|
+ <td data-class="expand" style="text-align:center;">{{$index+1}}</td>
|
|
|
79
|
+ <td data-class="expand" style="text-align:center;">{{receiveNotice.lsxzzbdh}}</td>
|
|
|
80
|
+ <td data-class="expand" style="text-align:center;">{{storehouseObj[receiveNotice.houseId].storehouseName}}</td>
|
|
|
81
|
+ <td data-class="expand" style="text-align:center;">
|
|
74
|
82
|
<span ng-if="receiveNotice.wareHouseId != null">{{wares[receiveNotice.wareHouseId].warehouseName}}</span>
|
|
75
|
83
|
<span ng-if="receiveNotice.wareHouseId == null">---</span>
|
|
76
|
84
|
</td>
|
|
77
|
|
- <td>{{dicData[receiveNotice.grainKind]}}</td>
|
|
78
|
|
- <td>{{receiveNotice.lssl}}</td>
|
|
79
|
|
- <td>{{dicData[receiveNotice.grainAttribute]}}</td>
|
|
80
|
|
- <td>{{dicData[receiveNotice.hzqlsxzdm]}}</td>
|
|
81
|
|
- <td>{{receiveNotice.count}}</td>
|
|
82
|
|
- <td>{{receiveNotice.hzrq | date:'yyyy-MM-dd HH:mm:ss'}}</td>
|
|
83
|
|
- <td>
|
|
84
|
|
- <div ng-switch="{{receiveNotice.auditState}}">
|
|
85
|
|
- <div ng-switch-when="0">仓储部经理审批</div>
|
|
86
|
|
- <div ng-switch-when="1">质检部经理审批</div>
|
|
87
|
|
- <div ng-switch-when="2">统计部经理审批</div>
|
|
88
|
|
- <div ng-switch-when="3">会计部经理审批</div>
|
|
89
|
|
- <div ng-switch-when="4">库领导审批</div>
|
|
90
|
|
- </div>
|
|
91
|
|
- </td>
|
|
92
|
|
- <td>
|
|
93
|
|
- <a href-void ng-click="auditView(receiveNotice.id)"><i class="fa fa-info-circle"></i>审批</a>
|
|
|
85
|
+ <td data-class="expand" style="text-align:center;">{{dicData[receiveNotice.grainKind]}}</td>
|
|
|
86
|
+ <td data-class="expand" style="text-align:center;">{{receiveNotice.lssl}}</td>
|
|
|
87
|
+ <td data-class="expand" style="text-align:center;">{{dicData[receiveNotice.grainAttribute]}}</td>
|
|
|
88
|
+ <td data-class="expand" style="text-align:center;">{{dicData[receiveNotice.hzqlsxzdm]}}</td>
|
|
|
89
|
+ <td data-class="expand" style="text-align:center;">{{receiveNotice.count}}</td>
|
|
|
90
|
+ <td data-class="expand" style="text-align:center;">{{receiveNotice.receiveTime | date:'yyyy-MM-dd HH:mm:ss'}}</td>
|
|
|
91
|
+ <td data-class="expand" style="text-align:center;">
|
|
|
92
|
+ <span ng-if="receiveNotice.auditState == 0">仓储部经理审批中</span>
|
|
|
93
|
+ <span ng-if="receiveNotice.auditState == 1">质检部经理审批中</span>
|
|
|
94
|
+ <span ng-if="receiveNotice.auditState == 2">统计部经理审批中</span>
|
|
|
95
|
+ <span ng-if="receiveNotice.auditState == 3">会计审批中</span>
|
|
|
96
|
+ <span ng-if="receiveNotice.auditState == 4">库领导审批中</span>
|
|
|
97
|
+ <span ng-if="receiveNotice.auditState == 5">审批结束</span>
|
|
|
98
|
+ </td>
|
|
|
99
|
+ <td data-class="expand" style="text-align:center;">
|
|
|
100
|
+ <a href-void ng-click="auditView(receiveNotice.id)"><i class="fa fa-info-circle"></i>查看</a>
|
|
94
|
101
|
</td>
|
|
95
|
102
|
</tr>
|
|
96
|
103
|
</tbody>
|
|
97
|
104
|
</table>
|
|
98
|
|
- <div smart-include="app/layout/partials/page.tpl.html"></div>
|
|
|
105
|
+ <div smart-include="app/layout/partials/page.tpl.html"></div>
|
|
99
|
106
|
</div>
|
|
100
|
107
|
</div>
|
|
101
|
108
|
</div>
|