|
@@ -300,8 +300,8 @@
|
|
this.date = new Date().toLocaleString()
|
|
this.date = new Date().toLocaleString()
|
|
this.type = decodeURIComponent(this.getQueryVariable('type'))
|
|
this.type = decodeURIComponent(this.getQueryVariable('type'))
|
|
this.warehouseName = decodeURIComponent(this.getQueryVariable('warehouseName'))
|
|
this.warehouseName = decodeURIComponent(this.getQueryVariable('warehouseName'))
|
|
- this.startDate = this.getQueryVariable('startDate')
|
|
|
|
- this.endDate = this.getQueryVariable('endDate')
|
|
|
|
|
|
+ this.startDate = this.getQueryVariable('startDate').replace('%20',' ')
|
|
|
|
+ this.endDate = this.getQueryVariable('endDate').replace('%20',' ')
|
|
this.printData = JSON.parse(sessionStorage.getItem('inOutWarehouse_Print'))
|
|
this.printData = JSON.parse(sessionStorage.getItem('inOutWarehouse_Print'))
|
|
for (var count = 0; count < this.printData.length; count++) {
|
|
for (var count = 0; count < this.printData.length; count++) {
|
|
this.maoZhong += this.printData[count].grossWeight
|
|
this.maoZhong += this.printData[count].grossWeight
|