| | |
| | | let combMat = { orderNo:'', barcode: '', locNo: '', combMats: [] } |
| | | let combMats = [] |
| | | for (let item of _this.orderCarList) { |
| | | let orderNo = item.orderNo |
| | | combMat.orderNo = orderNo |
| | | combMat.orderNo = item.orderNo |
| | | combMat.barcode = _this.barcode |
| | | combMat.locNo = _this.agvDevp |
| | | combMat.combMats = [] |
| | | let combM = {csocode: item.threeCode,isoseq: item.deadTime,matnr: item.matnr,batch: item.batch,anfme: item.pakinQty,maktx: item.maktx,specs: item.specs} |
| | | combMat.combMats.push(combM) |
| | | combMats.push(combMat) |
| | | combMats.push({...combMat}) |
| | | } |
| | | this.comb(combMats) |
| | | |
| | |
| | | url: _this.baseUrl + '/agvMobile/start/pakin/auth', |
| | | data: JSON.stringify({ |
| | | barcode: _this.barcode, |
| | | containerCode: _this.barcode, |
| | | devNo: _this.agvDevp, |
| | | combParams: combMats |
| | | }), |