Browse Source

英泰去掉质检校验

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

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

@ -1049,43 +1049,72 @@ const handleTur = async (id: number) => {
/** 处理按钮操作 */
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()
})
}
//
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)
console.log('发起处理', err)
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 () => {

Loading…
Cancel
Save