index.vue 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335
  1. <template>
  2. <div class="page-wecom-approval">
  3. <div
  4. v-if="loading"
  5. v-loading="true"
  6. style="
  7. width: 100vw;
  8. height: 100vh;
  9. z-index: 999;
  10. position: fixed;
  11. top: 0;
  12. left: 0;
  13. "
  14. class=""
  15. element-loading-text="Loading..."
  16. element-loading-background="rgba(0, 0, 0, 0.3)"
  17. ></div>
  18. <div class="main-content">
  19. <div
  20. class="flex"
  21. style="max-width: 800px; margin: 0 auto"
  22. >
  23. <div class="logo-area">
  24. <img
  25. :src="getLogoPath()"
  26. alt=""
  27. />
  28. </div>
  29. <div class="page-title">货物运输申请</div>
  30. <!-- <el-button @click="redirectToCRM">test</el-button> -->
  31. </div>
  32. <el-form
  33. ref="mainForm"
  34. style="max-width: 800px; margin: 0 auto"
  35. :model="form"
  36. :rules="rules"
  37. label-width="150px"
  38. label-position="left"
  39. >
  40. <el-form-item
  41. label="申请人"
  42. prop="name"
  43. >
  44. <el-input
  45. v-model="form.creator_userid"
  46. disabled
  47. style="display: none"
  48. ></el-input>
  49. <div style="font-weight: bold">{{ firstName }}</div>
  50. </el-form-item>
  51. <el-form-item
  52. prop="so_ref"
  53. label="SO Reference"
  54. >
  55. <el-input
  56. v-model="form.so_ref"
  57. style="display: none"
  58. disabled
  59. ></el-input>
  60. <div class="">{{ form.so_ref }}</div>
  61. </el-form-item>
  62. <el-form-item
  63. prop="job_name"
  64. label="Job Name"
  65. >
  66. <el-input
  67. v-model="form.job_name"
  68. style="display: none"
  69. disabled
  70. ></el-input>
  71. <div class="">{{ form.job_name }}</div>
  72. </el-form-item>
  73. <el-form-item
  74. prop="location"
  75. label="Location"
  76. >
  77. <el-radio-group v-model="form.location">
  78. <el-radio
  79. v-for="item in locationList"
  80. :key="item.key"
  81. :label="item.value[0].text"
  82. :value="item.key"
  83. ></el-radio>
  84. </el-radio-group>
  85. </el-form-item>
  86. <el-form-item
  87. prop="yunshu"
  88. label="运输方式"
  89. >
  90. <el-radio-group v-model="form.yunshu">
  91. <el-radio
  92. v-for="item in yunshuList"
  93. :key="item.key"
  94. :label="item.value[0].text"
  95. :value="item.key"
  96. ></el-radio>
  97. </el-radio-group>
  98. </el-form-item>
  99. <el-form-item
  100. v-if="form.yunshu === 'option-1718767952637'"
  101. label="Cbm"
  102. prop="cbm"
  103. >
  104. <el-input
  105. v-model="form.cbm"
  106. placeholder="如选择海运,请填写方数"
  107. type="number"
  108. ></el-input>
  109. </el-form-item>
  110. <el-form-item
  111. prop="huoyun"
  112. label="货运方式"
  113. >
  114. <el-radio-group v-model="form.huoyun">
  115. <el-radio
  116. v-for="item in huoyunList"
  117. :key="item.key"
  118. :label="item.value[0].text"
  119. :value="item.key"
  120. ></el-radio>
  121. </el-radio-group>
  122. </el-form-item>
  123. <el-form-item
  124. v-if="form.huoyun === 'option-1718768018003'"
  125. label="货代名称"
  126. prop="huodai"
  127. >
  128. <el-select v-model="form.huodai">
  129. <el-option
  130. v-for="item in huodaiList"
  131. :key="item.key"
  132. :label="item.value[0].text"
  133. :value="item.key"
  134. ></el-option>
  135. </el-select>
  136. </el-form-item>
  137. <el-form-item
  138. prop="trans"
  139. label="中转方式"
  140. >
  141. <el-radio-group v-model="form.trans">
  142. <el-radio
  143. v-for="item in transList"
  144. :key="item.key"
  145. :label="item.value[0].text"
  146. :value="item.key"
  147. ></el-radio>
  148. </el-radio-group>
  149. </el-form-item>
  150. <el-form-item
  151. prop="number"
  152. label="箱数"
  153. >
  154. <el-input v-model="form.number"></el-input>
  155. </el-form-item>
  156. <el-form-item
  157. prop="weight"
  158. label="重量"
  159. >
  160. <el-input v-model="form.weight">
  161. <template #append>
  162. <div style="width: 100px; text-align: center">kg</div>
  163. </template>
  164. </el-input>
  165. </el-form-item>
  166. <el-form-item label="地址">
  167. <div class="addr-input-group">
  168. <div class="flex items-start">
  169. <el-input
  170. v-model="form.ATTN"
  171. placeholder="ATTN"
  172. ></el-input>
  173. <div class="addr-append">ATTN</div>
  174. </div>
  175. <div class="flex items-start">
  176. <el-input
  177. v-model="form.Phone"
  178. placeholder="Phone"
  179. ></el-input>
  180. <div class="addr-append">Phone</div>
  181. </div>
  182. <div class="flex items-stretch">
  183. <el-input
  184. v-model="form.Shipping_Unit_Building_Name"
  185. placeholder="Shipping Unit/Building Name"
  186. :autosize="{ minRows: 1 }"
  187. type="textarea"
  188. ></el-input>
  189. <div class="addr-append">Shipping Unit</div>
  190. </div>
  191. <div class="flex items-start">
  192. <el-input
  193. v-model="form.Shipping_Street"
  194. placeholder="Shipping Street"
  195. ></el-input>
  196. <div class="addr-append">Shipping Street</div>
  197. </div>
  198. <div class="flex items-start">
  199. <el-input
  200. v-model="form.Shipping_City"
  201. placeholder="Shipping City"
  202. ></el-input>
  203. <div class="addr-append">Shipping City</div>
  204. </div>
  205. <div class="flex items-start">
  206. <el-input
  207. v-model="form.Shipping_State"
  208. placeholder="Shipping state"
  209. ></el-input>
  210. <div class="addr-append">Shipping State</div>
  211. </div>
  212. <div class="flex items-start">
  213. <el-input
  214. v-model="form.Shipping_Code"
  215. placeholder="Shipping Code"
  216. ></el-input>
  217. <div class="addr-append">Shipping Code</div>
  218. </div>
  219. <div class="flex items-start">
  220. <el-input
  221. v-model="form.Shipping_Country"
  222. placeholder="Shipping Country"
  223. ></el-input>
  224. <div class="addr-append">Shipping Country</div>
  225. </div>
  226. </div>
  227. </el-form-item>
  228. <el-form-item
  229. prop="comment"
  230. label="装箱备注"
  231. >
  232. <el-input
  233. v-model="form.comment"
  234. placeholder="任何补充,请在此处填写"
  235. type="textarea"
  236. :rows="3"
  237. ></el-input>
  238. </el-form-item>
  239. <el-form-item
  240. prop="file"
  241. label="附件"
  242. >
  243. <div>
  244. <label for="fileInput">
  245. <el-tooltip
  246. :content="'企业微信限制了传\'图片\'最大只能上传10MB, 传\'文件\'类型最大只能上传20MB, 上传数量上限为6. 企微可能随时会调整, 建议别传太大的文件.'"
  247. >
  248. <div class="el-button el-button-primary">添加附件</div>
  249. </el-tooltip>
  250. </label>
  251. <br />
  252. <div style="color: #999">
  253. Artwork/Agreement/合同/其他附件, 请Attach
  254. </div>
  255. <div class="">
  256. <div
  257. v-for="(file, i) in form.files"
  258. :key="i"
  259. class="flex"
  260. >
  261. <div style="color: #333; margin-right: 24px">
  262. {{ file.name }}
  263. </div>
  264. <el-button
  265. size="small"
  266. type="danger"
  267. @click="deleteFile(i)"
  268. >
  269. Delete
  270. </el-button>
  271. </div>
  272. </div>
  273. </div>
  274. </el-form-item>
  275. <el-form-item label="价格">
  276. <el-table :data="form.price">
  277. <el-table-column
  278. label="货代价格"
  279. prop=""
  280. >
  281. <template #default="scope">
  282. <el-input
  283. v-model="scope.row.pa"
  284. placeholder="请填写我们支付给货代总金额或者每公斤单价"
  285. ></el-input>
  286. </template>
  287. </el-table-column>
  288. <el-table-column
  289. width="220"
  290. label="发票单价(AUD/USD)"
  291. prop=""
  292. >
  293. <template #default="scope">
  294. <el-input
  295. v-model="scope.row.pb"
  296. placeholder="请填写申报发票上的单价"
  297. ></el-input>
  298. </template>
  299. </el-table-column>
  300. <el-table-column
  301. width="100"
  302. label="操作"
  303. >
  304. <template #default="scope">
  305. <el-button
  306. type="danger"
  307. size="small"
  308. @click="deletePriceRow(scope.row, scope.$index)"
  309. >
  310. Delete
  311. </el-button>
  312. </template>
  313. </el-table-column>
  314. </el-table>
  315. <el-button
  316. size="small"
  317. @click="addPriceRow"
  318. >
  319. Add row
  320. </el-button>
  321. </el-form-item>
  322. <br />
  323. <el-form-item>
  324. <template #label>
  325. <div>
  326. <div class="">货物</div>
  327. <el-button
  328. type="danger"
  329. size="small"
  330. @click="resetGoods"
  331. >
  332. Reset
  333. </el-button>
  334. <el-button
  335. style="margin: 8px 0 0 0"
  336. type="primary"
  337. size="small"
  338. @click="autoFillNumber"
  339. >
  340. Dispatch All
  341. </el-button>
  342. </div>
  343. </template>
  344. <el-table :data="form.goods">
  345. <el-table-column label="品名">
  346. <template #default="scope">
  347. <el-input
  348. v-model="scope.row.name"
  349. disabled
  350. ></el-input>
  351. <el-input
  352. v-model="scope.row.desc"
  353. type="textarea"
  354. row="3"
  355. disabled
  356. style="margin-top: 8px"
  357. ></el-input>
  358. </template>
  359. </el-table-column>
  360. <el-table-column
  361. width="120"
  362. label="剩余数量"
  363. prop="quantity"
  364. >
  365. <template #default="scope">
  366. <el-input
  367. v-model="scope.row.quantity"
  368. type="number"
  369. disabled
  370. min="0"
  371. ></el-input>
  372. </template>
  373. </el-table-column>
  374. <el-table-column
  375. width="120"
  376. label="发货数量"
  377. prop="number"
  378. >
  379. <template #default="scope">
  380. <el-form-item
  381. label=""
  382. label-width="0"
  383. :prop="'goods.' + scope.$index + '.number'"
  384. :rules="{
  385. required: true,
  386. message: '必填项',
  387. trigger: ['blur', 'change'],
  388. }"
  389. >
  390. <el-input
  391. v-model="scope.row.number"
  392. type="number"
  393. min="0"
  394. @change="(e) => limitNumber(e, scope.row, 'number')"
  395. ></el-input>
  396. </el-form-item>
  397. </template>
  398. </el-table-column>
  399. <el-table-column
  400. label="操作"
  401. width="100"
  402. >
  403. <template #default="scope">
  404. <el-button
  405. type="danger"
  406. size="small"
  407. @click="deleteGoodRow(scope.row, scope.$index)"
  408. >
  409. Delete
  410. </el-button>
  411. </template>
  412. </el-table-column>
  413. </el-table>
  414. </el-form-item>
  415. <el-form-item>
  416. <div class="flex">
  417. <el-button
  418. size="large"
  419. type="primary"
  420. :disabled="submited"
  421. :loading="loading"
  422. @click="checkForm(mainForm)"
  423. >
  424. 提交
  425. </el-button>
  426. </div>
  427. </el-form-item>
  428. </el-form>
  429. <div class="copyright">
  430. Copyright of Promocollection - Version 1.0 Released on 01/07/2024
  431. </div>
  432. </div>
  433. <input
  434. id="fileInput"
  435. type="file"
  436. multiple
  437. style="display: none"
  438. @change="processFile"
  439. />
  440. </div>
  441. </template>
  442. <script lang="ts">
  443. export default defineComponent({
  444. name: 'WecomApproval',
  445. })
  446. </script>
  447. <script lang="ts" setup>
  448. import { computed, defineComponent, ref } from 'vue'
  449. import { useRoute } from 'vue-router'
  450. import {
  451. ElButton,
  452. ElForm,
  453. ElFormItem,
  454. ElInput,
  455. ElRadio,
  456. ElRadioGroup,
  457. ElTable,
  458. ElTableColumn,
  459. ElSelect,
  460. ElOption,
  461. ElMessage,
  462. ElTooltip,
  463. ElNotification,
  464. } from 'element-plus'
  465. import type { FormRules, FormInstance } from 'element-plus'
  466. import request from '@/utils/axios'
  467. const loading = ref(false)
  468. const mainForm = ref<FormInstance>()
  469. const form = ref({
  470. creator_userid: '',
  471. so_ref: '',
  472. job_name: '',
  473. location: '',
  474. yunshu: '',
  475. cbm: '',
  476. huoyun: '',
  477. huodai: '',
  478. trans: '',
  479. number: '',
  480. weight: '',
  481. ATTN: '',
  482. Phone: '',
  483. Shipping_Unit_Building_Name: '',
  484. Shipping_Street: '',
  485. Shipping_City: '',
  486. Shipping_State: '',
  487. Shipping_Code: '',
  488. Shipping_Country: '',
  489. comment: '',
  490. archer: '',
  491. price: [{ pa: '', pb: '' }],
  492. goods: [] as any[],
  493. files: [] as { file_id: string; name: string }[], // 附件
  494. useField: '',
  495. })
  496. const rules = ref<FormRules>({
  497. creator_userid: [{ required: true, message: '必填项', trigger: 'blur' }],
  498. so_ref: [{ required: true, message: '必填项', trigger: 'blur' }],
  499. job_name: [{ required: true, message: '必填项', trigger: 'blur' }],
  500. location: [{ required: true, message: '必填项', trigger: 'blur' }],
  501. yunshu: [{ required: true, message: '必填项', trigger: 'blur' }],
  502. cbm: [{ required: true, message: '必填项', trigger: 'blur' }],
  503. huoyun: [{ required: true, message: '必填项', trigger: 'blur' }],
  504. huodai: [{ required: true, message: '必填项', trigger: 'blur' }],
  505. trans: [{ required: true, message: '必填项', trigger: 'blur' }],
  506. })
  507. const locationList = [
  508. {
  509. key: 'option-1718767763003',
  510. value: [
  511. {
  512. text: 'AU',
  513. lang: 'zh_CN',
  514. },
  515. ],
  516. },
  517. {
  518. key: 'option-1718767763004',
  519. value: [
  520. {
  521. text: 'NZ',
  522. lang: 'zh_CN',
  523. },
  524. ],
  525. },
  526. {
  527. key: 'option-1718767776803',
  528. value: [
  529. {
  530. text: 'Other(请在地址栏填写其他国家)',
  531. lang: 'zh_CN',
  532. },
  533. ],
  534. },
  535. ]
  536. const yunshuList = [
  537. {
  538. key: 'option-1718767905143',
  539. value: [
  540. {
  541. text: '其他空运',
  542. lang: 'zh_CN',
  543. },
  544. ],
  545. },
  546. {
  547. key: 'option-1718767938758',
  548. value: [
  549. {
  550. text: 'DHL空运',
  551. lang: 'zh_CN',
  552. },
  553. ],
  554. },
  555. {
  556. key: 'option-1718767944843',
  557. value: [
  558. {
  559. text: 'TNT空运',
  560. lang: 'zh_CN',
  561. },
  562. ],
  563. },
  564. {
  565. key: 'option-1718767905144',
  566. value: [
  567. {
  568. text: 'FedEx空运',
  569. lang: 'zh_CN',
  570. },
  571. ],
  572. },
  573. {
  574. key: 'option-1718767952637',
  575. value: [
  576. {
  577. text: '海运',
  578. lang: 'zh_CN',
  579. },
  580. ],
  581. },
  582. ]
  583. const huoyunList = [
  584. {
  585. key: 'option-1718767971282',
  586. value: [
  587. {
  588. text: '自送AUE',
  589. lang: 'zh_CN',
  590. },
  591. ],
  592. },
  593. {
  594. key: 'option-1718767971283',
  595. value: [
  596. {
  597. text: '自送浚捷',
  598. lang: 'zh_CN',
  599. },
  600. ],
  601. },
  602. {
  603. key: 'option-1718768010827',
  604. value: [
  605. {
  606. text: 'Logistics直发客户',
  607. lang: 'zh_CN',
  608. },
  609. ],
  610. },
  611. {
  612. key: 'option-1718768018003',
  613. value: [
  614. {
  615. text: '货代',
  616. lang: 'zh_CN',
  617. },
  618. ],
  619. },
  620. ]
  621. const huodaiList = [
  622. {
  623. key: 'option-1718768061055',
  624. value: [
  625. {
  626. text: '腾信',
  627. lang: 'zh_CN',
  628. },
  629. ],
  630. },
  631. {
  632. key: 'option-1718768061056',
  633. value: [
  634. {
  635. text: 'BWW',
  636. lang: 'zh_CN',
  637. },
  638. ],
  639. },
  640. {
  641. key: 'option-1718768085759',
  642. value: [
  643. {
  644. text: '天汇',
  645. lang: 'zh_CN',
  646. },
  647. ],
  648. },
  649. {
  650. key: 'option-1718768093097',
  651. value: [
  652. {
  653. text: '耀辉',
  654. lang: 'zh_CN',
  655. },
  656. ],
  657. },
  658. {
  659. key: 'option-1718768107857',
  660. value: [
  661. {
  662. text: '聂先生',
  663. lang: 'zh_CN',
  664. },
  665. ],
  666. },
  667. {
  668. key: 'option-1718768114817',
  669. value: [
  670. {
  671. text: '项先生',
  672. lang: 'zh_CN',
  673. },
  674. ],
  675. },
  676. {
  677. key: 'option-1718768125847',
  678. value: [
  679. {
  680. text: '鑫发',
  681. lang: 'zh_CN',
  682. },
  683. ],
  684. },
  685. {
  686. key: 'option-1718768131503',
  687. value: [
  688. {
  689. text: '茗佳',
  690. lang: 'zh_CN',
  691. },
  692. ],
  693. },
  694. {
  695. key: 'option-1723103324115',
  696. value: [
  697. {
  698. text: '其他货代(请与物流部沟通)',
  699. lang: 'zh_CN',
  700. },
  701. ],
  702. },
  703. ]
  704. const transList = [
  705. {
  706. key: 'option-1718768200256',
  707. value: [
  708. {
  709. text: '直送NZ',
  710. lang: 'zh_CN',
  711. },
  712. ],
  713. },
  714. {
  715. key: 'option-1718768200257',
  716. value: [
  717. {
  718. text: '直送客户',
  719. lang: 'zh_CN',
  720. },
  721. ],
  722. },
  723. {
  724. key: 'option-1718768224239',
  725. value: [
  726. {
  727. text: 'to AUWH',
  728. lang: 'zh_CN',
  729. },
  730. ],
  731. },
  732. ]
  733. const addPriceRow = () =>
  734. form.value.price.push({
  735. pa: '',
  736. pb: '',
  737. })
  738. const deletePriceRow = function (row: any, index: number) {
  739. form.value.price.splice(index, 1)
  740. }
  741. const deleteGoodRow = function (row: any, index: number) {
  742. form.value.goods.splice(index, 1)
  743. }
  744. const deleteFile = function (index: number) {
  745. form.value.files.splice(index, 1)
  746. }
  747. const route = useRoute()
  748. const soData = ref(
  749. {} as {
  750. Contract_Title: string
  751. Reference: string
  752. Pkg_details: any[]
  753. Product_Details: any[]
  754. },
  755. )
  756. const resetGoods = function () {
  757. if (
  758. Array.isArray(soData.value.Pkg_details) &&
  759. soData.value.Pkg_details.length
  760. ) {
  761. form.value.useField = 'Pkg_details'
  762. form.value.goods = soData.value.Pkg_details.map((i: any) => {
  763. return {
  764. id: i.Product_Line_Id,
  765. name: i.Product?.name || '',
  766. desc: i.Description || '',
  767. quantity: i.Quantity || 0,
  768. number: '',
  769. }
  770. })
  771. } else if (Array.isArray(soData.value.Product_Details)) {
  772. form.value.useField = 'Product_Details'
  773. form.value.goods = soData.value.Product_Details.map((i: any) => {
  774. console.log('iii')
  775. return {
  776. id: i.id,
  777. name: i.product.name || '',
  778. desc: i.product_description || '',
  779. quantity: i.quantity || 0,
  780. number: '',
  781. }
  782. })
  783. } else {
  784. form.value.goods = []
  785. }
  786. }
  787. const autoFillNumber = function () {
  788. form.value.goods.forEach((i) => {
  789. i.number = i.quantity
  790. })
  791. }
  792. const firstName = ref('')
  793. request
  794. .post('/common/getSalesOrdersData', {
  795. id: route.params.id,
  796. })
  797. .then((res) => {
  798. const d = res.data.result
  799. if (res.status === 200 && res.data.code === 1) {
  800. soData.value = d
  801. if (d.Package_not_complate === true) {
  802. ElNotification({
  803. duration: 0,
  804. type: 'error',
  805. title: '出错啦!',
  806. message: 'Please confirm current package before a create a new one',
  807. })
  808. return false
  809. }
  810. firstName.value = (route.query.firstName as string) || ''
  811. form.value.creator_userid = (route.query.userName as string) || ''
  812. form.value.job_name = d.Contract_Title
  813. form.value.so_ref = d.Reference
  814. form.value.ATTN = d.ATTN || ''
  815. form.value.Phone = d.Phone || ''
  816. form.value.Shipping_Unit_Building_Name =
  817. d.Shipping_Unit_Building_Name || ''
  818. form.value.Shipping_Street = d.Shipping_Street || ''
  819. form.value.Shipping_City = d.Shipping_City || ''
  820. form.value.Shipping_State = d.Shipping_State || ''
  821. form.value.Shipping_Code = d.Shipping_Code || ''
  822. form.value.Shipping_Country = d.Shipping_Country || ''
  823. }
  824. resetGoods()
  825. })
  826. const limitNumber = function (e: any, obj: any, key: string) {
  827. if (e) {
  828. obj[key] = Math.round(Number(e))
  829. }
  830. }
  831. const resetFileInput = function () {
  832. const input = document.getElementById('fileInput') as HTMLInputElement
  833. if (input) {
  834. input.value = ''
  835. }
  836. }
  837. const processFile = async function (event: any) {
  838. if (loading.value) {
  839. console.log('重复 change')
  840. // 如果正在上传, 无视重复选择文件动作
  841. resetFileInput()
  842. return
  843. }
  844. const files = event.target.files || event.dataTransfer.files
  845. loading.value = true
  846. Promise.all(
  847. Array.from(files).map((file: any) => {
  848. const fileForm = new FormData()
  849. fileForm.append('file', file)
  850. return request
  851. .post('/Shipping_tracking/uploadStraightFile', fileForm, {
  852. headers: {
  853. 'Content-Type': 'multipart/form-data',
  854. },
  855. })
  856. .then((res) => {
  857. const d = res.data
  858. if (![1, 200].includes(d.result.code)) {
  859. ElMessage.error(d.result?.message?.errmsg || 'error')
  860. } else {
  861. ElMessage.success(file.name + '上传成功')
  862. form.value.files.push({
  863. file_id: d.result.message.media_id || '',
  864. name: file.name,
  865. })
  866. }
  867. })
  868. }),
  869. ).finally(() => {
  870. loading.value = false
  871. // 处理上传完文件, 重置文件输入框内容
  872. resetFileInput()
  873. })
  874. }
  875. const approvalCount = computed(() => {
  876. return form.value.goods.reduce((t, i) => {
  877. t += Number(i.number)
  878. return t
  879. }, 0)
  880. })
  881. const checkForm = function (formEl: FormInstance | undefined) {
  882. if (approvalCount.value <= 0) {
  883. ElNotification({
  884. duration: 0,
  885. type: 'warning',
  886. title: '注意',
  887. message: '总发货数量不能为 0, 请修改发货数量。',
  888. })
  889. return
  890. }
  891. if (!formEl) return
  892. formEl.validate((valid, fields) => {
  893. if (valid) {
  894. submit()
  895. } else {
  896. ElMessage.error('请检查表单必填项')
  897. }
  898. })
  899. }
  900. const submited = ref(false)
  901. const submit = function () {
  902. // 接口
  903. const d: any = {
  904. creator_userid: form.value.creator_userid,
  905. template_id: '3TmmDAekrafuPCvjxB9TqYwrmk5uj6XGoxseaD1J', // 申请模版 的id
  906. use_template_approver: 1, // 使用此模板在管理后台设置的审批流程
  907. apply_data: {
  908. contents: [
  909. {
  910. control: 'Text',
  911. id: 'Text-1718767851650',
  912. value: {
  913. text: form.value.so_ref,
  914. },
  915. },
  916. {
  917. control: 'Text',
  918. id: 'Text-1718767876049',
  919. value: {
  920. text: form.value.job_name,
  921. },
  922. },
  923. {
  924. control: 'Selector',
  925. id: 'Selector-1718767763003',
  926. value: {
  927. selector: {
  928. type: 'single',
  929. options: [
  930. {
  931. key: form.value.location,
  932. },
  933. ],
  934. },
  935. },
  936. },
  937. {
  938. // 运输方式
  939. control: 'Selector',
  940. id: 'Selector-1718767905142',
  941. value: {
  942. selector: {
  943. type: 'single',
  944. options: [
  945. {
  946. key: form.value.yunshu,
  947. },
  948. ],
  949. },
  950. },
  951. },
  952. {
  953. // 货运
  954. control: 'Selector',
  955. id: 'Selector-1718767971281',
  956. value: {
  957. selector: {
  958. type: 'single',
  959. options: [
  960. {
  961. key: form.value.huoyun,
  962. },
  963. ],
  964. },
  965. },
  966. },
  967. {
  968. // 中转
  969. control: 'Selector',
  970. id: 'Selector-1718768200256',
  971. value: {
  972. selector: {
  973. type: 'single',
  974. options: [
  975. {
  976. key: form.value.trans,
  977. },
  978. ],
  979. },
  980. },
  981. },
  982. {
  983. control: 'Number',
  984. id: 'Number-1718768439507',
  985. value: {
  986. new_number: form.value.number,
  987. },
  988. },
  989. {
  990. control: 'Number',
  991. id: 'Number-1718768458174',
  992. value: {
  993. new_number: form.value.weight,
  994. },
  995. },
  996. {
  997. // 地址
  998. control: 'Textarea',
  999. id: 'Textarea-1718769752197',
  1000. value: {
  1001. text: (
  1002. (form.value.ATTN ? `ATTN ${form.value.ATTN}; ` : '') +
  1003. (form.value.Phone ? `Phone ${form.value.Phone}` : '') +
  1004. '\n' +
  1005. form.value.Shipping_Unit_Building_Name +
  1006. ', ' +
  1007. form.value.Shipping_Street +
  1008. ', ' +
  1009. form.value.Shipping_City +
  1010. ', ' +
  1011. form.value.Shipping_State +
  1012. ', ' +
  1013. form.value.Shipping_Code +
  1014. ', ' +
  1015. form.value.Shipping_Country
  1016. )
  1017. .trim()
  1018. .replace('null', ''),
  1019. },
  1020. },
  1021. {
  1022. // 装箱备注
  1023. control: 'Textarea',
  1024. id: 'Textarea-1718769807829',
  1025. value: {
  1026. text: form.value.comment,
  1027. },
  1028. },
  1029. ] as any[],
  1030. },
  1031. summary_list: [
  1032. {
  1033. summary_info: [
  1034. {
  1035. text: locationList.filter((i) => i.key === form.value.location)[0]
  1036. .value[0].text,
  1037. lang: 'zh_CN',
  1038. },
  1039. ],
  1040. },
  1041. {
  1042. summary_info: [
  1043. {
  1044. text: form.value.so_ref,
  1045. lang: 'zh_CN',
  1046. },
  1047. ],
  1048. },
  1049. {
  1050. summary_info: [
  1051. {
  1052. text: form.value.job_name,
  1053. lang: 'zh_CN',
  1054. },
  1055. ],
  1056. },
  1057. ],
  1058. }
  1059. if (form.value.yunshu === 'option-1718767952637') {
  1060. d.apply_data.contents.push({
  1061. control: 'Number',
  1062. id: 'Number-1718768530132',
  1063. value: {
  1064. new_number: form.value.cbm,
  1065. },
  1066. })
  1067. }
  1068. if (form.value.huoyun === 'option-1718768018003') {
  1069. d.apply_data.contents.push({
  1070. control: 'Selector',
  1071. id: 'Selector-1718768061055',
  1072. value: {
  1073. selector: {
  1074. type: 'single',
  1075. options: [
  1076. {
  1077. key: form.value.huodai,
  1078. },
  1079. ],
  1080. },
  1081. },
  1082. })
  1083. }
  1084. if (form.value.price.length) {
  1085. // 价格数据
  1086. d.apply_data.contents.push({
  1087. control: 'Table',
  1088. id: 'Table-1718768730236',
  1089. value: {
  1090. children: form.value.price.map((p) => {
  1091. return {
  1092. list: [
  1093. {
  1094. control: 'Text',
  1095. id: 'Text-1718769352473',
  1096. value: {
  1097. text: p.pa,
  1098. },
  1099. },
  1100. {
  1101. control: 'Text',
  1102. id: 'Text-1718769658148',
  1103. value: {
  1104. text: p.pb,
  1105. },
  1106. },
  1107. ],
  1108. }
  1109. }),
  1110. },
  1111. })
  1112. }
  1113. if (form.value.goods.length) {
  1114. // 货物数据
  1115. d.apply_data.contents.push({
  1116. control: 'Table',
  1117. id: 'Table-1718950612643',
  1118. value: {
  1119. children: form.value.goods
  1120. .filter((g) => g.number > 0)
  1121. .map((g) => {
  1122. if (g.number > g.quantity) {
  1123. setTimeout(() => {
  1124. ElNotification({
  1125. duration: 0,
  1126. type: 'warning',
  1127. title: '注意',
  1128. message: `${g.name} 发货数量${g.number}大于可发货数量${g.quantity}`,
  1129. })
  1130. }, 0)
  1131. }
  1132. return {
  1133. list: [
  1134. {
  1135. control: 'Text',
  1136. id: 'Text-1718950641228',
  1137. value: {
  1138. text: g.name,
  1139. },
  1140. },
  1141. {
  1142. control: 'Textarea',
  1143. id: 'Textarea-1718950654801',
  1144. value: {
  1145. text: g.desc,
  1146. },
  1147. },
  1148. {
  1149. control: 'Number',
  1150. id: 'Number-1718950666260',
  1151. value: {
  1152. new_number: g.number,
  1153. },
  1154. },
  1155. ],
  1156. }
  1157. }),
  1158. },
  1159. })
  1160. }
  1161. if (form.value.files.length) {
  1162. // 附件
  1163. d.apply_data.contents.push({
  1164. control: 'File',
  1165. id: 'File-1718769828663',
  1166. value: {
  1167. files: form.value.files.map((i) => {
  1168. return { file_id: i.file_id }
  1169. }),
  1170. },
  1171. })
  1172. }
  1173. d.sales_order_detail = soData.value
  1174. d.origin_form = form.value
  1175. console.log(d, 'form data')
  1176. loading.value = true
  1177. submited.value = true
  1178. request
  1179. .post('/Shipping_tracking/createShippingTracking', d)
  1180. .then((res) => {
  1181. const d = res.data
  1182. console.log(d, 'create approval')
  1183. if (d.result.code === 200 && d.code === 1) {
  1184. ElNotification({
  1185. duration: 0,
  1186. type: 'success',
  1187. title: '任务已成功处理',
  1188. message: '本页面将自动跳转CRM',
  1189. })
  1190. setTimeout(() => {
  1191. redirectToCRM()
  1192. }, 3500)
  1193. } else {
  1194. ElNotification({
  1195. duration: 0,
  1196. type: 'error',
  1197. title: '创建审核单出错!请联系管理员',
  1198. message: d.result.message?.errmsg || d.msg || '',
  1199. })
  1200. }
  1201. })
  1202. .finally(() => {
  1203. loading.value = false
  1204. })
  1205. }
  1206. const redirectToCRM = () => {
  1207. window.location.replace(import.meta.env.VITE_CRM_PATH)
  1208. }
  1209. const getLogoPath = function () {
  1210. return new URL('/assets/logo@2x.png', import.meta.url).href
  1211. }
  1212. </script>
  1213. <style lang="scss">
  1214. input[type='number'] {
  1215. -moz-appearance: textfield;
  1216. appearance: textfield;
  1217. &:hover {
  1218. -moz-appearance: textfield;
  1219. appearance: textfield;
  1220. &::-webkit-inner-spin-button,
  1221. &::-webkit-outer-spin-button {
  1222. -webkit-appearance: none;
  1223. margin: 0;
  1224. }
  1225. }
  1226. &::-webkit-inner-spin-button,
  1227. &::-webkit-outer-spin-button {
  1228. -webkit-appearance: none;
  1229. margin: 0;
  1230. }
  1231. }
  1232. </style>
  1233. <style lang="scss" scoped>
  1234. .main-content {
  1235. background-color: #fff;
  1236. padding: 12px 40px 12px;
  1237. width: 1000px;
  1238. min-width: 1000px;
  1239. min-height: 100vh;
  1240. margin: 0 auto;
  1241. box-shadow:
  1242. 0 0 0 1px rgba(255, 255, 255, 0.4) inset,
  1243. 0 0.5em 1em rgba(0, 0, 0, 0.6);
  1244. }
  1245. .logo-area {
  1246. padding: 12px 0 12px;
  1247. img {
  1248. position: relative;
  1249. left: -16px;
  1250. height: 60px;
  1251. }
  1252. }
  1253. .page-title {
  1254. font-size: 24px;
  1255. font-weight: 500;
  1256. color: #222;
  1257. }
  1258. .copyright {
  1259. position: absoloute;
  1260. text-align: right;
  1261. color: #ccc;
  1262. font-size: 14px;
  1263. line-height: 16px;
  1264. right: 16px;
  1265. }
  1266. .addr-input-group {
  1267. width: 100%;
  1268. ::v-deep {
  1269. .el-input__wrapper,
  1270. textarea {
  1271. border-top-right-radius: 0;
  1272. border-bottom-right-radius: 0;
  1273. min-height: 34px !important;
  1274. }
  1275. }
  1276. .el-input,
  1277. .el-textarea {
  1278. margin-bottom: 10px;
  1279. &:last-of-type {
  1280. margin-bottom: 0;
  1281. }
  1282. }
  1283. .addr-append {
  1284. box-sizing: border-box;
  1285. border-top-right-radius: 4px;
  1286. border-bottom-right-radius: 4px;
  1287. border: 1px solid #dfdfdf;
  1288. border-left: none;
  1289. margin-bottom: 10px;
  1290. $width: 140px;
  1291. width: $width;
  1292. max-width: $width;
  1293. min-width: $width;
  1294. color: rgb(144, 147, 153);
  1295. background-color: rgb(245, 247, 250);
  1296. box-shadow:
  1297. 0 1px 0 0 var(--el-input-border-color) inset,
  1298. 0 -1px 0 0 var(--el-input-border-color) inset,
  1299. -1px 0 0 0 var(--el-input-border-color) inset;
  1300. display: flex;
  1301. align-items: center;
  1302. justify-content: center;
  1303. }
  1304. }
  1305. </style>