|
|
@ -158,7 +158,6 @@ export default { |
|
|
|
showProductLineSelect: false, |
|
|
|
productLineList: [], |
|
|
|
productionLineName: "请选择生产线", |
|
|
|
productionLineCode: "", |
|
|
|
batch: "", |
|
|
|
packUnitName: "请选择包装规格", |
|
|
|
packUnit: "", |
|
|
@ -193,7 +192,7 @@ export default { |
|
|
|
openRequestPopup() { |
|
|
|
this.initData(); |
|
|
|
this.planDate = getCurrDate() |
|
|
|
this.batch = getBatch8() |
|
|
|
this.batch = this.planDate.replace('-', '') |
|
|
|
this.$refs.popup.open('bottom') |
|
|
|
}, |
|
|
|
initData() { |
|
|
@ -207,7 +206,7 @@ export default { |
|
|
|
this.showProductLineSelect = false |
|
|
|
this.productLineList = [] |
|
|
|
this.productionLineName = "请选择生产线" |
|
|
|
this.productionLineCode = "" |
|
|
|
this.productLineCode = "" |
|
|
|
this.batch = "" |
|
|
|
this.packUnitName = "请选择包装规格" |
|
|
|
this.packUnit = "", |
|
|
@ -270,7 +269,7 @@ export default { |
|
|
|
callback() { |
|
|
|
let item = { |
|
|
|
productionLineName: "", |
|
|
|
productionLineCode: this.productLineCode, //生产线 |
|
|
|
productionLine: this.productLineCode, //生产线 |
|
|
|
itemCode: this.itemCode, |
|
|
|
itemName: this.itemName, |
|
|
|
uom: this.getUomInfo(this.uom), |
|
|
@ -293,7 +292,8 @@ export default { |
|
|
|
|
|
|
|
showErrorMessage(message, type) { |
|
|
|
setTimeout(r => { |
|
|
|
this.$refs.comMessage.showErrorMessage(message, res => {}) |
|
|
|
this.$refs.comMessage.showErrorMessage(message, res => { |
|
|
|
}) |
|
|
|
}) |
|
|
|
}, |
|
|
|
cancel(e) { |
|
|
@ -302,9 +302,9 @@ export default { |
|
|
|
|
|
|
|
confirmSelectLine(data) { |
|
|
|
this.productionLineName = data[0].label + "—" + data[1].label |
|
|
|
this.productionLineCode = data[0].value |
|
|
|
this.productLineCode = data[0].value |
|
|
|
this.workStationCode = data[1].value |
|
|
|
var parent = this.productLineList.filter(res => res.value == this.productionLineCode) |
|
|
|
var parent = this.productLineList.filter(res => res.value == this.productLineCode) |
|
|
|
var fgLocation = parent[0].children.filter(children => children.value == this.workStationCode) |
|
|
|
this.fgLocationCode = fgLocation[0].fgLocationCode; |
|
|
|
this.workshop = parent[0].workshop; |
|
|
@ -324,6 +324,7 @@ export default { |
|
|
|
|
|
|
|
confirmSelectDate(data) { |
|
|
|
this.planDate = data[0].label |
|
|
|
this.batch = this.planDate.replace('-', ''); |
|
|
|
}, |
|
|
|
|
|
|
|
showSelectDate() { |
|
|
@ -364,7 +365,7 @@ export default { |
|
|
|
|
|
|
|
}, |
|
|
|
showSelectItemCode() { |
|
|
|
if (!this.productionLineCode) { |
|
|
|
if (!this.productLineCode) { |
|
|
|
this.showErrorMessage('请先选择生产线'); |
|
|
|
return; |
|
|
|
} |
|
|
@ -372,7 +373,7 @@ export default { |
|
|
|
title: "加载中", |
|
|
|
mask: true |
|
|
|
}) |
|
|
|
getBomVersionByProductionline(this.productionLineCode).then(res => { |
|
|
|
getBomVersionByProductionline(this.productLineCode).then(res => { |
|
|
|
uni.hideLoading() |
|
|
|
if (res.data && res.data.length > 0) { |
|
|
|
this.itemCodeList = res.data |
|
|
|