|
@@ -8678,21 +8678,22 @@ export default {
|
|
|
this.allfPlanqty = 0;
|
|
|
this.allfNetweight = 0;
|
|
|
this.allfQty = 0;
|
|
|
+ console.log(this.Printinglist)
|
|
|
this.Printinglist.map((e) => {
|
|
|
if (e.fCntqty) {
|
|
|
- this.allfCntqty += e.fCntqty;
|
|
|
+ this.allfCntqty += Number(e.fCntqty);
|
|
|
}
|
|
|
if (e.fGrossweight) {
|
|
|
- this.allfGrossweight += e.fGrossweight;
|
|
|
+ this.allfGrossweight += Number(e.fGrossweight);
|
|
|
}
|
|
|
if (e.fPlanqty) {
|
|
|
- this.allfPlanqty += e.fPlanqty;
|
|
|
+ this.allfPlanqty += Number(e.fQty);
|
|
|
}
|
|
|
if (e.fNetweight) {
|
|
|
- this.allfNetweight += e.fNetweight;
|
|
|
+ this.allfNetweight += Number(e.fNetweight);
|
|
|
}
|
|
|
if (e.fQty) {
|
|
|
- this.allfQty += e.fQty;
|
|
|
+ this.allfQty += Number(e.fQty);
|
|
|
}
|
|
|
if (e.fBsdate) {
|
|
|
// let date = new Date(this.Printinglist[0].fBsdate);
|