Browse Source

英泰去掉质检校验

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

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

@ -1049,12 +1049,6 @@ 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) => {
if (!res) {
message.warning(t('ts.请先上传自检报告!'))
return
} else {
// //
await message.confirm(t('ts.是否处理所选中数据?')) await message.confirm(t('ts.是否处理所选中数据?'))
getLoading = ElLoading.service({ getLoading = ElLoading.service({
@ -1079,13 +1073,48 @@ const genRecords = async (id: number) => {
console.log('发起处理', err) console.log('发起处理', err)
getLoading?.close() getLoading?.close()
}) })
}
})
.catch((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 () => { const handleExport = async () => {

Loading…
Cancel
Save