|
@@ -1,3 +1,4 @@
|
|
|
+<!--补录弹窗-->
|
|
|
<template>
|
|
|
<a-modal
|
|
|
v-model:visible="dialogVisible"
|
|
@@ -16,7 +17,38 @@
|
|
|
@submit="handleSubmit"
|
|
|
>
|
|
|
<a-row :gutter="16">
|
|
|
- <template v-if="isMain || modelType === MODEL_TYPE.ADD">
|
|
|
+ <template
|
|
|
+ v-if="
|
|
|
+ isMain ||
|
|
|
+ modelType === MODEL_TYPE.ADD ||
|
|
|
+ modelType === MODEL_TYPE.MAIN_ADD
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <a-col :span="6">
|
|
|
+ <a-form-item
|
|
|
+ field="asIcs2"
|
|
|
+ label-col-flex="120px"
|
|
|
+ label="是否为ICS2运单"
|
|
|
+ :rules="[{ required: true, message: '必选项不可为空!' }]"
|
|
|
+ >
|
|
|
+ <a-radio-group
|
|
|
+ v-model="currentFrom.asIcs2"
|
|
|
+ :options="plainOptions"
|
|
|
+ />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="6">
|
|
|
+ <a-form-item
|
|
|
+ field="asEawOrEap"
|
|
|
+ label-col-flex="120px"
|
|
|
+ label="是否EAW/EAP"
|
|
|
+ >
|
|
|
+ <a-radio-group
|
|
|
+ v-model="currentFrom.asEawOrEap"
|
|
|
+ :options="plainOptions"
|
|
|
+ />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
<a-col
|
|
|
v-for="item in mainWaybillInfo"
|
|
|
:key="item.field"
|
|
@@ -29,7 +61,13 @@
|
|
|
:hide-asterisk="isDetail || modelType === MODEL_TYPE.ADD"
|
|
|
:label-col-flex="LABEL_WIDTH"
|
|
|
>
|
|
|
- <p v-if="isDetail || !item.type || !isMain">
|
|
|
+ <p
|
|
|
+ v-if="
|
|
|
+ ((isDetail || !item.type || !isMain) &&
|
|
|
+ modelType !== MODEL_TYPE.MAIN_ADD) ||
|
|
|
+ item.field === 'mawbNo'
|
|
|
+ "
|
|
|
+ >
|
|
|
{{ currentFrom.mawbDetail[item.field] || '--' }}
|
|
|
</p>
|
|
|
<a-input
|
|
@@ -94,6 +132,7 @@
|
|
|
</a-col>
|
|
|
</template>
|
|
|
<template v-else>
|
|
|
+ <a-divider orientation="left"></a-divider>
|
|
|
<a-col :span="24">
|
|
|
<strong class="strong before-flag">航班信息</strong>
|
|
|
</a-col>
|
|
@@ -113,6 +152,11 @@
|
|
|
currentFrom.mawbDetail[item.field] || '--'
|
|
|
}}</p>
|
|
|
<div v-else-if="item.field === 'fltNo'" class="flex">
|
|
|
+ <!-- <a-input
|
|
|
+ v-model="currentFrom.mawbDetail.fltNo"
|
|
|
+ allow-clear
|
|
|
+ class="mr-4 w-24"
|
|
|
+ />-->
|
|
|
<a-input
|
|
|
v-model="currentFrom.mawbDetail['fltNoPrefix']"
|
|
|
allow-clear
|
|
@@ -121,6 +165,7 @@
|
|
|
/>
|
|
|
<a-input
|
|
|
v-model="currentFrom.mawbDetail['fltNoSuffix']"
|
|
|
+ class="mr-4 w-24"
|
|
|
allow-clear
|
|
|
@input="commonUpperCase('mawbDetail', 'fltNoSuffix')"
|
|
|
/>
|
|
@@ -141,6 +186,7 @@
|
|
|
/>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
+ <a-divider orientation="left"></a-divider>
|
|
|
<a-col :span="24">
|
|
|
<strong class="strong before-flag">费用</strong>
|
|
|
</a-col>
|
|
@@ -170,6 +216,7 @@
|
|
|
></a-select>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
+ <a-divider orientation="left"></a-divider>
|
|
|
<a-col :span="24">
|
|
|
<strong class="strong before-flag">其他费用</strong>
|
|
|
</a-col>
|
|
@@ -188,10 +235,12 @@
|
|
|
v-else
|
|
|
v-model="currentFrom.mawbPrice[item.field]"
|
|
|
allow-clear
|
|
|
+ @blur="handleBlur(item.field)"
|
|
|
@input="commonUpperCase('mawbPrice', item.field)"
|
|
|
/>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
+ <a-divider orientation="left"></a-divider>
|
|
|
</template>
|
|
|
|
|
|
<a-col :span="24">
|
|
@@ -218,6 +267,7 @@
|
|
|
/>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
+ <a-divider orientation="left"></a-divider>
|
|
|
<a-col :span="24">
|
|
|
<strong class="strong before-flag">收货人信息</strong>
|
|
|
</a-col>
|
|
@@ -262,7 +312,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
-import { toRefs } from 'vue';
|
|
|
+import { Ref, toRefs } from 'vue';
|
|
|
import { WAYBILL_TYPE } from '@/constant/waybill';
|
|
|
import { MODEL_TYPE } from '@/constant/base';
|
|
|
import { Modal, Message } from '@arco-design/web-vue';
|
|
@@ -302,33 +352,74 @@ const LABEL_WIDTH = '100px';
|
|
|
|
|
|
const { fromData, orderType, modelType } = toRefs(props);
|
|
|
const dialogVisible = ref(false);
|
|
|
+/**
|
|
|
+ * 对话框表单
|
|
|
+ */
|
|
|
const currentFrom = ref<any>({
|
|
|
awbContact: {},
|
|
|
mawbDetail: {},
|
|
|
mawbPrice: {},
|
|
|
+ asIcs2: null,
|
|
|
+ asEawOrEap: 1,
|
|
|
});
|
|
|
const chgsList = ref([]);
|
|
|
|
|
|
+/**
|
|
|
+ * 查看运单详情
|
|
|
+ */
|
|
|
const isDetail = computed(() => {
|
|
|
return modelType.value === MODEL_TYPE.DETAIL;
|
|
|
});
|
|
|
+/**
|
|
|
+ * ?可能是新增分运单或者分运单补录
|
|
|
+ */
|
|
|
const isMain = computed(() => {
|
|
|
return orderType.value === WAYBILL_TYPE.MAIN;
|
|
|
});
|
|
|
|
|
|
-const title = computed(() => {
|
|
|
- // eslint-disable-next-line no-nested-ternary
|
|
|
- return isDetail.value
|
|
|
- ? '运单详情'
|
|
|
- : orderType.value === WAYBILL_TYPE.MAIN
|
|
|
- ? '运单补录(主运单)'
|
|
|
- : '运单补录(分运单)';
|
|
|
+// 对话框标题修改
|
|
|
+const title = computed((): string => {
|
|
|
+ if (isDetail.value) {
|
|
|
+ return '运单详情';
|
|
|
+ }
|
|
|
+ if (modelType.value === MODEL_TYPE.MAIN_ADD) {
|
|
|
+ return '新增运单(主运单)';
|
|
|
+ }
|
|
|
+ if (orderType.value === WAYBILL_TYPE.MAIN && !isDetail.value) {
|
|
|
+ return '运单补录(主运单)';
|
|
|
+ }
|
|
|
+ return '运单补录(分运单)';
|
|
|
});
|
|
|
|
|
|
+/**
|
|
|
+ * 渲染费用项的表单控件数据
|
|
|
+ */
|
|
|
const costInfo = computed(() => {
|
|
|
- return getCostInfo(chgsList);
|
|
|
+ const tmp = getCostInfo(chgsList);
|
|
|
+ if (currentFrom.value.asIcs2 === 0) {
|
|
|
+ const hsCodeItem = tmp.find(
|
|
|
+ (item: { field: string }) => item.field === 'hsCode'
|
|
|
+ );
|
|
|
+ if (hsCodeItem) {
|
|
|
+ // 修改 hsCode 对象的 rules
|
|
|
+ hsCodeItem.rules = {
|
|
|
+ required: true,
|
|
|
+ message: '必填项不能为空',
|
|
|
+ };
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ const hsCodeItem = tmp.find((item) => item.field === 'hsCode');
|
|
|
+ if (hsCodeItem) {
|
|
|
+ // 修改 hsCode 对象的 rules
|
|
|
+ hsCodeItem.rules = { required: false, message: '' };
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return tmp;
|
|
|
});
|
|
|
|
|
|
+/**
|
|
|
+ * 初始化字典下拉框
|
|
|
+ */
|
|
|
const initData = async () => {
|
|
|
try {
|
|
|
const dataList = await DictApi.chgsCode();
|
|
@@ -338,6 +429,10 @@ const initData = async () => {
|
|
|
}
|
|
|
};
|
|
|
|
|
|
+/**
|
|
|
+ * form表单提交方法
|
|
|
+ * @param e
|
|
|
+ */
|
|
|
const handleSubmit = async (e: any) => {
|
|
|
const { errors, values } = e;
|
|
|
if (errors) return;
|
|
@@ -348,6 +443,28 @@ const handleSubmit = async (e: any) => {
|
|
|
const params: any = {
|
|
|
awbContact: currentFrom.value.awbContact,
|
|
|
};
|
|
|
+ // 新增主运单
|
|
|
+ if (modelType?.value === MODEL_TYPE.MAIN_ADD) {
|
|
|
+ params.mawbPrice = currentFrom.value.mawbPrice;
|
|
|
+ params.mawbDetail = currentFrom.value.mawbDetail;
|
|
|
+ params.asIcs2 = currentFrom.value.asIcs2;
|
|
|
+ params.asEawOrEap = currentFrom.value.asEawOrEap;
|
|
|
+ console.log(JSON.stringify(params));
|
|
|
+ const res = await ApiObj.addMainWaybill(params);
|
|
|
+ if (res.code === 200) {
|
|
|
+ Message.success('新增主运单成功');
|
|
|
+ dialogVisible.value = false;
|
|
|
+ // 清空表单
|
|
|
+ currentFrom.value = {
|
|
|
+ awbContact: {},
|
|
|
+ mawbDetail: {},
|
|
|
+ mawbPrice: {},
|
|
|
+ asIcs2: null,
|
|
|
+ asEawOrEap: 1,
|
|
|
+ };
|
|
|
+ }
|
|
|
+ return;
|
|
|
+ }
|
|
|
if (isMain.value) {
|
|
|
params.mawbPrice = currentFrom.value.mawbPrice;
|
|
|
params.mawbDetail = currentFrom.value.mawbDetail;
|
|
@@ -365,6 +482,9 @@ const handleSubmit = async (e: any) => {
|
|
|
}
|
|
|
};
|
|
|
|
|
|
+/**
|
|
|
+ * 补录运单
|
|
|
+ */
|
|
|
const handleAdd = async () => {
|
|
|
const params = {
|
|
|
...currentFrom.value.hawbDetail,
|
|
@@ -378,18 +498,82 @@ const handleAdd = async () => {
|
|
|
dialogVisible.value = false;
|
|
|
}
|
|
|
};
|
|
|
-
|
|
|
+// 使用 watch 来监听 fltNoPrefix 和 fltNoSuffix 的变化,并更新 fltNo
|
|
|
+watch(
|
|
|
+ () =>
|
|
|
+ // eslint-disable-next-line no-nested-ternary
|
|
|
+ (currentFrom.value.mawbDetail.fltNoPrefix !== undefined
|
|
|
+ ? currentFrom.value.mawbDetail.fltNoPrefix
|
|
|
+ : '') +
|
|
|
+ (currentFrom.value.mawbDetail.fltNoSuffix !== undefined
|
|
|
+ ? currentFrom.value.mawbDetail.fltNoSuffix
|
|
|
+ : ''),
|
|
|
+ (newValue) => {
|
|
|
+ if (newValue === undefined || newValue === null) {
|
|
|
+ currentFrom.value.mawbDetail.fltNo = '';
|
|
|
+ } else {
|
|
|
+ currentFrom.value.mawbDetail.fltNo = newValue;
|
|
|
+ }
|
|
|
+ }
|
|
|
+);
|
|
|
+/**
|
|
|
+ * 大小写
|
|
|
+ * @param prefix
|
|
|
+ * @param suffix
|
|
|
+ */
|
|
|
const commonUpperCase = (prefix: any, suffix: any) => {
|
|
|
currentFrom.value[prefix][suffix] =
|
|
|
- currentFrom.value[prefix][suffix]?.toLocaleUpperCase();
|
|
|
+ currentFrom.value[prefix][suffix].toLocaleUpperCase();
|
|
|
+};
|
|
|
+/**
|
|
|
+ * 打开新增主运单对话框
|
|
|
+ */
|
|
|
+const openNewMainDialog = (mawbNo: string): void => {
|
|
|
+ nextTick(() => {
|
|
|
+ // 清空表单
|
|
|
+ currentFrom.value = {
|
|
|
+ awbContact: {},
|
|
|
+ mawbDetail: {},
|
|
|
+ mawbPrice: {},
|
|
|
+ asIcs2: null,
|
|
|
+ asEawOrEap: 1,
|
|
|
+ };
|
|
|
+ // 设置默认值
|
|
|
+ currentFrom.value.mawbPrice.ccWtChg = 0;
|
|
|
+ currentFrom.value.mawbPrice.ccVlChg = 0;
|
|
|
+ currentFrom.value.mawbPrice.ccTxChg = 0;
|
|
|
+ currentFrom.value.mawbPrice.ccAgChg = 0;
|
|
|
+ currentFrom.value.mawbPrice.CrChg = 0;
|
|
|
+ currentFrom.value.mawbDetail.mawbNo = mawbNo;
|
|
|
+ currentFrom.value.mawbPrice.wtValChgs = 'pp';
|
|
|
+ dialogVisible.value = true;
|
|
|
+ });
|
|
|
};
|
|
|
|
|
|
const openDialog = () => {
|
|
|
nextTick(() => {
|
|
|
currentFrom.value.awbContact = { ...fromData.value.awbContact };
|
|
|
if (isMain.value) {
|
|
|
- currentFrom.value.mawbPrice = { ...fromData.value.mawbPrice };
|
|
|
currentFrom.value.mawbDetail = { ...fromData.value.mawbDetail };
|
|
|
+ currentFrom.value.mawbDetail = { ...fromData.value.mawbDetail };
|
|
|
+
|
|
|
+ // 主运单补录
|
|
|
+ currentFrom.value.mawbPrice.ccWtChg = setZero(
|
|
|
+ currentFrom.value.mawbPrice.ccWtChg
|
|
|
+ );
|
|
|
+ currentFrom.value.mawbPrice.ccVlChg = setZero(
|
|
|
+ currentFrom.value.mawbPrice.ccVlChg
|
|
|
+ );
|
|
|
+ currentFrom.value.mawbPrice.ccTxChg = setZero(
|
|
|
+ currentFrom.value.mawbPrice.ccTxChg
|
|
|
+ );
|
|
|
+ currentFrom.value.mawbPrice.ccAgChg = setZero(
|
|
|
+ currentFrom.value.mawbPrice.ccAgChg
|
|
|
+ );
|
|
|
+ currentFrom.value.mawbPrice.CrChg = setZero(
|
|
|
+ currentFrom.value.mawbPrice.CrChg
|
|
|
+ );
|
|
|
+
|
|
|
const fltNo = currentFrom.value.mawbDetail.fltNo || '';
|
|
|
const rateItemList = currentFrom.value.mawbPrice.rateItemList || [];
|
|
|
if (fltNo) {
|
|
@@ -414,11 +598,84 @@ const openDialog = () => {
|
|
|
console.log(currentFrom.value);
|
|
|
});
|
|
|
};
|
|
|
-defineExpose({ openDialog });
|
|
|
+
|
|
|
+/**
|
|
|
+ * 将其它费用默认值设置为0
|
|
|
+ * @param tmp
|
|
|
+ */
|
|
|
+const setZero = (tmp: any): string => {
|
|
|
+ if (tmp === '' || tmp === null || tmp === undefined) {
|
|
|
+ return '0';
|
|
|
+ }
|
|
|
+ return tmp;
|
|
|
+};
|
|
|
+/**
|
|
|
+ * 暴露子组件方法给父组件
|
|
|
+ */
|
|
|
+defineExpose({ openDialog, openNewMainDialog });
|
|
|
|
|
|
onMounted(() => {
|
|
|
initData();
|
|
|
});
|
|
|
+/**
|
|
|
+ * 单选按钮组
|
|
|
+ */
|
|
|
+const plainOptions = reactive([
|
|
|
+ { label: '是', value: 0 },
|
|
|
+ { label: '否', value: 1 },
|
|
|
+]);
|
|
|
+
|
|
|
+// 使用 watch 监听 currentForm.asIcs2 的变化
|
|
|
+watch(
|
|
|
+ () => currentFrom.value.asIcs2,
|
|
|
+ (newValue, oldValue) => {
|
|
|
+ console.log('asIcs2 属性变化了:', newValue);
|
|
|
+
|
|
|
+ if (newValue === 0) {
|
|
|
+ nextTick(() => {
|
|
|
+ // 使用代码动态添加 rules , find才能使页面进行渲染,遍历插入的无法生效
|
|
|
+ const cnePostNoItem = gooderInfo.find(
|
|
|
+ (item) => item.field === 'cnePostNo'
|
|
|
+ );
|
|
|
+ if (cnePostNoItem) {
|
|
|
+ cnePostNoItem.rules = { required: true, message: '必填项不可为空!' };
|
|
|
+ }
|
|
|
+ const shpPostNoItem = shipperInfo.find(
|
|
|
+ (item) => item.field === 'shpPostNo'
|
|
|
+ );
|
|
|
+ if (shpPostNoItem) {
|
|
|
+ shpPostNoItem.rules = { required: true, message: '必填项不可为空!' };
|
|
|
+ }
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ nextTick(() => {
|
|
|
+ gooderInfo.forEach((item: any) => {
|
|
|
+ if (item.field === 'cnePostNo') {
|
|
|
+ item.rules = [];
|
|
|
+ }
|
|
|
+ });
|
|
|
+ shipperInfo.forEach((item: any) => {
|
|
|
+ if (item.field === 'shpPostNo') {
|
|
|
+ item.rules = [];
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+);
|
|
|
+
|
|
|
+// 其他费用里的几项 失去焦点的时候,如果是空那么设置为0
|
|
|
+const handleBlur = (tmp: string) => {
|
|
|
+ nextTick(() => {
|
|
|
+ if (
|
|
|
+ currentFrom.value.mawbPrice[tmp] === undefined ||
|
|
|
+ currentFrom.value.mawbPrice[tmp] === null ||
|
|
|
+ currentFrom.value.mawbPrice[tmp] === ''
|
|
|
+ ) {
|
|
|
+ currentFrom.value.mawbPrice[tmp] = 0;
|
|
|
+ }
|
|
|
+ });
|
|
|
+};
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|