|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+<!-- MAIN CONTENT -->
|
|
|
2
|
+<div id="content">
|
|
|
3
|
+ <!-- widget grid -->
|
|
|
4
|
+ <section widget-grid id="widget-grid">
|
|
|
5
|
+ <div class="row">
|
|
|
6
|
+ <article class="col-sm-12">
|
|
|
7
|
+ <div jarvis-widget id="standard-datatable-widget" data-widget-color="darken" data-widget-editbutton="false">
|
|
|
8
|
+ <div>
|
|
|
9
|
+ <div class="widget-body no-padding">
|
|
|
10
|
+ <div id="DataTables_Table_1_wrapper" class="dataTables_wrapper form-inline no-footer">
|
|
|
11
|
+ <div class="dt-toolbar">
|
|
|
12
|
+ <div class="col-xs-12 col-sm-8">
|
|
|
13
|
+ <div class="form-group">
|
|
|
14
|
+ <label> 仓房名称: 
|
|
|
15
|
+ <select ng-model="searchCondition.houseId" class="form-control input-sm"
|
|
|
16
|
+ ng-options="store.storehouseId as store.storehouseName for store in storelist">
|
|
|
17
|
+ <option value="">请选择</option>
|
|
|
18
|
+ </select> 
|
|
|
19
|
+ </label>
|
|
|
20
|
+ <label> 粮油品种:
|
|
|
21
|
+ <select ng-model="searchCondition.pz" class="form-control input-sm"
|
|
|
22
|
+ ng-options="enum.enumid as enum.enumname for enum in dicDataList[1061]">
|
|
|
23
|
+ <option value="">请选择</option>
|
|
|
24
|
+ </select> 
|
|
|
25
|
+ </label>
|
|
|
26
|
+ <a class="btn btn-default btn-sm" ng-click="loadData()">
|
|
|
27
|
+ <i class="fa fa-search"></i> 查 询
|
|
|
28
|
+ </a>
|
|
|
29
|
+ <a class="btn btn-default btn-sm" ng-click="getFoodExport()">
|
|
|
30
|
+ <i class="fa fa-search"></i> 导 出
|
|
|
31
|
+ </a>
|
|
|
32
|
+ <a ng-href="{{fileAllpath}}" id="foodExport" ng-hide="true"></a>
|
|
|
33
|
+ </div>
|
|
|
34
|
+ </div>
|
|
|
35
|
+
|
|
|
36
|
+ <div class="col-sm-3 col-xs-4 hidden-xs">
|
|
|
37
|
+ <div class="dataTables_length">
|
|
|
38
|
+ <label>每页显示 <select ng-model="pageInfo.pageSize" ng-change="loadData()"
|
|
|
39
|
+ ng-options="num as num for num in [10,25,50,100]"
|
|
|
40
|
+ class="form-control input-sm"></select> 条
|
|
|
41
|
+ </label>
|
|
|
42
|
+ </div>
|
|
|
43
|
+ </div>
|
|
|
44
|
+ </div>
|
|
|
45
|
+
|
|
|
46
|
+ <table class="table table-striped table-bordered table-hover" width="100%">
|
|
|
47
|
+ <thead>
|
|
|
48
|
+ <tr>
|
|
|
49
|
+ <th rowspan="3" style="text-align:center;vertical-align:middle;">仓号</th>
|
|
|
50
|
+ <th colspan="5" style="text-align:center;">品种</th>
|
|
|
51
|
+ <th rowspan="3" style="text-align:center;vertical-align:middle;">品种合计(KG)</th>
|
|
|
52
|
+ </tr>
|
|
|
53
|
+ <tr>
|
|
|
54
|
+ <th rowspan="2" style="text-align:center;vertical-align:middle;">小麦(KG)</th>
|
|
|
55
|
+ <th rowspan="2" style="text-align:center;vertical-align:middle;">稻谷小计(KG)</th>
|
|
|
56
|
+ <th colspan="2" style="text-align:center;">稻谷(KG)</th>
|
|
|
57
|
+ <th rowspan="2" style="text-align:center;vertical-align:middle;">玉米(KG)</th>
|
|
|
58
|
+ </tr>
|
|
|
59
|
+ <tr>
|
|
|
60
|
+ <th style="text-align:center;">中晚籼稻(KG)</th>
|
|
|
61
|
+ <th style="text-align:center;">粳稻(KG)</th>
|
|
|
62
|
+ </tr>
|
|
|
63
|
+ <tr>
|
|
|
64
|
+ <th style="text-align:center;">总计(KG)</th>
|
|
|
65
|
+ <th style="text-align:center;">{{foodStatistics.xm}}</th>
|
|
|
66
|
+ <th style="text-align:center;">{{foodStatistics.dg}}</th>
|
|
|
67
|
+ <th style="text-align:center;">{{foodStatistics.xd}}</th>
|
|
|
68
|
+ <th style="text-align:center;">{{foodStatistics.jd}}</th>
|
|
|
69
|
+ <th style="text-align:center;">{{foodStatistics.ym}}</th>
|
|
|
70
|
+ <th style="text-align:center;">{{foodStatistics.totalNumber}}</th>
|
|
|
71
|
+ </tr>
|
|
|
72
|
+ </thead>
|
|
|
73
|
+
|
|
|
74
|
+ <tbody>
|
|
|
75
|
+ <tr ng-repeat="foodSpecies in pageInfo.list">
|
|
|
76
|
+ <td style="text-align:center;">{{storehouseObj[foodSpecies.ch].storehouseName}}</td>
|
|
|
77
|
+ <td style="text-align:center;">
|
|
|
78
|
+ <span ng-if="foodSpecies.pz==3164">{{ foodSpecies.kcsl }}</span>
|
|
|
79
|
+ <span ng-if="foodSpecies.pz!=3164"></span>
|
|
|
80
|
+ </td>
|
|
|
81
|
+ <td></td>
|
|
|
82
|
+ <td style="text-align:center;">
|
|
|
83
|
+ <span ng-if="foodSpecies.pz==3218 || foodSpecies.pz==3219">{{ foodSpecies.kcsl }}</span>
|
|
|
84
|
+ <span ng-if="foodSpecies.pz!=3218 && foodSpecies.pz!=3219"></span>
|
|
|
85
|
+ </td>
|
|
|
86
|
+ <td style="text-align:center;">
|
|
|
87
|
+ <span ng-if="foodSpecies.pz==3220 || foodSpecies.pz==3221">{{ foodSpecies.kcsl }}</span>
|
|
|
88
|
+ <span ng-if="foodSpecies.pz!=3220 && foodSpecies.pz!=3221"></span>
|
|
|
89
|
+ </td>
|
|
|
90
|
+ <td style="text-align:center;">
|
|
|
91
|
+ <span ng-if="foodSpecies.pz==3165">{{ foodSpecies.kcsl }}</span>
|
|
|
92
|
+ <span ng-if="foodSpecies.pz!=3165"></span>
|
|
|
93
|
+ </td>
|
|
|
94
|
+ <td></td>
|
|
|
95
|
+ </tr>
|
|
|
96
|
+ </tbody>
|
|
|
97
|
+
|
|
|
98
|
+ </table>
|
|
|
99
|
+ <div smart-include="app/layout/partials/page.tpl.html"></div>
|
|
|
100
|
+ </div>
|
|
|
101
|
+ </div>
|
|
|
102
|
+ </div>
|
|
|
103
|
+ </div>
|
|
|
104
|
+ </article>
|
|
|
105
|
+ </div>
|
|
|
106
|
+
|
|
|
107
|
+ </section>
|
|
|
108
|
+
|
|
|
109
|
+</div>
|