|
@@ -13,32 +13,95 @@
|
13
|
13
|
|
14
|
14
|
<table class="printTable" border="0" cellspacing="0" align="center">
|
15
|
15
|
<thead class="print_head">
|
16
|
|
- <tr><td colspan="11">{{org_name}}</td></tr>
|
17
|
|
- <tr><td colspan="11">耗材盘点</td></tr>
|
|
16
|
+ <tr><td colspan="11">南昌顺友好血液透析中心 {{org_name}}</td></tr>
|
|
17
|
+ <tr>
|
|
18
|
+ <td colspan="11">耗材盘点</td>
|
|
19
|
+
|
|
20
|
+ </tr>
|
|
21
|
+ <tr>
|
|
22
|
+ <td colspan="11">
|
|
23
|
+ <div style="float: right;margin-left: 600px;width: 200px;">{{ getNowTime() }}</div>
|
|
24
|
+ </td>
|
|
25
|
+ </tr>
|
|
26
|
+
|
18
|
27
|
</thead>
|
|
28
|
+
|
19
|
29
|
<tbody class="print_body">
|
20
|
30
|
<tr>
|
21
|
|
- <td align="center">耗材名称</td>
|
22
|
|
- <td align="center">规格</td>
|
23
|
|
-
|
24
|
|
- <td align="center">本月入库数量</td>
|
25
|
|
- <td align="center">本月出库数量</td>
|
26
|
|
- <td align="center">本月剩余库存</td>
|
27
|
|
- <td align="center">批号</td>
|
28
|
|
- <td align="center">生产日期</td>
|
29
|
|
- <td align="center">有效日期</td>
|
30
|
|
- <td align="center">生产厂商</td>
|
31
|
|
- <td align="center">盘点数量</td>
|
|
31
|
+ <td align="center" style="width: 50px;">序号</td>
|
|
32
|
+ <td align="center" style="width: 200px;">耗材名称</td>
|
|
33
|
+ <td align="center" style="width: 200px;">规格</td>
|
|
34
|
+ <td align="center" style="width: 200px;">上期结余数量</td>
|
|
35
|
+ <td align="center" style="width: 200px;">本月入库数量</td>
|
|
36
|
+ <td align="center" style="width: 200px;">进货金额</td>
|
|
37
|
+ <td align="center" style="width: 200px;">本月入库总金额</td>
|
|
38
|
+ <td align="center" style="width: 200px;">本月出库数量</td>
|
|
39
|
+ <td align="center" style="width: 200px;">销售价</td>
|
|
40
|
+ <td align="center" style="width: 200px;">本月销售总金额</td>
|
|
41
|
+ <td align="center" style="width: 200px;" >本月剩余库存数量</td>
|
|
42
|
+ <td align="center" style="width: 200px;">进货价</td>
|
|
43
|
+ <td align="center" style="width: 200px;">本月剩余总金额</td>
|
|
44
|
+ <td align="center" style="width: 200px;">批号</td>
|
|
45
|
+ <!-- <td align="center" style="width: 200px;">生产日期</td> -->
|
|
46
|
+ <td align="center" style="width: 200px;">有效日期</td>
|
|
47
|
+ <td align="center" style="width: 200px;">生产厂商</td>
|
|
48
|
+ <td align="center" style="width: 200px;">盘点数量</td>
|
32
|
49
|
|
33
|
50
|
</tr>
|
34
|
51
|
|
35
|
52
|
<tr v-for="(item,index) in tableList" :key="index">
|
36
|
|
- <td align="center">{{ item.good_name }}</td>
|
37
|
|
- <td align="center">{{ item.specification_name }}</td>
|
38
|
|
- <td align="center">{{ getInCount(item.good_id) }}</td>
|
39
|
|
- <td align="center">{{ getOutCount(item.good_id) }}</td>
|
40
|
|
- <td align="center">{{ getSumCount(item.good_id) }}</td>
|
41
|
53
|
<td align="center">
|
|
54
|
+ <span v-if="item.is_total == 0">{{ index+1 }}</span>
|
|
55
|
+ <span v-if="item.is_total == 1">{{ item.index }}</span>
|
|
56
|
+ </td>
|
|
57
|
+ <td align="center">
|
|
58
|
+ <span v-if="item.is_total == 0">{{ item.good_name }}</span>
|
|
59
|
+ </td>
|
|
60
|
+ <td align="center">
|
|
61
|
+ <span v-if="item.is_total == 0">{{ item.specification_name }}</span>
|
|
62
|
+ </td>
|
|
63
|
+ <td align="center">
|
|
64
|
+ <span v-if="item.is_total == 0">{{ getLastOver(item.good_id) }}</span>
|
|
65
|
+ <span v-if="item.is_total == 1">{{ item.last_over}}</span>
|
|
66
|
+ </td>
|
|
67
|
+ <td align="center">
|
|
68
|
+ <span v-if="item.is_total == 0">{{ getInCount(item.good_id) }}</span>
|
|
69
|
+ <span v-if="item.is_total == 1">{{ item.month_in_total }}</span>
|
|
70
|
+ </td>
|
|
71
|
+ <td align="center">
|
|
72
|
+ <span v-if="item.is_total == 0">{{ getBuyPrice(item.good_id) }}</span>
|
|
73
|
+ <span v-if="item.is_total == 1">{{ item.buy_price }}</span>
|
|
74
|
+ </td>
|
|
75
|
+ <td align="center">
|
|
76
|
+ <span v-if="item.is_total == 0">{{ (getInCount(item.good_id)*getBuyPrice(item.good_id)).toFixed(2) }}</span>
|
|
77
|
+ <span v-if="item.is_total == 1">{{ item.month_in_total_price }}</span>
|
|
78
|
+ </td>
|
|
79
|
+ <td align="center">
|
|
80
|
+ <span v-if="item.is_total == 0"> {{ getOutCount(item.good_id) }}</span>
|
|
81
|
+ <span v-if="item.is_total == 1"> {{ item.month_out_total}}</span>
|
|
82
|
+ </td>
|
|
83
|
+ <td align="center">
|
|
84
|
+ <span v-if="item.is_total==0"> {{ getPackingPrice(item.good_id) }}</span>
|
|
85
|
+ <span v-if="item.is_total==1"> {{item.packing_price }}</span>
|
|
86
|
+ </td>
|
|
87
|
+ <td align="center">
|
|
88
|
+ <span v-if="item.is_total == 0"> {{ (getOutCount(item.good_id)*getPackingPrice(item.good_id)).toFixed(2) }}</span>
|
|
89
|
+ <span v-if="item.is_total == 1">{{ item.month_out_total_price }}</span>
|
|
90
|
+ </td>
|
|
91
|
+ <td align="center">
|
|
92
|
+ <span v-if="item.is_total == 0">{{ getSumCount(item.good_id) }}</span>
|
|
93
|
+ <span v-if="item.is_total == 1">{{item.month_over_total }}</span>
|
|
94
|
+ </td>
|
|
95
|
+ <td align="center">
|
|
96
|
+ <span v-if="item.is_total == 0"> {{ getBuyPrice(item.good_id) }}</span>
|
|
97
|
+ <span v-if="item.is_total == 1"> {{ item.buy_price }}</span>
|
|
98
|
+ </td>
|
|
99
|
+ <td align="center">
|
|
100
|
+ <span v-if="item.is_total == 0"> {{ (getSumCount(item.good_id) * getBuyPrice(item.good_id)).toFixed(2)}}</span>
|
|
101
|
+ <span v-if="item.is_total == 1"> {{ item.month_over_total_price}}</span>
|
|
102
|
+ </td>
|
|
103
|
+ <td align="center">
|
|
104
|
+ <span v-if="item.is_total == 0">
|
42
|
105
|
<table
|
43
|
106
|
class="ware_table"
|
44
|
107
|
style="width: 100%; border-collapse: collapse"
|
|
@@ -74,9 +137,10 @@
|
74
|
137
|
</td>
|
75
|
138
|
</tr>
|
76
|
139
|
</table>
|
|
140
|
+ </span>
|
77
|
141
|
</td>
|
78
|
142
|
|
79
|
|
- <td align="center">
|
|
143
|
+ <!-- <td align="center">
|
80
|
144
|
<table
|
81
|
145
|
class="ware_table"
|
82
|
146
|
style="width: 100%; border-collapse: collapse"
|
|
@@ -112,8 +176,9 @@
|
112
|
176
|
</td>
|
113
|
177
|
</tr>
|
114
|
178
|
</table>
|
115
|
|
- </td>
|
|
179
|
+ </td> -->
|
116
|
180
|
<td align="center">
|
|
181
|
+ <span v-if="item.is_total == 0">
|
117
|
182
|
<table
|
118
|
183
|
class="ware_table"
|
119
|
184
|
style="width: 100%; border-collapse: collapse"
|
|
@@ -149,9 +214,10 @@
|
149
|
214
|
</td>
|
150
|
215
|
</tr>
|
151
|
216
|
</table>
|
|
217
|
+ </span>
|
152
|
218
|
</td>
|
153
|
219
|
<td align="center">
|
154
|
|
-
|
|
220
|
+ <span v-if="item.is_total == 0">
|
155
|
221
|
<table
|
156
|
222
|
class="ware_table"
|
157
|
223
|
style="width: 100%; border-collapse: collapse"
|
|
@@ -187,6 +253,7 @@
|
187
|
253
|
</td>
|
188
|
254
|
</tr>
|
189
|
255
|
</table>
|
|
256
|
+ </span>
|
190
|
257
|
|
191
|
258
|
</td>
|
192
|
259
|
<td align="center">
|
|
@@ -198,6 +265,9 @@
|
198
|
265
|
|
199
|
266
|
</tbody>
|
200
|
267
|
</table>
|
|
268
|
+
|
|
269
|
+ <div style="float: left;">盘点人签字:</div>
|
|
270
|
+ <div style="float: right;">监盘人签字:</div>
|
201
|
271
|
</div>
|
202
|
272
|
</div>
|
203
|
273
|
</div>
|
|
@@ -218,10 +288,9 @@ import { getStockInventroyModePrintList } from "@/api/stock"
|
218
|
288
|
crumbs: [
|
219
|
289
|
{ path: false, name: '库存管理' },
|
220
|
290
|
{ path: false, name: '耗材管理' },
|
221
|
|
- { path: false, name: '耗材模版打印' },
|
|
291
|
+ { path: false, name: '耗材盘点模版打印' },
|
222
|
292
|
],
|
223
|
293
|
tableList:[],
|
224
|
|
- org_name: this.$store.getters.xt_user.org.org_name,
|
225
|
294
|
start_time:"",
|
226
|
295
|
end_time:"",
|
227
|
296
|
manufacturerList:[],
|
|
@@ -229,10 +298,24 @@ import { getStockInventroyModePrintList } from "@/api/stock"
|
229
|
298
|
outinfo:[],
|
230
|
299
|
flowProList:[],
|
231
|
300
|
flowNoProList:[],
|
232
|
|
- goodInfo:[]
|
|
301
|
+ goodInfo:[],
|
|
302
|
+ org_name:"",
|
|
303
|
+ warehouseinfoList:[],
|
|
304
|
+ warehouseOutInfoList:[],
|
|
305
|
+ cancelInfoList:[],
|
|
306
|
+
|
233
|
307
|
}
|
234
|
308
|
},
|
235
|
309
|
methods:{
|
|
310
|
+ getNowTime: function () {
|
|
311
|
+ let dateTime;
|
|
312
|
+ let yy = new Date().getFullYear();
|
|
313
|
+ let mm = new Date().getMonth() + 1;
|
|
314
|
+ let dd = new Date().getDate();
|
|
315
|
+
|
|
316
|
+ dateTime = yy + '年' + mm + '月' + dd + '日'
|
|
317
|
+ return dateTime
|
|
318
|
+ },
|
236
|
319
|
printAction: function() {
|
237
|
320
|
const style = '@page{size:landscape;margin: 10mm;} @media print { print_content{width:960px;margin:0} .flex{display: flex;justify-content: space-between;} .printTable{width:100%;border-collapse: collapse;border:0px;margin:10px 0;} .printTable thead{text-align:center}.printTable td{padding:5px;} .print_body tr td{border: 1px solid;font-size:12px;border-collapse:collapse;} }';
|
238
|
321
|
printJS({
|
|
@@ -259,7 +342,6 @@ import { getStockInventroyModePrintList } from "@/api/stock"
|
259
|
342
|
start_time:this.$route.query.start_time,
|
260
|
343
|
end_time:this.$route.query.end_time,
|
261
|
344
|
}
|
262
|
|
- console.log("params-------",params)
|
263
|
345
|
const loading = this.$loading({
|
264
|
346
|
lock: true,
|
265
|
347
|
text: 'Loading',
|
|
@@ -269,8 +351,29 @@ import { getStockInventroyModePrintList } from "@/api/stock"
|
269
|
351
|
getStockInventroyModePrintList(params).then(response=>{
|
270
|
352
|
if(response.data.state == 1){
|
271
|
353
|
var list = response.data.data.list
|
|
354
|
+ var manufacturerList = response.data.data.manufacturerList
|
|
355
|
+ this.manufacturerList = manufacturerList
|
|
356
|
+
|
|
357
|
+ this.infoList = response.data.data.infoList
|
|
358
|
+
|
|
359
|
+ this.outinfo = response.data.data.outinfo
|
|
360
|
+
|
|
361
|
+ this.flowNoProList = response.data.data.flowNoProList
|
|
362
|
+
|
|
363
|
+ this.flowProList = response.data.data.flowProList
|
|
364
|
+
|
|
365
|
+ this.goodInfo = response.data.data.goodInfo
|
|
366
|
+
|
|
367
|
+ var warehouseinfo = response.data.data.warehouseinfo
|
|
368
|
+
|
|
369
|
+ this.warehouseinfoList = warehouseinfo
|
|
370
|
+ var warehouseOutInfo = response.data.data.warehouseOutInfo
|
|
371
|
+
|
|
372
|
+ this.warehouseOutInfoList = warehouseOutInfo
|
|
373
|
+ var cancelInfoList = response.data.data.cancelInfo
|
|
374
|
+ this.cancelInfoList = cancelInfoList
|
272
|
375
|
loading.close()
|
273
|
|
- console.log("list===============",list)
|
|
376
|
+ // console.log("list===============",list)
|
274
|
377
|
|
275
|
378
|
if(list!=null && list.length > 0){
|
276
|
379
|
let dataInfo = {}
|
|
@@ -283,6 +386,18 @@ import { getStockInventroyModePrintList } from "@/api/stock"
|
283
|
386
|
count:0,
|
284
|
387
|
specification_name:item.specification_name,
|
285
|
388
|
good_name:item.good_name,
|
|
389
|
+ last_over:0, //上期结余数量
|
|
390
|
+ month_in_total:0,//本月入库数量
|
|
391
|
+ buy_price:0,//进货金额
|
|
392
|
+ month_in_total_price:0,//本月入库总金额
|
|
393
|
+ month_out_total:0,//本月出库数量,
|
|
394
|
+ packing_price:0,//销售价,
|
|
395
|
+ month_out_total_price:0,//本月销售总金额,
|
|
396
|
+ month_over_total:0,//本月剩余库存
|
|
397
|
+ month_over_total_price:0,
|
|
398
|
+ is_total:0,
|
|
399
|
+
|
|
400
|
+
|
286
|
401
|
}
|
287
|
402
|
}
|
288
|
403
|
})
|
|
@@ -294,23 +409,39 @@ import { getStockInventroyModePrintList } from "@/api/stock"
|
294
|
409
|
arr[i].child.push(list[j])
|
295
|
410
|
}
|
296
|
411
|
}
|
|
412
|
+
|
297
|
413
|
}
|
298
|
414
|
|
299
|
|
- this.tableList = arr
|
300
|
|
- console.log("arr--------------",arr)
|
301
|
|
- }
|
302
|
|
- var manufacturerList = response.data.data.manufacturerList
|
303
|
|
- this.manufacturerList = manufacturerList
|
|
415
|
+ for(let s=0;s < arr.length;s++){
|
|
416
|
+ arr[s].last_over = this.getLastOver(arr[s].good_id)
|
|
417
|
+ arr[s].month_in_total = this.getInCount(arr[s].good_id)
|
|
418
|
+ arr[s].buy_price = this.getBuyPrice(arr[s].good_id)
|
|
419
|
+ arr[s].month_in_total_price = (this.getInCount(arr[s].good_id) * this.getBuyPrice(arr[s].good_id)).toFixed(2)
|
|
420
|
+ arr[s].month_out_total = this.getOutCount(arr[s].good_id)
|
|
421
|
+ arr[s].packing_price = this.getPackingPrice(arr[s].good_id)
|
|
422
|
+ arr[s].month_out_total_price = (this.getOutCount(arr[s].good_id) *this.getPackingPrice(arr[s].good_id)).toFixed(2)
|
304
|
423
|
|
305
|
|
- this.infoList = response.data.data.infoList
|
|
424
|
+ arr[s].month_over_total = this.getSumCount(arr[s].good_id)
|
306
|
425
|
|
307
|
|
- this.outinfo = response.data.data.outinfo
|
|
426
|
+ arr[s].month_over_total_price = (this.getBuyPrice(arr[s].good_id) * this.getSumCount(arr[s].good_id)).toFixed(2)
|
308
|
427
|
|
309
|
|
- this.flowNoProList = response.data.data.flowNoProList
|
310
|
|
-
|
311
|
|
- this.flowProList = response.data.data.flowProList
|
312
|
|
-
|
313
|
|
- this.goodInfo = response.data.data.goodInfo
|
|
428
|
+ }
|
|
429
|
+ console.log("arr------------------------------------------",arr)
|
|
430
|
+ this.tableList = arr
|
|
431
|
+
|
|
432
|
+ }
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+ var obj = {is_total:1,index:"合计",last_over:"",month_in_total:"",buy_price:"",month_in_total_price:0,month_out_total:"",packing_price:"",month_out_total_price:0,month_over_total:"",month_over_total_price:0}
|
|
436
|
+ for(let i=0;i<this.tableList.length;i++){
|
|
437
|
+ obj.month_in_total_price += parseFloat(this.tableList[i].month_in_total_price)
|
|
438
|
+ obj.month_out_total_price += parseFloat(this.tableList[i].month_out_total_price)
|
|
439
|
+ obj.month_over_total_price +=parseFloat(this.tableList[i].month_over_total_price)
|
|
440
|
+ }
|
|
441
|
+ console.log("obj===============================",obj)
|
|
442
|
+ this.tableList.push(obj)
|
|
443
|
+ console.log("tableLIDT========",this.tableList)
|
|
444
|
+
|
314
|
445
|
}
|
315
|
446
|
})
|
316
|
447
|
},
|
|
@@ -323,6 +454,77 @@ import { getStockInventroyModePrintList } from "@/api/stock"
|
323
|
454
|
}
|
324
|
455
|
return manufacturer_name
|
325
|
456
|
},
|
|
457
|
+ getLastOver(good_id){
|
|
458
|
+ var in_count = 0
|
|
459
|
+ var out_count = 0
|
|
460
|
+ var cancel_count = 0
|
|
461
|
+ var total_count = 0
|
|
462
|
+ var in_arr = []
|
|
463
|
+ var out_arr = []
|
|
464
|
+ var cancel_arr = []
|
|
465
|
+ for(let i=0;i<this.warehouseinfoList.length;i++){
|
|
466
|
+ if(good_id == this.warehouseinfoList[i].good_id){
|
|
467
|
+ in_arr.push(this.warehouseinfoList[i])
|
|
468
|
+ }
|
|
469
|
+
|
|
470
|
+ }
|
|
471
|
+
|
|
472
|
+ for(let i=0;i<in_arr.length;i++){
|
|
473
|
+ in_count += parseInt(in_arr[i].count)
|
|
474
|
+ }
|
|
475
|
+ for(let i=0;i<this.warehouseOutInfoList.length;i++){
|
|
476
|
+ if(good_id == this.warehouseOutInfoList[i].good_id){
|
|
477
|
+ out_arr.push(this.warehouseOutInfoList[i])
|
|
478
|
+
|
|
479
|
+ }
|
|
480
|
+ }
|
|
481
|
+ for(let i=0;i<out_arr.length;i++){
|
|
482
|
+ out_count += parseInt(out_arr[i].count)
|
|
483
|
+ }
|
|
484
|
+
|
|
485
|
+ for(let i=0;i<this.cancelInfoList.length;i++){
|
|
486
|
+ if(good_id == this.cancelInfoList[i].good_id){
|
|
487
|
+ cancel_arr.push(this.cancelInfoList[i])
|
|
488
|
+
|
|
489
|
+ }
|
|
490
|
+ }
|
|
491
|
+
|
|
492
|
+ for(let i=0;i<cancel_arr.length;i++){
|
|
493
|
+ cancel_count += parseInt(cancel_arr[i].count)
|
|
494
|
+ }
|
|
495
|
+
|
|
496
|
+ // console.log("good_id",good_id)
|
|
497
|
+ // console.log("in_count",in_count)
|
|
498
|
+ // console.log("cancel_count",cancel_count)
|
|
499
|
+ // console.log("out_count",out_count)
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+ total_count = in_count +cancel_count - out_count
|
|
503
|
+
|
|
504
|
+ return total_count
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+ },
|
|
508
|
+
|
|
509
|
+ getBuyPrice(good_id){
|
|
510
|
+ var buy_price = ""
|
|
511
|
+ for(let i=0;i<this.goodInfo.length;i++){
|
|
512
|
+ if(good_id == this.goodInfo[i].id){
|
|
513
|
+ buy_price = this.goodInfo[i].buy_price
|
|
514
|
+ }
|
|
515
|
+ }
|
|
516
|
+ return buy_price
|
|
517
|
+ },
|
|
518
|
+ getPackingPrice(good_id){
|
|
519
|
+ var packing_price = ""
|
|
520
|
+ for(let i=0;i<this.goodInfo.length;i++){
|
|
521
|
+ if(good_id == this.goodInfo[i].id){
|
|
522
|
+ packing_price = this.goodInfo[i].packing_price
|
|
523
|
+ }
|
|
524
|
+ }
|
|
525
|
+ return packing_price
|
|
526
|
+ },
|
|
527
|
+
|
326
|
528
|
|
327
|
529
|
getInCount(good_id){
|
328
|
530
|
|
|
@@ -355,6 +557,15 @@ import { getStockInventroyModePrintList } from "@/api/stock"
|
355
|
557
|
total = total_count + total_count_one
|
356
|
558
|
return total
|
357
|
559
|
},
|
|
560
|
+ getInPrice(good_id){
|
|
561
|
+ var packing_price = ""
|
|
562
|
+ for(let i=0;i<this.goodInfo.length;i++){
|
|
563
|
+ if(good_id == this.goodInfo[i].id){
|
|
564
|
+ packing_price = this.goodInfo[i].packing_price
|
|
565
|
+ }
|
|
566
|
+ }
|
|
567
|
+ return packing_price
|
|
568
|
+ },
|
358
|
569
|
getOutCount(good_id){
|
359
|
570
|
|
360
|
571
|
var newArr =[]
|
|
@@ -401,7 +612,8 @@ import { getStockInventroyModePrintList } from "@/api/stock"
|
401
|
612
|
|
402
|
613
|
},
|
403
|
614
|
created(){
|
404
|
|
-
|
|
615
|
+ var xtuser = this.$store.getters.xt_user;
|
|
616
|
+ this.org_name = xtuser.org.org_name;
|
405
|
617
|
this.getlist()
|
406
|
618
|
}
|
407
|
619
|
|