orderDetailPart.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567
  1. <template>
  2. <div class="order-detail-part">
  3. <div
  4. v-if="isLoading == 1"
  5. v-loading="true"
  6. class="com-loading"></div>
  7. <template v-else-if="isLoading == 2">
  8. <section class="main-header">
  9. <div class="main-header-mid flex between">
  10. <h1>Job Name:{{ orderDetail.Sales_Order_Title_Job_Name }}</h1>
  11. <img
  12. :src="orderDetail.user_logo"
  13. class="user_logo"
  14. v-if="orderDetail.user_logo" />
  15. </div>
  16. <div class="main-header-mid flex between">
  17. <ul class="left">
  18. <li
  19. class="left-i"
  20. @click="shareDialogVisible = true"
  21. v-if="isShow">
  22. <i class="el-icon-share"></i>
  23. <span>Client Tracking Share</span>
  24. </li>
  25. <li
  26. class="left-i"
  27. v-if="orderDetail.crm_pr_res?.length">
  28. <image-list :data="orderDetail.crm_pr_res" />
  29. </li>
  30. </ul>
  31. <ul class="right">
  32. <li v-if="orderDetail.Job_Group && isShow">
  33. Order Type: {{ orderDetail.Job_Group }}
  34. </li>
  35. <li>Order No: {{ orderDetail.Reference }}</li>
  36. <li>
  37. Order Date: {{ formatStepDesc(orderDetail.Sales_Order_Created) }}
  38. </li>
  39. <li v-if="orderDetail.Expected_Delivery_Date">
  40. ETA: {{ formatStepDesc(orderDetail.Expected_Delivery_Date) }}
  41. </li>
  42. <li v-if="isShow">
  43. Payment Status: {{ orderDetail.Payment_Status1 }}
  44. </li>
  45. </ul>
  46. </div>
  47. <div class="steps margin-b-30">
  48. <p class="steps-title margin-b-50">Bulk Production</p>
  49. <el-steps
  50. :active="comOrderState"
  51. align-center
  52. :direction="computedStepDirection"
  53. finish-status="success"
  54. process-status="wait">
  55. <el-step
  56. title="Confirmed"
  57. :description="formatStepDesc(orderDetail.Order_Confirm)">
  58. </el-step>
  59. <el-step
  60. title="In Production"
  61. :description="
  62. formatStepDesc(orderDetail.Sampling_Factory_Confirm)
  63. "></el-step>
  64. <el-step
  65. title="QC Inspection"
  66. :description="formatStepDesc(orderDetail.GZ_WH)"></el-step>
  67. <el-step
  68. title="International Shipment"
  69. :description="
  70. formatStepDesc(orderDetail.International_transshipment)
  71. "></el-step>
  72. <el-step
  73. title="AU Warehouse"
  74. :description="formatStepDesc(orderDetail.AU_WH)"></el-step>
  75. <el-step
  76. :title="
  77. orderDetail.Order_Stage === 'Bulk Production Shipping'
  78. ? 'Domestic Delivery'
  79. : 'Shipped'
  80. "
  81. :description="formatStepDesc(orderDetail.AU_WH_Client)"></el-step>
  82. <el-step
  83. title="Delivered"
  84. :description="formatStepDesc(orderDetail.Delivered)"></el-step>
  85. </el-steps>
  86. </div>
  87. <div
  88. class="steps"
  89. :class="{ 'margin-b-30': stepShow }"
  90. v-if="orderDetail.Sample_Stage">
  91. <p
  92. class="steps-title pointer"
  93. :class="{ 'margin-b-50': stepShow }"
  94. @click="toggleStep">
  95. Sample Dispatch
  96. <i
  97. :class="
  98. stepShow ? 'el-icon-arrow-down' : 'el-icon-arrow-right'
  99. "></i>
  100. </p>
  101. <el-steps
  102. :active="comSampleState"
  103. align-center
  104. :space="180"
  105. v-if="stepShow"
  106. :direction="computedStepDirection"
  107. finish-status="success"
  108. process-status="wait">
  109. <el-step
  110. title="Factory Process"
  111. :description="
  112. formatStepDesc(orderDetail.Sample_Factory_Confirmed)
  113. ">
  114. </el-step>
  115. <el-step
  116. title="Sample Dispatching"
  117. :description="
  118. formatStepDesc(orderDetail.Sample_Dispatching)
  119. "></el-step>
  120. <el-step
  121. title="Sample Delivered"
  122. :description="
  123. formatStepDesc(orderDetail.Sample_Delivered)
  124. "></el-step>
  125. </el-steps>
  126. </div>
  127. </section>
  128. <section class="main-custom">
  129. <p class="sharing-title">Customer information</p>
  130. <div>
  131. <p class="sharing-subtitle">
  132. {{ isShow ? 'Billing' : 'Supplier' }} Address
  133. </p>
  134. <div class="sharing-address">
  135. <p>{{ orderDetail.Account_Name_name }}</p>
  136. <p>{{ orderDetail.Billing_Unit_Building_Name }}</p>
  137. <p>{{ orderDetail.Billing_Street }}</p>
  138. <p>{{ orderDetail.Billing_City }}</p>
  139. <p>{{ orderDetail.Billing_State }}</p>
  140. <p>{{ orderDetail.Billing_Code }}</p>
  141. <p>{{ orderDetail.Billing_Country }}</p>
  142. </div>
  143. </div>
  144. <div>
  145. <p class="sharing-subtitle">Shipping Address</p>
  146. <div class="sharing-address">
  147. <p>{{ orderDetail.Shipping_Unit_Building_Name }}</p>
  148. <p>{{ orderDetail.Shipping_Street }}</p>
  149. <p>{{ orderDetail.Shipping_City }}</p>
  150. <p>{{ orderDetail.Shipping_State }}</p>
  151. <p>{{ orderDetail.Shipping_Code }}</p>
  152. <p>{{ orderDetail.Shipping_Country }}</p>
  153. </div>
  154. </div>
  155. </section>
  156. <section>
  157. <p class="sharing-title">Shipping information</p>
  158. <el-table
  159. :data="orderDetail.shipping_tracking"
  160. style="width: 100%"
  161. :header-cell-style="{
  162. background: '#F7F8FC',
  163. color: '#101010',
  164. fontWeight: 'normal',
  165. }">
  166. <el-table-column
  167. type="expand"
  168. style="padding: 0">
  169. <template slot-scope="props">
  170. <el-table
  171. :data="props.row.test_pkg_details"
  172. style="margin-left: 50px; width: calc(100% - 50px)"
  173. :header-cell-style="{
  174. background: '#F7F8FC',
  175. color: '#101010',
  176. fontWeight: 'normal',
  177. }">
  178. <el-table-column
  179. prop="Product_name"
  180. label="Item & Description"></el-table-column>
  181. <el-table-column
  182. prop="Quantity_to_pack"
  183. label="QTY"
  184. width="450"></el-table-column>
  185. </el-table>
  186. </template>
  187. </el-table-column>
  188. <el-table-column
  189. prop="Title"
  190. label="Job Name"
  191. width="190"></el-table-column>
  192. <el-table-column
  193. prop="Courier"
  194. label="Carrier"
  195. width="190"></el-table-column>
  196. <el-table-column
  197. prop="Tracking_No"
  198. label="Tracking#"
  199. width="190"></el-table-column>
  200. <el-table-column
  201. prop="Package_Status"
  202. label="Shipment Status"
  203. width="190"></el-table-column>
  204. <el-table-column
  205. label="Delivery Address"
  206. width="250">
  207. <template slot-scope="scope">
  208. <span>
  209. {{ scope.row.Shipping_Unit_Building_Name }}<br />
  210. {{ scope.row.Shipping_Street }}<br />
  211. {{ scope.row.Shipping_City }}<br />
  212. {{ scope.row.Shipping_State }}
  213. </span>
  214. </template>
  215. </el-table-column>
  216. <el-table-column
  217. prop="Tracking_URL"
  218. label=""
  219. width="200">
  220. <template
  221. slot-scope="scope"
  222. v-if="scope.row.Tracking_URL">
  223. <el-button
  224. size="mini"
  225. @click.native="openTracking_URL(scope.row.Tracking_URL)"
  226. style="background-color: rgb(0, 33, 59); color: #fff"
  227. plain
  228. >TRACK SHIPMENT</el-button
  229. ></template
  230. >
  231. </el-table-column>
  232. </el-table>
  233. </section>
  234. <section class="orderTable">
  235. <p class="sharing-title">Products Information</p>
  236. <el-table
  237. :data="orderDetail.sales_orders_details"
  238. style="width: 100%"
  239. :header-cell-style="{
  240. background: '#fff',
  241. color: '#101010',
  242. fontWeight: 'normal',
  243. }">
  244. <el-table-column
  245. type="index"
  246. label="S.NO"
  247. width="70"
  248. fixed>
  249. </el-table-column>
  250. <el-table-column
  251. label="Product Name"
  252. min-width="300">
  253. <template slot-scope="scope">
  254. <p class="colorBlue">{{ scope.row.product_name }}</p>
  255. <p v-html="scope.row.product_description"></p>
  256. <!-- <p :class="scope.row.showMore?'ellipsis':''" v-html="scope.row.product_description"></p>
  257. <p class="colorBlue cursor" @click="toggleShow(scope.row)" v-if="scope.row.product_description">{{scope.row.showMore?'Show More':'Conceal'}}<i :class="scope.row.showMore?'el-icon-caret-bottom':'el-icon-caret-top'"></i></p> -->
  258. </template>
  259. </el-table-column>
  260. <el-table-column
  261. prop="quantity"
  262. label="Quantity"
  263. align="left"
  264. :width="isShow ? 125 : 200">
  265. </el-table-column>
  266. <template v-if="isShow">
  267. <el-table-column
  268. prop="list_price"
  269. :label="`List Price(${comCurrency})`"
  270. width="125">
  271. <template slot-scope="scope">
  272. {{ transformNumber(scope.row.list_price) }}
  273. </template>
  274. </el-table-column>
  275. <el-table-column
  276. prop="amount"
  277. :label="`Amount(${comCurrency})`"
  278. width="125">
  279. <template slot-scope="scope">
  280. {{ transformNumber(scope.row.amount) }}
  281. </template>
  282. </el-table-column>
  283. <el-table-column
  284. prop="Tax"
  285. :label="`Tax(${comCurrency})`"
  286. width="125">
  287. <template slot-scope="scope">
  288. {{ transformNumber(scope.row.Tax) }}
  289. </template>
  290. </el-table-column>
  291. <el-table-column
  292. prop="Discount"
  293. :label="`Discount(${comCurrency})`"
  294. width="125">
  295. <template slot-scope="scope">
  296. {{ transformNumber(scope.row.Discount) }}
  297. </template>
  298. </el-table-column>
  299. <el-table-column
  300. prop="net_total"
  301. :label="`Total(${comCurrency})`"
  302. width="125">
  303. <template slot-scope="scope">
  304. {{ transformNumber(scope.row.net_total) }}
  305. </template>
  306. </el-table-column>
  307. </template>
  308. </el-table>
  309. <div
  310. class="table-wrap"
  311. v-if="isShow">
  312. <table class="total">
  313. <tr>
  314. <td>Sub Total</td>
  315. <td>
  316. {{ comCurrency }} {{ transformNumber(orderDetail.Sub_Total) }}
  317. </td>
  318. </tr>
  319. <tr>
  320. <td>Total Taxes</td>
  321. <td>
  322. {{ comCurrency }} {{ transformNumber(orderDetail.Tax_Total) }}
  323. </td>
  324. </tr>
  325. <tr>
  326. <td>Total Discount</td>
  327. <td>
  328. {{ comCurrency }}
  329. {{ transformNumber(orderDetail.Total_Including_Discount) }}
  330. </td>
  331. </tr>
  332. <tr>
  333. <td>Adjustment</td>
  334. <td>
  335. {{ comCurrency }}
  336. {{ transformNumber(orderDetail.Total_Adjustment) }}
  337. </td>
  338. </tr>
  339. <tr>
  340. <td>Grand Total</td>
  341. <td>
  342. {{ comCurrency }} {{ transformNumber(orderDetail.Grand_Total) }}
  343. </td>
  344. </tr>
  345. </table>
  346. </div>
  347. <template v-if="isShow">
  348. <p class="notes-1">Notes</p>
  349. <p class="notes-2">Terms & conditions</p>
  350. <p class="notes-2">Artwork Approval</p>
  351. <p class="notes-3">{{ orderDetail.Subject }}</p>
  352. </template>
  353. </section>
  354. </template>
  355. <div v-else>
  356. <el-empty description="No Data"></el-empty>
  357. </div>
  358. <el-dialog
  359. :lock-scroll="false"
  360. :visible.sync="urlDialogShow"
  361. center
  362. width="850px"
  363. top="20vh">
  364. <iframe
  365. :src="Tracking_URL"
  366. style="width: 100%; height: 500px"
  367. frameborder="0"></iframe>
  368. </el-dialog>
  369. <export-dialog
  370. :emailForm="shareForm"
  371. :visible.sync="shareDialogVisible"
  372. :title="'Client Tracking Share (no pricing displayed)'"
  373. :labelShow="false"></export-dialog>
  374. </div>
  375. </template>
  376. <script>
  377. import throttle from 'lodash.throttle'
  378. import { mapMutations } from 'vuex'
  379. import { round } from '@/utils/price.js'
  380. export default {
  381. name: 'OrderDetailPart',
  382. props: {
  383. isShow: {
  384. // 订单分享页面隐藏元素
  385. type: Boolean,
  386. default: true,
  387. },
  388. hasUid: {
  389. type: Boolean,
  390. default: true,
  391. },
  392. },
  393. data() {
  394. return {
  395. orderDetail: {},
  396. isLoading: 1,
  397. packageTable: [],
  398. stepShow: false,
  399. urlDialogShow: false,
  400. shareDialogVisible: false,
  401. loginCount: 0,
  402. shareForm: {
  403. Link: '',
  404. },
  405. Tracking_URL: '',
  406. stepConfig: {
  407. 'Order Confirmed': 1,
  408. 'Factory Confirmed': 2,
  409. 'GZ WH': 3,
  410. Transshipment: 4,
  411. 'AU WH': 5,
  412. 'AUWH - Client': 6,
  413. 'Bulk Production Shipping': 6,
  414. 'Bulk Production Delivered': 7,
  415. 'Completed Sales Order': 7,
  416. 'Factory Process': 1,
  417. 'Sample Dispatching': 2,
  418. 'Sample Delivered': 3,
  419. },
  420. computedStepDirection: 'horizontal',
  421. }
  422. },
  423. computed: {
  424. loginSuccess() {
  425. return this.$store.state.loginSuccess
  426. },
  427. comCurrency() {
  428. return this.orderDetail.Currency
  429. },
  430. comOrderState() {
  431. if (this.orderDetail.Order_Stage === 'Cancelled') {
  432. return 0
  433. }
  434. return this.stepConfig[this.orderDetail.Order_Stage]
  435. },
  436. comSampleState() {
  437. return this.stepConfig[this.orderDetail.Sample_Stage]
  438. },
  439. },
  440. watch: {
  441. loginSuccess(newVal) {
  442. if (newVal) {
  443. this.getOrderDetail() // 当登录成功后调用获取订单详情
  444. this.$store.commit('setLoginSuccess', false)
  445. }
  446. },
  447. },
  448. beforeMount() {
  449. window.addEventListener('resize', this.judgeStepDirection, false)
  450. this.judgeStepDirection()
  451. },
  452. created() {
  453. this.getOrderDetail()
  454. },
  455. beforeDestroy() {
  456. window.removeEventListener('resize', this.judgeStepDirection, false)
  457. },
  458. methods: {
  459. ...mapMutations({ openDialog: 'openDialog' }),
  460. judgeStepDirection: throttle(function () {
  461. this.computedStepDirection =
  462. window.document.body.clientWidth >= 1000 ? 'horizontal' : 'vertical'
  463. }, 300),
  464. toggleStep() {
  465. this.stepShow = !this.stepShow
  466. },
  467. getOrderDetail() {
  468. let path = ''
  469. let data = {}
  470. if (this.isShow) {
  471. const { id } = this.$store.state.userInfo
  472. const { crm, id: queryId } = this.$route.query
  473. path = '/uk-api/crmdata/orders_detail'
  474. this.shareForm.Link = `https://www.trackship.com.au/orderShare/${id}/${crm}/${queryId}`
  475. data = { accounts_id: crm, id: queryId }
  476. } else {
  477. path = '/uk-api/crmdata/showOrdersDetail'
  478. if (this.hasUid) {
  479. const { uid, aid, id } = this.$route.params
  480. data = { user_id: uid, accounts_id: aid, id }
  481. } else {
  482. const { aid, id } = this.$route.params
  483. data = { accounts_id: aid, id }
  484. }
  485. }
  486. this.$axios
  487. .post(path, data)
  488. .then(res => {
  489. if (res.result === null) {
  490. this.handleBranchLogic()
  491. }
  492. this.orderDetail = res.result
  493. if (this.orderDetail.shipping_tracking?.length) {
  494. const isDelivered = true
  495. for (const items of this.orderDetail.shipping_tracking) {
  496. if (items.test_pkg_details?.length) {
  497. items.test_pkg_details.forEach(item => {
  498. item.Courier = items.Courier
  499. item.Tracking_No = items.Tracking_No
  500. item.Package_Status = items.Package_Status
  501. item.Tracking_URL = items.Tracking_URL
  502. })
  503. }
  504. }
  505. }
  506. if (this.orderDetail.sales_orders_details?.length) {
  507. if (this.isShow) {
  508. this.orderDetail.sales_orders_details.forEach(items => {
  509. this.$set(items, 'showMore', true)
  510. })
  511. } else {
  512. this.orderDetail.sales_orders_details =
  513. this.orderDetail.sales_orders_details
  514. .filter(item => {
  515. return (
  516. item.product_Product_Code !== 'PC Setup Service' &&
  517. item.product_Product_Code !== 'PC Freight'
  518. )
  519. })
  520. .map(item => {
  521. this.$set(item, 'showMore', true)
  522. return item
  523. })
  524. }
  525. }
  526. this.isLoading = 2
  527. })
  528. .catch(() => {
  529. this.handleBranchLogic()
  530. })
  531. },
  532. handleBranchLogic() {
  533. this.isLoading = 3
  534. if (this.loginCount) {
  535. this.$router.push('/')
  536. return
  537. }
  538. this.isShow &&
  539. setTimeout(() => {
  540. this.openDialog()
  541. this.loginCount = 1
  542. }, 1000)
  543. },
  544. transformNumber(value) {
  545. return round(Number(value)).toFixed(2)
  546. },
  547. formatStepDesc(date, isUnix = false) {
  548. return this.$utils.formatTime(date, 'DD/MM/YYYY', isUnix)
  549. },
  550. toggleShow(row) {
  551. row.showMore = !row.showMore
  552. },
  553. openTracking_URL(url) {
  554. this.Tracking_URL = url
  555. this.urlDialogShow = true
  556. },
  557. },
  558. }
  559. </script>
  560. <style lang="scss" scoped>
  561. @import '../detail.scss';
  562. </style>