|
|
@@ -83,7 +83,12 @@
|
|
|
:loading="pageLoading"
|
|
|
>{{ $t("btn118n.transferApply") }}
|
|
|
</el-button>
|
|
|
- <el-button v-if="form.id && form.transferOrderStatus == '已转单'" size="small" type="danger" @click.stop="allClick('撤销转单')" :loading="pageLoading"
|
|
|
+ <el-button
|
|
|
+ v-if="form.id && form.transferOrderStatus == '已转单'"
|
|
|
+ size="small"
|
|
|
+ type="danger"
|
|
|
+ @click.stop="allClick('撤销转单')"
|
|
|
+ :loading="pageLoading"
|
|
|
>{{ $t("btn118n.untransferApply") }}
|
|
|
</el-button>
|
|
|
<el-button size="small" type="warning" :disabled="!form.id || showLock" v-if="form.billType == 'MM'" @click.stop="allClick('同步主单到分单')"
|
|
|
@@ -789,6 +794,7 @@ export default {
|
|
|
polFreeBoxUseDays: "7",
|
|
|
podFreeBoxUseDays: "14",
|
|
|
boxBelongsTo: "SOC",
|
|
|
+ cabinType: "DF自营",
|
|
|
bookingDate: dateFormat(new Date(), "yyyy-MM-dd"),
|
|
|
filesList: [], // 文件中心
|
|
|
feeCenterListD: [], // 收
|
|
|
@@ -986,11 +992,11 @@ export default {
|
|
|
{
|
|
|
name: "承运人",
|
|
|
value: "carrierCnName"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "舱位类型",
|
|
|
+ value: "cabinType"
|
|
|
}
|
|
|
- // {
|
|
|
- // name: '场站',
|
|
|
- // value: 'cyCnName',
|
|
|
- // },
|
|
|
],
|
|
|
imporiData: [
|
|
|
// { id: 0, name: '导入 ONE 模板' },
|
|
|
@@ -1426,16 +1432,18 @@ export default {
|
|
|
type: "warning"
|
|
|
}).then(() => {
|
|
|
this.pageLoading = true;
|
|
|
- revokeTransferOrder(this.form).then(res => {
|
|
|
- this.$message({
|
|
|
- type: "success",
|
|
|
- message: "操作成功!"
|
|
|
+ revokeTransferOrder(this.form)
|
|
|
+ .then(res => {
|
|
|
+ this.$message({
|
|
|
+ type: "success",
|
|
|
+ message: "操作成功!"
|
|
|
+ });
|
|
|
+ this.logisticsDialog = false;
|
|
|
+ this.billsDetailfun(this.form.id);
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ this.pageLoading = false;
|
|
|
});
|
|
|
- this.logisticsDialog = false;
|
|
|
- this.billsDetailfun(this.form.id);
|
|
|
- }).catch(()=>{
|
|
|
- this.pageLoading = false;
|
|
|
- })
|
|
|
});
|
|
|
}
|
|
|
if (name == "同步主单到分单") {
|
|
|
@@ -2493,7 +2501,9 @@ export default {
|
|
|
if (!this.form.srcType || !this.form.srcCnName) {
|
|
|
msgs.push("业务来源");
|
|
|
}
|
|
|
-
|
|
|
+ if (!this.form.cabinType) {
|
|
|
+ msgs.push("舱位类型");
|
|
|
+ }
|
|
|
if (this.form.billType != "MM") {
|
|
|
if (!this.form.operatorName) {
|
|
|
msgs.push("OP");
|