载具管理
This commit is contained in:
@@ -69,13 +69,13 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr v-for="(e, i) in dataList" :key="i">
|
<tr v-for="(e, i) in dataList" :key="i" :class="{'checked': e.bag_code === pkId}" @tap="toCheck(e)">
|
||||||
<td>{{i+1}}</td>
|
<td>{{i+1}}</td>
|
||||||
<td>{{e.bag_code}}</td>
|
<td>{{e.bag_code}}</td>
|
||||||
<td>{{e.material_code}}</td>
|
<td>{{e.material_code}}</td>
|
||||||
<td>{{e.material_name}}</td>
|
<td>{{e.material_name}}</td>
|
||||||
<td>{{e.pcsn}}</td>
|
<td>{{e.pcsn}}</td>
|
||||||
<td>{{e.canuse_qty}}</td>
|
<td><input type="number" class="sin_input" v-model="e.canuse_qty" @blur="handleBlur(e)"></td>
|
||||||
<td>{{e.qty_unit_name}}</td>
|
<td>{{e.qty_unit_name}}</td>
|
||||||
<td>{{e.supp_name}}</td>
|
<td>{{e.supp_name}}</td>
|
||||||
<td>{{e.class_name}}</td>
|
<td>{{e.class_name}}</td>
|
||||||
@@ -111,6 +111,8 @@
|
|||||||
val1: '',
|
val1: '',
|
||||||
val2: '',
|
val2: '',
|
||||||
bagCode: '',
|
bagCode: '',
|
||||||
|
pkId: '',
|
||||||
|
pkObj: {},
|
||||||
dataList: [],
|
dataList: [],
|
||||||
// dataList: [{material_code: 'm001', qty: 100, checked: false, initialQty: 100}, {material_code: 'm002', qty: 200, checked: false, initialQty: 200}],
|
// dataList: [{material_code: 'm001', qty: 100, checked: false, initialQty: 100}, {material_code: 'm002', qty: 200, checked: false, initialQty: 200}],
|
||||||
disabled: false
|
disabled: false
|
||||||
@@ -120,16 +122,39 @@
|
|||||||
this.title = options.title
|
this.title = options.title
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
handleBlur (e) {
|
||||||
|
if (e.canuse_qty) {
|
||||||
|
if (e.canuse_qty < 0) {
|
||||||
|
e.canuse_qty = 0
|
||||||
|
} else {
|
||||||
|
e.canuse_qty = e.canuse_qty.replace(/[^0-9]/g, '')
|
||||||
|
e.canuse_qty = e.canuse_qty.replace(/^0+/, '') || '0'
|
||||||
|
if (e.canuse_qty > e.initialQty) {
|
||||||
|
e.canuse_qty = e.initialQty
|
||||||
|
}
|
||||||
|
this.num = this.dataList.reduce((sum, item) => sum + Number(item.qty), 0)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// uni.showToast({
|
||||||
|
// title: '数量必填',
|
||||||
|
// icon: 'none'
|
||||||
|
// })
|
||||||
|
}
|
||||||
|
},
|
||||||
toScanAdd () {
|
toScanAdd () {
|
||||||
if (this.bagCode) {
|
if (this.bagCode) {
|
||||||
this._insideCodeInsert(this.bagCode)
|
this._insideCodeInsert2(this.bagCode)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
toDel () {
|
toDel () {
|
||||||
if (!this.pkId) {
|
if (!this.pkId) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
this.dataList = this.dataList.filter(item => item.mid !== this.pkObj.mid)
|
this.dataList = this.dataList.filter(item => item.bag_code !== this.pkObj.bag_code)
|
||||||
|
},
|
||||||
|
toCheck (e) {
|
||||||
|
this.pkId = this.pkId === e.bag_code ? '' : e.bag_code
|
||||||
|
this.pkObj = this.pkId === e.bag_code ? e : {}
|
||||||
},
|
},
|
||||||
toEmpty () {
|
toEmpty () {
|
||||||
this.val1 = ''
|
this.val1 = ''
|
||||||
@@ -142,7 +167,39 @@
|
|||||||
try {
|
try {
|
||||||
let res = await insideCodeInsert(e)
|
let res = await insideCodeInsert(e)
|
||||||
if (res) {
|
if (res) {
|
||||||
this.dataList = [...this.dataList, ...res.data]
|
this.dataList.push(res.data)
|
||||||
|
this.dataList.forEach(e => {
|
||||||
|
e.initialQty = e.canuse_qty
|
||||||
|
})
|
||||||
|
this.num = this.dataList.reduce((sum, item) => sum + Number(item.qty), 0)
|
||||||
|
} else {
|
||||||
|
this.dataList = []
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
this.dataList = []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async _insideCodeInsert2 (e) {
|
||||||
|
try {
|
||||||
|
let res = await insideCodeInsert(e)
|
||||||
|
if (res) {
|
||||||
|
if (this.dataList.length === 0) {
|
||||||
|
this.dataList.push(res.data)
|
||||||
|
} else {
|
||||||
|
const existingItem = this.dataList.find(item => item.bag_code === res.data.bag_code)
|
||||||
|
if (!existingItem) {
|
||||||
|
this.dataList.push(res.data)
|
||||||
|
} else {
|
||||||
|
uni.showToast({
|
||||||
|
title: '袋码已存在,不能重复插入',
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.dataList.forEach(e => {
|
||||||
|
e.initialQty = e.canuse_qty
|
||||||
|
})
|
||||||
|
this.num = this.dataList.reduce((sum, item) => sum + Number(item.qty), 0)
|
||||||
} else {
|
} else {
|
||||||
this.dataList = []
|
this.dataList = []
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -56,7 +56,7 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr v-for="(e, i) in dataList" :key="i">
|
<tr v-for="(e, i) in dataList" :key="i" :class="{'checked': e.bag_code === pkId}" @tap="toCheck(e)">
|
||||||
<td>{{i+1}}</td>
|
<td>{{i+1}}</td>
|
||||||
<td>{{e.bag_code}}</td>
|
<td>{{e.bag_code}}</td>
|
||||||
<td>{{e.material_code}}</td>
|
<td>{{e.material_code}}</td>
|
||||||
@@ -96,6 +96,8 @@
|
|||||||
num: null,
|
num: null,
|
||||||
val1: '',
|
val1: '',
|
||||||
bagCode: '',
|
bagCode: '',
|
||||||
|
pkId: '',
|
||||||
|
pkObj: {},
|
||||||
dataList: [],
|
dataList: [],
|
||||||
// dataList: [{material_code: 'm001', qty: 100, checked: false, initialQty: 100}, {material_code: 'm002', qty: 200, checked: false, initialQty: 200}],
|
// dataList: [{material_code: 'm001', qty: 100, checked: false, initialQty: 100}, {material_code: 'm002', qty: 200, checked: false, initialQty: 200}],
|
||||||
disabled: false
|
disabled: false
|
||||||
@@ -107,7 +109,7 @@
|
|||||||
methods: {
|
methods: {
|
||||||
toScanAdd () {
|
toScanAdd () {
|
||||||
if (this.bagCode) {
|
if (this.bagCode) {
|
||||||
this._getPalletAssembly(this.bagCode)
|
this._getPalletAssembly2(this.bagCode)
|
||||||
}
|
}
|
||||||
// uni.scanCode({
|
// uni.scanCode({
|
||||||
// success: (res) => {
|
// success: (res) => {
|
||||||
@@ -127,7 +129,11 @@
|
|||||||
if (!this.pkId) {
|
if (!this.pkId) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
this.dataList = this.dataList.filter(item => item.mid !== this.pkObj.mid)
|
this.dataList = this.dataList.filter(item => item.bag_code !== this.pkObj.bag_code)
|
||||||
|
},
|
||||||
|
toCheck (e) {
|
||||||
|
this.pkId = this.pkId === e.bag_code ? '' : e.bag_code
|
||||||
|
this.pkObj = this.pkId === e.bag_code ? e : {}
|
||||||
},
|
},
|
||||||
toEmpty () {
|
toEmpty () {
|
||||||
this.val1 = ''
|
this.val1 = ''
|
||||||
@@ -138,7 +144,28 @@
|
|||||||
try {
|
try {
|
||||||
let res = await getPalletAssembly(e)
|
let res = await getPalletAssembly(e)
|
||||||
if (res) {
|
if (res) {
|
||||||
this.dataList = [...this.dataList, ...res.data]
|
this.dataList = [...res.data]
|
||||||
|
this.num = this.dataList.reduce((sum, item) => sum + Number(item.qty), 0)
|
||||||
|
} else {
|
||||||
|
this.dataList = []
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
this.dataList = []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async _getPalletAssembly2 (e) {
|
||||||
|
try {
|
||||||
|
let res = await getPalletAssembly(this.bagCode)
|
||||||
|
if (res) {
|
||||||
|
const existingItem = this.dataList.find(item => item.bag_code === res.data.bag_code)
|
||||||
|
if (!existingItem) {
|
||||||
|
this.dataList.push(res.data)
|
||||||
|
} else {
|
||||||
|
uni.showToast({
|
||||||
|
title: '袋码已存在,不能重复插入',
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
}
|
||||||
this.num = this.dataList.reduce((sum, item) => sum + Number(item.qty), 0)
|
this.num = this.dataList.reduce((sum, item) => sum + Number(item.qty), 0)
|
||||||
} else {
|
} else {
|
||||||
this.dataList = []
|
this.dataList = []
|
||||||
|
|||||||
@@ -47,13 +47,13 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr v-for="(e, i) in dataList" :key="i">
|
<tr v-for="(e, i) in dataList" :key="i" :class="{'checked': e.bag_code === pkId}" @tap="toCheck(e)">
|
||||||
<td>{{i+1}}</td>
|
<td>{{i+1}}</td>
|
||||||
<td>{{e.bag_code}}</td>
|
<td>{{e.bag_code}}</td>
|
||||||
<td>{{e.material_code}}</td>
|
<td>{{e.material_code}}</td>
|
||||||
<td>{{e.material_name}}</td>
|
<td>{{e.material_name}}</td>
|
||||||
<td>{{e.pcsn}}</td>
|
<td>{{e.pcsn}}</td>
|
||||||
<td><input type="number" class="sin_input" v-model="e.qty" @blur="handleBlur(e)"></td>
|
<td><input type="number" class="sin_input" v-model="e.canuse_qty" @blur="handleBlur(e)"></td>
|
||||||
<td>{{e.qty_unit_name}}</td>
|
<td>{{e.qty_unit_name}}</td>
|
||||||
<td>{{e.supp_name}}</td>
|
<td>{{e.supp_name}}</td>
|
||||||
<td>{{e.material_type_id}}</td>
|
<td>{{e.material_type_id}}</td>
|
||||||
@@ -89,6 +89,8 @@
|
|||||||
bagCode: '',
|
bagCode: '',
|
||||||
num: null,
|
num: null,
|
||||||
index: '',
|
index: '',
|
||||||
|
pkId: '',
|
||||||
|
pkObj: {},
|
||||||
dataList: [],
|
dataList: [],
|
||||||
// dataList: [{material_code: 'm001', qty: 100, checked: false, initialQty: 100}, {material_code: 'm002', qty: 200, checked: false, initialQty: 200}],
|
// dataList: [{material_code: 'm001', qty: 100, checked: false, initialQty: 100}, {material_code: 'm002', qty: 200, checked: false, initialQty: 200}],
|
||||||
disabled: false
|
disabled: false
|
||||||
@@ -96,18 +98,18 @@
|
|||||||
},
|
},
|
||||||
onLoad (options) {
|
onLoad (options) {
|
||||||
this.title = options.title
|
this.title = options.title
|
||||||
this._queryPointInDownload()
|
// this._queryPointInDownload()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
handleBlur (e) {
|
handleBlur (e) {
|
||||||
if (e.qty) {
|
if (e.canuse_qty) {
|
||||||
if (e.qty < 0) {
|
if (e.canuse_qty < 0) {
|
||||||
e.qty = 0
|
e.canuse_qty = 0
|
||||||
} else {
|
} else {
|
||||||
e.qty = e.qty.replace(/[^0-9]/g, '')
|
e.canuse_qty = e.canuse_qty.replace(/[^0-9]/g, '')
|
||||||
e.qty = e.qty.replace(/^0+/, '') || '0'
|
e.canuse_qty = e.canuse_qty.replace(/^0+/, '') || '0'
|
||||||
if (e.qty > e.initialQty) {
|
if (e.canuse_qty > e.initialQty) {
|
||||||
e.qty = e.initialQty
|
e.canuse_qty = e.initialQty
|
||||||
}
|
}
|
||||||
this.num = this.dataList.reduce((sum, item) => sum + Number(item.qty), 0)
|
this.num = this.dataList.reduce((sum, item) => sum + Number(item.qty), 0)
|
||||||
}
|
}
|
||||||
@@ -120,14 +122,18 @@
|
|||||||
},
|
},
|
||||||
toScanAdd () {
|
toScanAdd () {
|
||||||
if (this.bagCode) {
|
if (this.bagCode) {
|
||||||
this._directlyOutCodeInsert(this.bagCode)
|
this._directlyOutCodeInsert2(this.bagCode)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
toDel () {
|
toDel () {
|
||||||
if (!this.pkId) {
|
if (!this.pkId) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
this.dataList = this.dataList.filter(item => item.mid !== this.pkObj.mid)
|
this.dataList = this.dataList.filter(item => item.bag_code !== this.pkObj.bag_code)
|
||||||
|
},
|
||||||
|
toCheck (e) {
|
||||||
|
this.pkId = this.pkId === e.bag_code ? '' : e.bag_code
|
||||||
|
this.pkObj = this.pkId === e.bag_code ? e : {}
|
||||||
},
|
},
|
||||||
toEmpty () {
|
toEmpty () {
|
||||||
this.val1 = ''
|
this.val1 = ''
|
||||||
@@ -155,7 +161,31 @@
|
|||||||
if (res) {
|
if (res) {
|
||||||
this.dataList = [...this.dataList, ...res.data]
|
this.dataList = [...this.dataList, ...res.data]
|
||||||
this.dataList.forEach(e => {
|
this.dataList.forEach(e => {
|
||||||
e.initialQty = e.qty
|
e.initialQty = e.canuse_qty
|
||||||
|
})
|
||||||
|
this.num = this.dataList.reduce((sum, item) => sum + Number(item.qty), 0)
|
||||||
|
} else {
|
||||||
|
this.dataList = []
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
this.dataList = []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async _directlyOutCodeInsert2 (e) {
|
||||||
|
try {
|
||||||
|
let res = await directlyOutCodeInsert(this.bagCode)
|
||||||
|
if (res) {
|
||||||
|
const existingItem = this.dataList.find(item => item.bag_code === res.data.bag_code)
|
||||||
|
if (!existingItem) {
|
||||||
|
this.dataList.push(res.data)
|
||||||
|
} else {
|
||||||
|
uni.showToast({
|
||||||
|
title: '袋码已存在,不能重复插入',
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
this.dataList.forEach(e => {
|
||||||
|
e.initialQty = e.canuse_qty
|
||||||
})
|
})
|
||||||
this.num = this.dataList.reduce((sum, item) => sum + Number(item.qty), 0)
|
this.num = this.dataList.reduce((sum, item) => sum + Number(item.qty), 0)
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -55,7 +55,7 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr v-for="(e, i) in dataList" :key="i">
|
<tr v-for="(e, i) in dataList" :key="i" :class="{'checked': e.material_code === pkId}" @tap="toCheck(e)">
|
||||||
<td>{{i+1}}</td>
|
<td>{{i+1}}</td>
|
||||||
<td>{{e.struct_code}}</td>
|
<td>{{e.struct_code}}</td>
|
||||||
<td>{{e.material_code}}</td>
|
<td>{{e.material_code}}</td>
|
||||||
@@ -76,7 +76,7 @@
|
|||||||
</view>
|
</view>
|
||||||
<view class="zd-row submit-bar">
|
<view class="zd-row submit-bar">
|
||||||
<button class="zd-col-5 button-default" @tap="toEmpty">清空</button>
|
<button class="zd-col-5 button-default" @tap="toEmpty">清空</button>
|
||||||
<button class="zd-col-18 button-primary" :class="{'button-info': !val2 || !dataList.length}" :disabled="disabled" @tap="_confirmCallMaterial">确认叫料</button>
|
<button class="zd-col-18 button-primary" :class="{'button-info': !val2 || !pkId}" :disabled="disabled" @tap="_confirmCallMaterial">确认叫料</button>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
@@ -99,8 +99,10 @@
|
|||||||
val1: '',
|
val1: '',
|
||||||
val2: '',
|
val2: '',
|
||||||
materialData: {},
|
materialData: {},
|
||||||
|
pkId: '',
|
||||||
|
pkObj: {},
|
||||||
dataList: [],
|
dataList: [],
|
||||||
dataList: [{material_code: 'm001', qty: 100, checked: false, initialQty: 100}, {material_code: 'm002', qty: 200, checked: false, initialQty: 200}],
|
// dataList: [{material_code: 'm001', qty: 100, checked: false, initialQty: 100}, {material_code: 'm002', qty: 200, checked: false, initialQty: 200}],
|
||||||
disabled: false
|
disabled: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
@@ -115,6 +117,10 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
toCheck (e) {
|
||||||
|
this.pkId = this.pkId === e.material_code ? '' : e.material_code
|
||||||
|
this.pkObj = this.pkId === e.material_code ? e : {}
|
||||||
|
},
|
||||||
toJump (name) {
|
toJump (name) {
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: `/pages/hdyy/wbc/${name}`
|
url: `/pages/hdyy/wbc/${name}`
|
||||||
@@ -157,12 +163,12 @@
|
|||||||
},
|
},
|
||||||
async _confirmCallMaterial () {
|
async _confirmCallMaterial () {
|
||||||
this.disabled = true
|
this.disabled = true
|
||||||
if (!this.val2 || !this.dataList.length) {
|
if (!this.val2 || !this.pkId) {
|
||||||
this.disabled = false
|
this.disabled = false
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
let res = await confirmCallMaterial(this.val2, '', this.dataList)
|
let res = await confirmCallMaterial(this.val2, '', this.pkObj)
|
||||||
if (res) {
|
if (res) {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: res.message,
|
title: res.message,
|
||||||
|
|||||||
@@ -232,9 +232,9 @@ export const getStockGroupInfo = (scode, mid, pcsn) => request({
|
|||||||
data: {sect_code: scode, material_id: mid, pcsn: pcsn}
|
data: {sect_code: scode, material_id: mid, pcsn: pcsn}
|
||||||
})
|
})
|
||||||
// 确认叫料
|
// 确认叫料
|
||||||
export const confirmCallMaterial = (pcode, scode, rows) => request({
|
export const confirmCallMaterial = (pcode, row) => request({
|
||||||
url:'api/pdaProduction/confirmCallMaterial',
|
url:'api/pdaProduction/confirmCallMaterial',
|
||||||
data: {point_code: pcode, sect_code: scode, rows: rows}
|
data: {point_code: pcode, row: row}
|
||||||
})
|
})
|
||||||
|
|
||||||
// 点位取货
|
// 点位取货
|
||||||
|
|||||||
Reference in New Issue
Block a user