|
@@ -217,6 +217,7 @@ export default {
|
217
|
217
|
name: "stockInDetail",
|
218
|
218
|
|
219
|
219
|
created() {
|
|
220
|
+
|
220
|
221
|
var nowDate = new Date();
|
221
|
222
|
var nowYear = nowDate.getFullYear();
|
222
|
223
|
var nowMonth = nowDate.getMonth() + 1;
|
|
@@ -237,14 +238,23 @@ export default {
|
237
|
238
|
(nowMonth < 10 ? "0" + nowMonth : nowMonth) +
|
238
|
239
|
"-" +
|
239
|
240
|
(nowDay < 10 ? "0" + nowDay : nowDay);
|
|
241
|
+ var start_time = window.sessionStorage.getItem('start_time')
|
|
242
|
+ var end_time = window.sessionStorage.getItem('end_time')
|
|
243
|
+ console.log("start_time",start_time,end_time)
|
|
244
|
+ if(start_time !=null){
|
|
245
|
+ this.start_time = start_time
|
|
246
|
+ }
|
|
247
|
+ if(end_time!=null){
|
|
248
|
+ this.end_time = end_time
|
|
249
|
+ }
|
|
250
|
+ window.sessionStorage.removeItem('start_time')
|
|
251
|
+ window.sessionStorage.removeItem('end_time')
|
240
|
252
|
this.GetCancelStock();
|
241
|
253
|
this.GetConfigInfo();
|
242
|
254
|
this.fetchAllAdminUsers();
|
243
|
255
|
this.goodUnit = this.$store.getters.good_unit
|
244
|
|
-
|
245
|
|
- // this.getPrintStockGood()
|
246
|
256
|
this.org_id = this.$store.getters.xt_user.template_info.org_id
|
247
|
|
- console.log("机构ID",this.org_id)
|
|
257
|
+
|
248
|
258
|
this.getGoodDetailPrintList()
|
249
|
259
|
},
|
250
|
260
|
data() {
|
|
@@ -484,8 +494,9 @@ export default {
|
484
|
494
|
this.$message.error("结束时间不能小于开始时间");
|
485
|
495
|
this.start_time = "";
|
486
|
496
|
} else {
|
|
497
|
+ window.sessionStorage.removeItem('start_time')
|
487
|
498
|
this.GetCancelStock();
|
488
|
|
- // this.getPrintStockGood()
|
|
499
|
+
|
489
|
500
|
}
|
490
|
501
|
},
|
491
|
502
|
endTimeChange(val) {
|
|
@@ -494,8 +505,8 @@ export default {
|
494
|
505
|
this.$message.error("结束时间不能小于开始时间");
|
495
|
506
|
this.end_time = "";
|
496
|
507
|
} else {
|
|
508
|
+ window.sessionStorage.removeItem('end_time')
|
497
|
509
|
this.GetCancelStock();
|
498
|
|
- // this.getPrintStockGood()
|
499
|
510
|
}
|
500
|
511
|
},
|
501
|
512
|
getTimestamp(time) {
|
|
@@ -647,6 +658,8 @@ export default {
|
647
|
658
|
return (r1 * r2) / Math.pow(10, m);
|
648
|
659
|
},
|
649
|
660
|
PrintAction: function() {
|
|
661
|
+ window.sessionStorage.setItem('start_time',this.start_time)
|
|
662
|
+ window.sessionStorage.setItem('end_time',this.end_time)
|
650
|
663
|
this.$router.push({
|
651
|
664
|
path: "/stock/print",
|
652
|
665
|
query: {
|
|
@@ -765,9 +778,10 @@ export default {
|
765
|
778
|
const tHeader = ['序号','耗材名称', '规格型号', '单位','数量','进货价','总价','备注']
|
766
|
779
|
const filterVal = ['index','good_name', 'specification_name', 'packing_unit','warehousing_count','price','total_price','remark']
|
767
|
780
|
console.log("hhhhhhhh",this.tableInfo)
|
768
|
|
-
|
|
781
|
+
|
769
|
782
|
const data = this.formatJson(filterVal, this.tableInfo)
|
770
|
783
|
console.log("data222222222",data)
|
|
784
|
+
|
771
|
785
|
excel.export_json_to_excel({
|
772
|
786
|
header: tHeader,
|
773
|
787
|
data,
|
|
@@ -794,12 +808,13 @@ export default {
|
794
|
808
|
this.tableDataList.push(obj)
|
795
|
809
|
import('@/vendor/Export2Excel').then(excel => {
|
796
|
810
|
const tHeader = ['序号','单据编号', '耗材类型', '耗材名称','规格型号','操作时间','制单人','进货价','数量','总价']
|
797
|
|
- const filterVal = ['index','warehousing_count', 'good_type_name', 'good_name','specification_name','time','user_name','price','warehousing_count','total_price']
|
|
811
|
+ const filterVal = ['index','warehousing_order', 'good_type_name', 'good_name','specification_name','time','user_name','price','warehousing_count','total_price']
|
798
|
812
|
console.log("hhhhhhhh",this.tableDataList)
|
799
|
813
|
|
800
|
|
-
|
|
814
|
+
|
801
|
815
|
const data = this.formatJson(filterVal, this.tableDataList)
|
802
|
816
|
console.log("data222222222",data)
|
|
817
|
+ return
|
803
|
818
|
excel.export_json_to_excel({
|
804
|
819
|
header: tHeader,
|
805
|
820
|
data,
|