Browse Source

英泰去掉质检校验

syhx
songguoqiang 1 month ago
parent
commit
ee91933fa5
  1. 91
      src/views/wms/purchasereceiptManage/supplierdeliver/supplierdeliverRequestMain/index.vue

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

@ -1049,43 +1049,72 @@ const handleTur = async (id: number) => {
/** 处理按钮操作 */ /** 处理按钮操作 */
const genRecords = async (id: number) => { const genRecords = async (id: number) => {
let getLoading = null let getLoading = null
await SupplierdeliverRequestMainApi.selfCheckReport(id) //
.then(async (res) => { await message.confirm(t('ts.是否处理所选中数据?'))
if (!res) { getLoading = ElLoading.service({
message.warning(t('ts.请先上传自检报告!')) lock: true,
return text: 'loading...',
} else { background: 'rgba(0, 0, 0, 0.7)'
// })
await message.confirm(t('ts.是否处理所选中数据?')) //
getLoading = ElLoading.service({ SupplierdeliverRequestMainApi.genRecordsSupplierdeliverRequestMain(id)
lock: true, .then((res) => {
text: 'loading...', message.success(t('ts.处理成功!'))
background: 'rgba(0, 0, 0, 0.7)' console.log('resresresresres', res)
}) //
// getList()
SupplierdeliverRequestMainApi.genRecordsSupplierdeliverRequestMain(id) console.log('刷新列表')
.then((res) => { getLoading?.close()
message.success(t('ts.处理成功!'))
console.log('resresresresres', res)
//
getList()
console.log('刷新列表')
getLoading?.close()
// //
handleDocumentPrint(res) handleDocumentPrint(res)
})
.catch((err) => {
console.log('发起处理', err)
getLoading?.close()
})
}
}) })
.catch((err) => { .catch((err) => {
console.log('自检报告校验异常', err) console.log('发起处理', err)
getLoading?.close() getLoading?.close()
}) })
} }
//
// const genRecords = async (id: number) => {
// let getLoading = null
// await SupplierdeliverRequestMainApi.selfCheckReport(id)
// .then(async (res) => {
// if (!res) {
// message.warning(t('ts.!'))
// return
// } else {
// //
// await message.confirm(t('ts.'))
// getLoading = ElLoading.service({
// lock: true,
// text: 'loading...',
// background: 'rgba(0, 0, 0, 0.7)'
// })
// //
// SupplierdeliverRequestMainApi.genRecordsSupplierdeliverRequestMain(id)
// .then((res) => {
// message.success(t('ts.!'))
// console.log('resresresresres', res)
// //
// getList()
// console.log('')
// getLoading?.close()
// //
// handleDocumentPrint(res)
// })
// .catch((err) => {
// console.log('', err)
// getLoading?.close()
// })
// }
// })
// .catch((err) => {
// console.log('', err)
// getLoading?.close()
// })
// }
/** 导出按钮操作 */ /** 导出按钮操作 */
const handleExport = async () => { const handleExport = async () => {

Loading…
Cancel
Save