Browse Source

要货计划修改

master
zhaoxuebing 8 months ago
parent
commit
9bf053cb3c
  1. 35
      src/views/wms/purchasereceiptManage/supplierdeliver/purchasePlanMain/index.vue

35
src/views/wms/purchasereceiptManage/supplierdeliver/purchasePlanMain/index.vue

@ -35,12 +35,17 @@
@searchTableSuccess="searchTableSuccess" @submitForm="submitForm" />
<!-- 详情 -->
<Detail ref="detailRef" :isBasic="false" :allSchemas="PurchasePlanMain.allSchemas"
:detailAllSchemas="PurchasePlanDetail.allSchemas" :detailAllSchemasRules="PurchasePlanDetailRules"
<Detail
ref="detailRef"
:isBasic="false"
:allSchemas="PurchasePlanMain.allSchemas"
:detailAllSchemas="PurchasePlanDetail.allSchemas"
:detailAllSchemasRules="PurchasePlanDetailRules"
:apiCreate="PurchasePlanDetailApi.createPurchasePlanDetail"
:apiUpdate="PurchasePlanDetailApi.updatePurchasePlanDetail"
:apiPage="PurchasePlanDetailApi.getPurchasePlanDetailPage"
:apiDelete="PurchasePlanDetailApi.deletePurchasePlanDetail" @searchTableSuccessDetail="searchTableSuccessDetail"
:apiDelete="PurchasePlanDetailApi.deletePurchasePlanDetail"
@searchTableSuccessDetail="searchTableSuccessDetail"
:detailValidate="detailValidate" />
<!-- 导入 -->
@ -55,6 +60,7 @@
import * as PurchasePlanDetailApi from '@/api/wms/purchasePlanDetail'
import * as defaultButtons from '@/utils/disposition/defaultButtons'
import * as PurchaseDetailApi from '@/api/wms/purchaseDetail'
import {mainListPurchasePlanModBtn} from "@/utils/disposition/defaultButtons";
//
defineOptions({ name: 'PurchasePlanMain' })
@ -191,6 +197,7 @@
defaultButtons.mainListPurchasePlanAccBtn({ hide: isShowMainButton(row, ['3']) }), //
defaultButtons.mainListPurchasePlanRejBtn({ hide: isShowMainButton(row, ['3']) }), //
defaultButtons.mainListPurchasePlanWitBtn({ hide: isShowMainButton(row, ['3']) }), //
defaultButtons.mainListPurchasePlanModBtn({ hide: isShowMainButton(row, ['5']) }), //
// defaultButtons.mainListEditBtn({ hide: isShowMainButton(row, ['1']), hasPermi: 'wms:purchase-plan-main:update' }), //
// defaultButtons.mainListDeleteBtn({hide:isShowMainButton(row,['1']),hasPermi:'wms:purchase-plan-main:delete'}), //
]
@ -210,6 +217,8 @@
handleRej(row.id)
} else if (val == 'mainPurPlanWit') { //
handleWit(row.id)
} else if(val == 'mainPurPlanMod'){ //
handleReOpen(row.id)
}else if (val == 'edit') { //
openForm('update', row)
} else if (val == 'delete') { //
@ -269,6 +278,20 @@
} catch { }
}
/** 打开按钮操作 */
const handleReOpen = async (id : number) => {
try {
//
await message.confirm('是否重新打开所选中数据?')
//
await PurchasePlanMainApi.openPurchasePlanMain(id)
message.success(t('打开成功!'))
//
await getList()
} catch { }
}
/** 发布按钮操作 */
const handlePublish = async (id : number) => {
try {
@ -391,9 +414,9 @@
}
// /
const detailValidate = (data) => {
const detailValidate = async (data) => {
let tag = false
PurchaseDetailApi.getPurchaseDetailPage({
await PurchaseDetailApi.getPurchaseDetailPage({
number: data.poNumber,
lineNumber: data.poLine
}).then(res => {
@ -403,6 +426,8 @@
} else {
tag = true
}
}).catch(err =>{
console.log(err);
})
return tag
}

Loading…
Cancel
Save