order-outall.vue
12.2 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
<!--出库单汇总-->
<script>
module.exports = {
data: function () {
return {
fileType:'file',
tagType:'a',
med:'cdk',
fileLabel:'选择文件',
// 导入之后信息提示
backMessage:{
showDialog:'N',
mList:[],// 提示信息
},
// 医院
hosList: [],
// 明细数据
mxList: [],
// 订单总数量
totalNum:0,
// 查询条件
search: {
pageSize: 50,
page: 1,
totalPages: 0,
//total: 0,
search_LIKE_billno: '',// 出库单号
search_GTE_dodate: '',// 出库日期 起
search_LTE_dodate: '',// 出库日期 止
search_EQ_billState: '',// 业务状态
serach_EQ_medguid:'',// 采购单位
search_LIKE_supplierpobillno: '',// 采购单号
},
// 日期控件
readonlyFlag:false,
};
},
methods: {
// 获取数据
getData:function(){
var self = this;
Ajax.get('/trdo/listCommon', this.search)
.then(function (response){
var data = response.data.data;
self.$set('mxList',data.list);
self.search.pageno = data.pageno;
self.search.totalPages = data.totalPages;
self.search.total = data.total;
})
},
// 跳转到订单受理详情页面
goTRDoDetail:function(billtype,trpo_billno,trdo_billno,billstate){
var self = this;
// 根据执行状态跳转不同的页面 立继武
if(billstate==self.ctns.dobillstated03 || billstate==self.ctns.dobillstated02){
//已提交 已完结 跳转已完结、已提交页面 立继武
self.$route.router.go('/trdo/orderOutall2/'+trdo_billno);
}else{// 未提交
// 未提交 billtype==self.ctns.billtype02 暂时注释 判断单据类型为高值
if(billtype=='02' && (trpo_billno!=null || trpo_billno!='') || billtype=='03' && (trpo_billno!=null || trpo_billno!='')){
//进入高值页面 未提交页面
self.$route.router.go('/trdo/orderOutall2-3/'+((trpo_billno||'')+"@"+(trdo_billno||'')));
}else{
//进入非高值页面 未提交页面
self.$route.router.go('/trdo/orderOutall2-2/'+((trpo_billno||'')+"@"+(trdo_billno||'')));
}
}
},
// 获得供应商的高值耗材的供应关系中的医院
getMedListRelation:function(){
var self = this;
Ajax.get('/trhv/getMedListRelation')
.then(function (response){
var data = response.data;
if(data.errorCode == 0){
self.hosList = _.map(data.data, function (item) {
return {
label: item.name,
value: item.guid
};
});
}else{
layer.msg('数据获取异常!');
}
})
},
// 批量导入订单
getTipsPlan:function(data){
var self = this;
if(data.errorCode==0){
// 返回信息
self.MessageBox({title:'提示', message:'导入商品成功!', type: 'alert'},function(action){
window.location.reload();
});
}else{
self.$set('backMessage.showDialog','Y');
var myobj=eval(data.message);
this.$set('backMessage.mList',myobj);
}
},
// 关闭信息提示弹出框
closeDialog:function(){
var self = this;
this.$set('backMessage.showDialog','N');
this.$set('backMessage.mList',[]);
self.sh = true;
},
// 查询条件选择项
state: function(billstate,objId){
$(".form-group a").each(function(){
// alert($(this).text());
$(this).attr("class", "option");
});
$("#"+objId).attr("class","all active");
// 设置查询的条件
this.search.search_EQ_billstate = billstate;
this.getData();
},
},
route: {
activate: function () {
this.getData();
this.getMedListRelation();
}
},
watch:{
// 实时监听复选框勾选变化
'selectMed': function (val) {
this.search.search_EQ_medguid = val;
}
},
};
</script>
<template>
<div class="container resource close-left-menu contaNEW">
<div class="pop-banner clearfix ">
<h3 class="current-module">出库单汇总</h3>
</div>
<div class="pd-form fast-search-form">
<div class="group-row">
<div class="form-group">
<div class="control">
<input type="text" v-model="search.search_LIKE_billno"
placeholder="出库单号" title="出库单号" maxlength="26" v-rule></div>
</div>
<div class="form-group form-label">
<label class="label" for='cn25'>采购单位</label>
<div class="control">
<select-ui :list="hosList" v-model='selectMed' class='inp4' id='cn25'></select-ui>
<!--
<div class="div-select before-none" style="width:100%;">
<ul style="z-index:999;top:0px;width:100%;">
<li class="div-select-item pl10" v-for="hos in hosList">
<span style="width:100%;" @click="getMedListRelation()">{{hos.name}}</span>
</li>
<li class="div-select-item pl10" v-if="hosList.length==0">
<span style="width:100%;">未查询的结果!</span>
<span style="width:100%;"> </span>
<span style="width:100%;"> </span>
</li>
</ul>
</div>
-->
</div>
</div>
</div>
<div class="group-row">
<div class="form-group">
<label for="cn3" class="label"><!-- 出库日期 --></label>
<div class="control control-date" style="height:34px;overflow: inherit;">
<div style="width:44%;float:left;height:32px;">
<datepicker :target.sync="search.search_GTE_dodate" :readonly="readonlyFlag" title='出库开始日期' placeholder='出库开始日期' styleobj="width:100% !important;border-radius:8px 0px 0px 8px !important;"></datepicker>
</div>
<span class="text-and">-</span>
<div style="width:48%;float:left;height:32px;">
<datepicker :target.sync="search.search_LTE_dodate" :readonly="readonlyFlag" title='出库结束日期' placeholder='出库结束日期'
styleobj="width:100% !important;border-radius:0px 8px 8px 0px !important;"></datepicker>
</div>
</div>
</div>
<div class="form-group">
<label for="cn1" class="label">业务状态</label>
<div class="control control-filtering control-filtering-green"
style="float:left;width:300px;">
<a id="all" class="all active" href="javascript:;"
@click="state('','all')">全部</a>
<a id="wating" class="option" href="javascript:;"
@click="state('D01','wating')">待提交</a>
<a id="submit" class="option" href="javascript:;"
@click="state('D02','submit')">已提交</a>
</div>
</div>
</div>
<div class="group-row">
<div class="form-group">
<!-- <label for="cn1" class="label">采购单号</label> -->
<div class="control">
<input type="text" v-model="search.search_LIKE_supplierpobillno" title='采购单号' placeholder='采购单号' maxlength="26" v-rule></div>
</div>
</div>
<div class="group-row t-right">
<button v-on:click="getData()" class="fast-search-form-btn btn-d btn-d-lg btn-d-activate btn-d-circle">查 询</button>
</div>
</div>
<div class="from-button t-left">
<a class="green-button p-lr-10" href="https://obs.myhwclouds.com/csylcloud-file/templet/%E4%BE%9B%E5%BA%94%E5%95%86%E5%87%BA%E5%BA%93%E5%8D%95%E5%AF%BC%E5%85%A5%E6%A8%A1%E7%89%88.xls">下载模板<i>|</i></a>
<upload-excel-plan :class="['green-button p-lr-10']"
:tag="tagType"
:type="fileType"
:label="fileLabel"
:exceltype="med"
v-on:file-change="getTipsPlan"
></upload-excel-plan>
</div>
<table class="itable itable-thead-13px">
<thead id="t_header">
<tr>
<th class="w50">序号</th>
<th class="w120">采购单位</th>
<th class="w100">出库单号</th>
<th class="w70">单据类型</th>
<th class="w80">业务状态</th>
<th class="w70">明细条目数</th>
<th class="w80">出库金额(元)</th>
<th class="w100">采购单号</th>
<th class="w80">出库日期</th>
<th class="w120">操作</th>
</tr>
</thead>
<tbody class="txt_v">
<tr>
<td colspan="10" v-if="mxList.length==0">
暂无符合条件的记录
</td>
</tr>
<tr v-for="trdo in mxList">
<td class="v-top">{{$index+1}}</td>
<td class="t-left pr10 v-top">
<div class="p-lr-10">{{trdo.medname}}</div>
</td>
<td class="t-left pr10 v-top">{{trdo.billno}}</td>
<td class="v-top">{{trdo.billtype | billtype}}</td>
<td class="v-top">{{trdo.billstate | billstate_trdo}}</td>
<td class="pr10 v-top">{{trdo.countsum}}条</td>
<td class="t-right pr10 v-top">{{trdo.detailsum | numDigit 2 | numFmt}}</td>
<td class="t-left pr10 v-top">{{trdo.supplierpobillno}}</td>
<td class="v-top">{{trdo.dodate | getYMD}}</td>
<td class="pt7">
<!-- <a class="btn-d btn-d-activate"
v-on:click="goTRDoDetail(trdo.billtype,trdo.supplierpobillno,trdo.billno,trdo.billstate)">明细</a>
<a class="btn-d btn-d-activate" v-link="{ path: '/orderOutall3-1/' + trdo.guid}">单据跟踪</a> -->
<div class="from-button">
<a href="javascript:;" class="green-button p-lr-10"
v-on:click="goTRDoDetail(trdo.billtype,trdo.supplierpobillno,trdo.billno,trdo.billstate)">明细<i>|</i></a>
<a href="javascript:;" class="green-button p-lr-10"
v-link="{ path: '/orderOutall3-1/' + trdo.guid}">单据跟踪</a>
</div>
</td>
</tr>
</tbody>
</table>
<div class="pagination m-20-0">
<pagination
@page-change="getData"
:page-no.sync="search.page"
:total-pages.sync="search.totalPages">
</pagination>
</div>
</div>
<!--star 9-9 弹出导入提示信息-->
<div class="modal " :class="backMessage.showDialog=='Y'?'':'hide'">
<div class="container resource">
<div class="audit-detail" style="width:540px; margin-left: 250px; padding-right: 10px;">
<span class="close-win" v-on:click="closeDialog()"></span>
<div class="sdiv-9-9b" style="">
<a class="btn-d btn-d-activate btn-d-lg" href="javascript:;">错误信息提示</a>
</div>
<div class="status-process wbe-0 clearfix pd20" style="padding-top:0px; max-height: 400px; overflow-y: auto;">
<p style="color:#606f7a;font-size:14px;">
</p>
<div class="sp-head sp-headb mb-0" v-for="m in backMessage.mList" >
<span class="sp-col ml-0" >
<span class="control radio-control ">
<p class="w30 fl">{{m.errorRowNo}}</p>
<p class="fl t-center text-color-yellow mr-20">{{m.errorType}}</p>
<p class="fl t-center mr-20">{{m.errorGoodCode}}</p>
<p class="fl t-center mr-20">{{m.errorGoodName}}</p>
</span>
</span>
</div>
</div>
</div>
</div>
</div>
<!--star 9-9 受理弹出-->
</template>