fix:修改冲销

This commit is contained in:
郭飞 2025-05-23 19:31:22 +08:00
parent c60d105e96
commit 1ec9914c56

View File

@ -131,7 +131,10 @@ const state = reactive({
{ value: '', label: '全部' },
{ value: 'A', label: '入库' },
{ value: 'B', label: '出库' },
{ value: '调拨出库', label: '调拨出库' }
{ value: '调拨出库', label: '调拨出库' },
{ value: '采购入库', label: '采购入库' },
{ value: '自动转库', label: '转库' },
{ value: 'QMS质检', label: '质检结果' },
],
page: {
pageNum: 1,
@ -276,6 +279,10 @@ function sendUndoCommit() {
flag: state.active_row?.FLAG,
inv_TYPE : state.active_row?.RECEIVEREQUESTTYPE || state.active_row?.SHIPREQUESTTYPE,
lastEventName: state.active_row?.LASTEVENTNAME,
preErpLocation: state.active_row?.PREERPLOCATION,
preLocationName: state.active_row?.PRELOCATIONNAME,
erpLocation: state.active_row?.ERPLOCATION,
locationName: state.active_row?.LOCATIONNAME,
commitDate:state.commitDate
}).then((res: any) => {
console.log(res)
@ -308,6 +315,7 @@ function sendUndoCommit() {
}
function selectRow(row: any) {
state.active_row = row
console.log(state.active_row)
handleQuery_d()
}
</script>