|
@ -249,7 +249,7 @@ const butttondata = (row,$index) => { |
|
|
defaultButtons.mainListTurnDownBtn({hide:isShowMainButton(row,['2']),hasPermi:'wms:sale-shipment-main-request:refused'}), // 驳回 |
|
|
defaultButtons.mainListTurnDownBtn({hide:isShowMainButton(row,['2']),hasPermi:'wms:sale-shipment-main-request:refused'}), // 驳回 |
|
|
defaultButtons.mainListApproveBtn({hide:isShowMainButton(row,['2']),hasPermi:'wms:sale-shipment-main-request:agree'}), // 审批通过 |
|
|
defaultButtons.mainListApproveBtn({hide:isShowMainButton(row,['2']),hasPermi:'wms:sale-shipment-main-request:agree'}), // 审批通过 |
|
|
defaultButtons.mainListHandleBtn({hide:isShowMainButton(row,['3']),hasPermi:'wms:sale-shipment-main-request:handle'}), // 处理 |
|
|
defaultButtons.mainListHandleBtn({hide:isShowMainButton(row,['3']),hasPermi:'wms:sale-shipment-main-request:handle'}), // 处理 |
|
|
defaultButtons.mainListAbortBtn({hide:isShowMainButton(row,['8']),hasPermi:'wms:sale-shipment-main-request:abort'}), // 终止 |
|
|
// defaultButtons.mainListAbortBtn({hide:isShowMainButton(row,['8']),hasPermi:'wms:sale-shipment-main-request:abort'}), // 终止 |
|
|
// defaultButtons.mainListDeleteBtn({hasPermi:'wms:sale-shipment-main-request:delete'}), // 删除 |
|
|
// defaultButtons.mainListDeleteBtn({hasPermi:'wms:sale-shipment-main-request:delete'}), // 删除 |
|
|
] |
|
|
] |
|
|
} |
|
|
} |
|
@ -324,7 +324,7 @@ const buttonTableClick = async (val, row) => { |
|
|
tableObject.loading = false |
|
|
tableObject.loading = false |
|
|
console.log(err) |
|
|
console.log(err) |
|
|
}) |
|
|
}) |
|
|
} else if (val == 'mainAbort') { // 废弃 |
|
|
} else if (val == 'mainAbort') { // 结算出库废弃 |
|
|
await message.confirm('确认要终止吗?') |
|
|
await message.confirm('确认要终止吗?') |
|
|
tableObject.loading = true |
|
|
tableObject.loading = true |
|
|
SaleShipmentMainApi.abort(row.masterId).then(() => { |
|
|
SaleShipmentMainApi.abort(row.masterId).then(() => { |
|
@ -361,7 +361,7 @@ const openForm = (type: string, row?: any) => { |
|
|
const inputNumberChange = (field, val,row, index) => { |
|
|
const inputNumberChange = (field, val,row, index) => { |
|
|
if(field=='qty'){ |
|
|
if(field=='qty'){ |
|
|
if(row['subSettleQty']!=null&&row['qty']>row['subSettleQty']){ |
|
|
if(row['subSettleQty']!=null&&row['qty']>row['subSettleQty']){ |
|
|
message.error(`物料${row['itemCode']}最大数量为${row['subSettleQty']}`) |
|
|
message.error(`物料${row['itemCode']}最大数量为${row['subSettleQty']}`) |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
console.log('inputNumberChange',field, val,row, index) |
|
|
console.log('inputNumberChange',field, val,row, index) |
|
@ -376,7 +376,7 @@ const submitForm = async (formType, submitData) => { |
|
|
tableData.value.forEach(item=>{ |
|
|
tableData.value.forEach(item=>{ |
|
|
if(item['subSettleQty']!=null&&item['qty']>item['subSettleQty']){ |
|
|
if(item['subSettleQty']!=null&&item['qty']>item['subSettleQty']){ |
|
|
flag = false |
|
|
flag = false |
|
|
message.error(`物料${item['itemCode']}最大数量为${item['subSettleQty']}`) |
|
|
message.error(`物料${item['itemCode']}最大数量为${item['subSettleQty']}`) |
|
|
} |
|
|
} |
|
|
}) |
|
|
}) |
|
|
if(!flag){ |
|
|
if(!flag){ |
|
|