Browse Source

Merge branch 'hella_online_20240821' into hella_online_20240803

hella_online_20240823
陈薪名 1 month ago
parent
commit
70a01e93a0
  1. 40
      src/views/wms/purchasereceiptManage/supplierdeliver/supplierdeliverRequestMain/index.vue

40
src/views/wms/purchasereceiptManage/supplierdeliver/supplierdeliverRequestMain/index.vue

@ -22,11 +22,7 @@
:detailAllSchemas="SupplierdeliverRequestDetail.allSchemas"
>
<template #rightBtn_right>
<el-tooltip
effect="dark"
content="查询条件"
placement="top-start"
>
<el-tooltip effect="dark" content="查询条件" placement="top-start">
<el-button @click="foldUpClick">
<Icon :icon="visibleSearch ? 'ep:arrow-up' : 'ep:arrow-down'" />
</el-button>
@ -414,7 +410,7 @@ const foldUpClick = ()=>{
clearTimeout(timer)
timer = null
}
}, 500);
}, 500)
}
const { tableObject, tableMethods } = useTable({
@ -612,6 +608,8 @@ const buttonTableClick = async (val, row) => {
handleDelete(row.masterId)
} else if (val == 'ssbq') {
//
try {
tableObject.loading = true
detatableData.params = {
masterId: row.masterId
}
@ -620,6 +618,9 @@ const buttonTableClick = async (val, row) => {
await getGenerateLabelList(row)
count.value++
formLabelRef.value.open('create', row, null, 'createLabel') // createLabel
} finally {
tableObject.loading = false
}
} else if (val == 'ressbq') {
console.log('重新生成标签')
// ElMessageBox.confirm(`<div style="color:red">
@ -627,17 +628,23 @@ const buttonTableClick = async (val, row) => {
// </div>`,'',{
// dangerouslyUseHTMLString: true,
// })
ElMessageBox.confirm(`<div>
tableObject.loading = true
ElMessageBox.confirm(
`<div>
<strong style="color:red;font-size:18px">重新生成标签后必须撕毁原标签打印并粘贴新标签如标签错误将拒绝收货</strong>
<br>
<span>重新生成标签会删除上次生成的标签是否确认继续</span>
</div>`, '提示', {
</div>`,
'提示',
{
confirmButtonText: t('ts.确 认'),
cancelButtonText: t('ts.取 消'),
dangerouslyUseHTMLString: true
})
.then(() => {
SupplierdeliverRequestMainApi.deleteOldLabels(row.masterId).then(async (res) => {
}
)
.then(async () => {
try {
await SupplierdeliverRequestMainApi.deleteOldLabels(row.masterId).then(async (res) => {
if (res) {
//
detatableData.params = {
@ -650,9 +657,13 @@ const buttonTableClick = async (val, row) => {
formLabelRef.value.open('create', row, null, 'createLabel') // createLabel
}
})
} finally {
tableObject.loading = false
}
})
.catch(() => {
console.info('操作取消')
tableObject.loading = false
})
} else if (val == 'point') {
//
@ -713,7 +724,11 @@ const footButtonClick = async (val) => {
return
}
let isNext1 = detatableData1.value.some((item) => {
return item.secondPackQty && item.packQty && parseFloat(item.packQty) > parseFloat(item.secondPackQty)
return (
item.secondPackQty &&
item.packQty &&
parseFloat(item.packQty) > parseFloat(item.secondPackQty)
)
})
if (isNext1) {
message.warning('托的包装数量要大于箱的包装数量,请修改')
@ -762,7 +777,6 @@ const formSelectChangeLabel = (field, val, row) => {
}
}
//
const { wsCache } = useCache()
/** 详情操作 */

Loading…
Cancel
Save