|
|
@ -589,19 +589,16 @@
|
|
|
|
UploadOcrFile,
|
|
|
|
UploadOcrFile,
|
|
|
|
GetOcrImg,
|
|
|
|
GetOcrImg,
|
|
|
|
DownloadBookingOrClosingEDI,
|
|
|
|
DownloadBookingOrClosingEDI,
|
|
|
|
CheckAndInitVOLTAEdi,
|
|
|
|
|
|
|
|
CancelAllocationSlot,
|
|
|
|
CancelAllocationSlot,
|
|
|
|
GetOcrText,
|
|
|
|
GetOcrText,
|
|
|
|
SendTrace,
|
|
|
|
SendTrace,
|
|
|
|
SubmitTelex,
|
|
|
|
SubmitTelex,
|
|
|
|
GetClientParamListById,
|
|
|
|
GetClientParamListById,
|
|
|
|
PrintShippingOrderLetterPDF,
|
|
|
|
|
|
|
|
GetChangeOrderStatus,
|
|
|
|
GetChangeOrderStatus,
|
|
|
|
CreateChangeTaskAsync
|
|
|
|
CreateChangeTaskAsync
|
|
|
|
} from '/@/views/operation/seaexport/api/BookingLedger.js'
|
|
|
|
} from '/@/views/operation/seaexport/api/BookingLedger.js'
|
|
|
|
import { Divider } from 'ant-design-vue'
|
|
|
|
|
|
|
|
import { BookingTruckGetTruckListByBooking } from '/@/views/operation/seaexport/api/SendCar.js'
|
|
|
|
import { BookingTruckGetTruckListByBooking } from '/@/views/operation/seaexport/api/SendCar.js'
|
|
|
|
import { ref, reactive, getCurrentInstance, h, watch, onMounted } from 'vue'
|
|
|
|
import { ref, reactive, h, watch, nextTick } from 'vue'
|
|
|
|
import { Modal } from 'ant-design-vue'
|
|
|
|
import { Modal } from 'ant-design-vue'
|
|
|
|
import { useModal } from '/@/components/Modal'
|
|
|
|
import { useModal } from '/@/components/Modal'
|
|
|
|
import { useAppStore } from '/@/store/modules/app'
|
|
|
|
import { useAppStore } from '/@/store/modules/app'
|
|
|
@ -1084,6 +1081,8 @@
|
|
|
|
if (res.data == '未审单') {
|
|
|
|
if (res.data == '未审单') {
|
|
|
|
createMessage.warning('此单未审,可直接编辑调整!')
|
|
|
|
createMessage.warning('此单未审,可直接编辑调整!')
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
|
|
|
|
changeConfigFlag.value = true
|
|
|
|
|
|
|
|
nextTick(() => {
|
|
|
|
if (res.data == '已审未出号') {
|
|
|
|
if (res.data == '已审未出号') {
|
|
|
|
setFieldsValue({
|
|
|
|
setFieldsValue({
|
|
|
|
orderProgress: 1
|
|
|
|
orderProgress: 1
|
|
|
@ -1097,7 +1096,11 @@
|
|
|
|
orderProgress: 3
|
|
|
|
orderProgress: 3
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
changeConfigFlag.value = true
|
|
|
|
})
|
|
|
|
|
|
|
|
setFieldsValue({
|
|
|
|
|
|
|
|
changeReason: null,
|
|
|
|
|
|
|
|
changeRemark: null
|
|
|
|
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -1126,9 +1129,11 @@
|
|
|
|
const postData = await validate()
|
|
|
|
const postData = await validate()
|
|
|
|
postData['id'] = props.id
|
|
|
|
postData['id'] = props.id
|
|
|
|
CreateChangeTaskAsync(postData).then(res => {
|
|
|
|
CreateChangeTaskAsync(postData).then(res => {
|
|
|
|
createMessage.success(res.message)
|
|
|
|
createMessage.success('已进入改配页面!')
|
|
|
|
emit('changeConfig')
|
|
|
|
emit('changeConfig')
|
|
|
|
changeConfigFlag.value = false
|
|
|
|
changeConfigFlag.value = false
|
|
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
|
|
changeConfigFlag.value = false
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function downloadBookingOrEDI(type) {
|
|
|
|
function downloadBookingOrEDI(type) {
|
|
|
|