index.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. <template>
  2. <div class="table-search">
  3. <a-button class="common-button" @click="showSearchOrder"> 新增 </a-button>
  4. </div>
  5. <CrudTable
  6. ref="crudTableRef"
  7. :api-obj="ApiObj"
  8. :search-config="searchConfig"
  9. :columns="columns"
  10. :search-form="searchForm"
  11. :show-details="false"
  12. :show-add="false"
  13. :show-edit="false"
  14. :show-del="false"
  15. >
  16. <template #operate-cell="{ record }">
  17. <a-button
  18. v-if="record?.status === WAYBILL_ORDER_STATUS_MAP.FINISH"
  19. v-auth="'platform:awb:info'"
  20. type="text"
  21. shape="round"
  22. @click="showOrEditWaybill(MODEL_TYPE.DETAIL, record, 'new')"
  23. >
  24. 详情
  25. </a-button>
  26. <a-button
  27. v-if="
  28. !userStore.isSuperAdmin &&
  29. record?.status === WAYBILL_ORDER_STATUS_MAP.UNFINISHED
  30. "
  31. v-auth="'platform:awb:update'"
  32. type="text"
  33. shape="round"
  34. @click="showOrEditWaybill(MODEL_TYPE.EDIT, record, 'new')"
  35. >补录
  36. </a-button>
  37. <a-button
  38. v-if="
  39. !record?.hawbNo &&
  40. record?.status === WAYBILL_ORDER_STATUS_MAP.UNFINISHED
  41. "
  42. v-auth="'platform:awb:update'"
  43. type="text"
  44. shape="round"
  45. @click="showOrEditWaybill(MODEL_TYPE.ADD, record, 'new')"
  46. >新增分运单
  47. </a-button>
  48. <!-- <a-button
  49. v-if="
  50. !userStore.isSuperAdmin &&
  51. record?.status === WAYBILL_ORDER_STATUS_MAP.UNFINISHED
  52. "
  53. v-auth="'platform:awb:update'"
  54. type="text"
  55. shape="round"
  56. @click="showOrEditWaybill(MODEL_TYPE.EDIT, record)"
  57. >
  58. 补录
  59. </a-button> -->
  60. <a-button
  61. v-if="
  62. !record?.hawbNo && record?.status === WAYBILL_ORDER_STATUS_MAP.FINISH
  63. "
  64. v-auth="'platform:awb:print'"
  65. type="text"
  66. shape="round"
  67. @click="printReport(record)"
  68. >
  69. 打印安检申报单
  70. </a-button>
  71. <a-button
  72. v-auth="'platform:awb:print'"
  73. type="text"
  74. shape="round"
  75. @click="printConfirm(record)"
  76. >
  77. 打印收货确认单
  78. </a-button>
  79. </template>
  80. </CrudTable>
  81. <Additional
  82. v-model="visibleDialog"
  83. :from-data="fromData"
  84. :order-type="orderType"
  85. :model-type="modelType"
  86. ></Additional>
  87. <additionalDialog
  88. ref="additionalDialogRef"
  89. :from-data="fromData"
  90. :order-type="orderType"
  91. :model-type="modelType"
  92. ></additionalDialog>
  93. <!-- 点击新增按钮弹出的对话框 -->
  94. <a-modal
  95. v-model:visible="visible"
  96. :closable="false"
  97. :mask-closable="false"
  98. title=" "
  99. hide-cancel
  100. width="auto"
  101. ok-text="关闭"
  102. :ok-loading="buttonLoading"
  103. @ok="handleOk"
  104. >
  105. <a-form :model="queryForm" layout="inline" @submit="submitQuery">
  106. <a-form-item
  107. field="name"
  108. label="请输入运单号"
  109. :rules="[{ required: true, message: '必填项不可为空!' }]"
  110. >
  111. <a-input v-model="queryForm.name" allow-clear width="200px" />
  112. </a-form-item>
  113. <a-form-item>
  114. <a-button html-type="submit">查询</a-button>
  115. </a-form-item>
  116. </a-form>
  117. </a-modal>
  118. <!-- 查询运单后弹出的对话框 -->
  119. <a-modal
  120. v-model:visible="visibleTip"
  121. width="46%"
  122. ok-text="关闭"
  123. :closable="false"
  124. :mask-closable="false"
  125. :cancel-text="tipCancelText"
  126. @cancel="updateOrSave"
  127. @ok="handleTipClose"
  128. >
  129. <h4 style="color: red">ICS2欧盟申报温馨提示:</h4>
  130. <div v-for="item in cueMsg" :key="item.value">
  131. <p style="color: red; font-size: 11px"
  132. >{{ item.value }}.{{ item.label }}</p
  133. >
  134. </div>
  135. <a-typography-title :heading="4">
  136. <div v-text="tipMsg"> </div>
  137. </a-typography-title>
  138. </a-modal>
  139. </template>
  140. <script lang="ts" setup>
  141. import dayjs from 'dayjs';
  142. import CrudTable from '@/components/crud-table/index';
  143. import { Message } from '@arco-design/web-vue';
  144. import { WAYBILL_TYPE, WAYBILL_ORDER_STATUS_MAP } from '@/constant/waybill';
  145. import { MODEL_TYPE } from '@/constant/base';
  146. import { useWaybillStore, useUserStore } from '@/store';
  147. import DictApi from '@/api/module/DictApi';
  148. import AdditionalDialog from '@/views/departure/waybillManage/additionalDialog.vue';
  149. import ApiObj from './api/CurrentPageApi';
  150. import Additional from './additional.vue';
  151. import { columns } from './functions/table';
  152. import { setFiltrateData } from './functions/data';
  153. const additionalDialogRef = ref<any>(null);
  154. const waybillStatusMap = ref<string[]>([]);
  155. useWaybillStore();
  156. const userStore = useUserStore();
  157. const crudTableRef = ref();
  158. onMounted(async () => {
  159. const res = await DictApi.wbcStatus(); // 原来代码
  160. waybillStatusMap.value = res.data;
  161. });
  162. const timeRange = [
  163. // dayjs().add(-50, 'day').format('YYYY-MM-DD'),
  164. // dayjs().add(14, 'day').format('YYYY-MM-DD'),
  165. dayjs().format('YYYY-MM-DD'),
  166. dayjs().add(14, 'day').format('YYYY-MM-DD'),
  167. ];
  168. const searchForm = reactive<Record<string, any>>({
  169. agtNo: userStore.isSuperAdmin ? '' : userStore.userInfo?.tenant?.threeCode,
  170. timeRange,
  171. });
  172. // 查询条件
  173. const searchConfig = setFiltrateData(waybillStatusMap);
  174. const visibleDialog = ref<boolean>(false);
  175. const orderType = ref<WAYBILL_TYPE>(WAYBILL_TYPE.MAIN);
  176. const modelType = ref<MODEL_TYPE>(MODEL_TYPE.EDIT);
  177. const fromData = ref<Record<string, any>>({});
  178. /**
  179. * 这里确认打开的是 补录主运单 还是 补录分运单 还是 打开新增主运单
  180. * @param type
  181. * @param data
  182. * @param isNew
  183. */
  184. const showOrEditWaybill = async (
  185. type: MODEL_TYPE,
  186. data: Record<string, any>,
  187. isNew?: string
  188. ) => {
  189. modelType.value = type;
  190. if (isNew === 'mainNew') {
  191. // 主运单新增
  192. if (additionalDialogRef.value) {
  193. additionalDialogRef.value.openNewMainDialog(queryForm.name);
  194. }
  195. return;
  196. }
  197. const res = await ApiObj.get(data);
  198. fromData.value = res.data ?? {};
  199. // fromData.value = dataList.data ?? {}; // fixme 这里给测试数据
  200. // Object.keys(fromData.value).forEach((key: string) => {
  201. // waybillStore.setValueByKey(key, fromData.value[key]);
  202. // });
  203. // 目前只有分单有新增
  204. orderType.value =
  205. data?.hawbNo || type === MODEL_TYPE.ADD
  206. ? WAYBILL_TYPE.SPLIT
  207. : WAYBILL_TYPE.MAIN;
  208. if (isNew === 'new') {
  209. if (additionalDialogRef.value) {
  210. additionalDialogRef.value.openDialog();
  211. }
  212. } else {
  213. visibleDialog.value = true;
  214. }
  215. };
  216. const printReport = async (data: Record<string, any>) => {
  217. const { agtNo, mawbId } = data;
  218. try {
  219. console.log('---导出');
  220. await ApiObj.printReport({
  221. agtNo,
  222. mawbId,
  223. });
  224. } catch (error) {
  225. Message.error('数据导出异常');
  226. }
  227. };
  228. const printConfirm = async (data: Record<string, any>) => {
  229. const { mawbId } = data;
  230. try {
  231. const res = await ApiObj.printConfirm({
  232. id: mawbId,
  233. });
  234. } catch (error) {
  235. Message.error('数据导出异常');
  236. }
  237. };
  238. interface queryFormInterface {
  239. name: string;
  240. }
  241. const visible = ref<boolean>(false);
  242. const tipMsg = ref<string>('');
  243. const tipCancelText = ref<string>('');
  244. const visibleTip = ref<boolean>(false);
  245. const buttonLoading = ref<boolean>(false);
  246. const queryForm = reactive<queryFormInterface>({
  247. name: '',
  248. });
  249. /**
  250. * 点击新增按钮
  251. */
  252. function showSearchOrder(): void {
  253. visible.value = true;
  254. }
  255. /**
  256. * 点击新增按钮对话框的关闭按钮
  257. */
  258. function handleOk(): void {
  259. queryForm.name = '';
  260. buttonLoading.value = false;
  261. visible.value = false;
  262. }
  263. /**
  264. * 点击新增按钮对话框的查询按钮
  265. */
  266. const submitQuery = async (e: any) => {
  267. const { errors, values } = e;
  268. if (errors) return; // 表单校验
  269. try {
  270. // 根据运单号查询运单是否存在
  271. // const res = await ApiObj.get({ mawbNo: queryForm.name });
  272. // console.log(res);
  273. // const flag = res.data !== null && res.data !== undefined;
  274. const flag = queryForm.name === '1';
  275. visibleTip.value = true;
  276. if (flag) {
  277. // 假设运单存在
  278. tipMsg.value = '当前运单已存在,点击补录按钮补录运单';
  279. // 弹出的子对话框按钮变为 补录 关闭
  280. tipCancelText.value = '补录';
  281. } else {
  282. // 假设运单不存在
  283. tipMsg.value = '当前运单号不存在,点击新增按钮新增运单';
  284. // 弹出的子对话框按钮变为 新增 关闭
  285. tipCancelText.value = '新增';
  286. }
  287. } catch (error) {
  288. Message.error('数据导出异常');
  289. }
  290. };
  291. const handleTipClose = () => {
  292. visibleTip.value = false;
  293. };
  294. type CueMessage = {
  295. value: number;
  296. label: string;
  297. };
  298. // ICS2欧盟申报温馨提示
  299. const cueMsg = ref<CueMessage[]>([
  300. {
  301. value: 1,
  302. label:
  303. '凡是属于3S/D0/I9/ES且航班目的地为飞往欧盟以及挪威和瑞士的所有航班,请选择IC2选项',
  304. },
  305. {
  306. value: 2,
  307. label:
  308. '请根据航班目的站为欧盟以及挪威和瑞士,而不是以运单目的地,作为ICS2申报的必要条件。',
  309. },
  310. {
  311. value: 3,
  312. label:
  313. '主分单录入中的单个商品编码请勿以空格隔开,比如61020499为正确格式,而61 02 04 99为不规范格式。' +
  314. '多个商品编码请以空格隔开,比如61020499 61020410为正确格式,61020499, 61020410为不规范格式。',
  315. },
  316. {
  317. value: 4,
  318. label: '请尽量一次性录入规范正确的主分单信息,防止多次修改主分单。',
  319. },
  320. ]);
  321. /**
  322. * 补录或是新增
  323. */
  324. const updateOrSave = () => {
  325. if (tipCancelText.value === '新增') {
  326. showOrEditWaybill(MODEL_TYPE.MAIN_ADD, queryForm, 'mainNew');
  327. } else {
  328. // 调用补录
  329. showOrEditWaybill(MODEL_TYPE.EDIT, queryForm, 'new');
  330. }
  331. };
  332. </script>