enquiryDetail.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483
  1. <template>
  2. <div class="page-enquiry-detail com-main com-margin-auto">
  3. <el-breadcrumb separator-class="el-icon-arrow-right">
  4. <el-breadcrumb-item :to="{ path: '/' }">Home</el-breadcrumb-item>
  5. <el-breadcrumb-item
  6. :to="{ path: '/home/myDetail', query: { type: 'enquiry' } }"
  7. >My Enquiry</el-breadcrumb-item
  8. >
  9. <el-breadcrumb-item>detail</el-breadcrumb-item>
  10. </el-breadcrumb>
  11. <div
  12. v-if="loading"
  13. v-loading="loadiding"
  14. class="com-loading"></div>
  15. <div v-if="!loading">
  16. <section class="main-header">
  17. <h1>Job Name: {{ detail.Enquiry_Title }}</h1>
  18. <div class="main-header-mid flex between">
  19. <div class="left"></div>
  20. <ul class="right">
  21. <li>Enquiry No: {{ detail.Auto_Number }}</li>
  22. <li>Enquiry Date:
  23. {{ formatStepDesc(detail.Created_Time) }}</li>
  24. <li>Payment Terms: {{ detail.Payment_Terms }}</li>
  25. </ul>
  26. </div>
  27. <div class="steps">
  28. <el-steps
  29. :active="computedEnquiryState"
  30. align-center
  31. finish-status="success"
  32. process-status="wait">
  33. <el-step
  34. title="Enquiry Submitted"
  35. :description="formatStepDesc(detail.Enquiry_Created)">
  36. </el-step>
  37. <el-step
  38. title="Enquiry Confirmed"
  39. :description="formatStepDesc(detail.Enquiry_Allocated)"></el-step>
  40. <el-step
  41. title="Quote Drafted"
  42. :description="formatStepDesc(detail.Quote_Created)"></el-step>
  43. <el-step
  44. title="Quote Sent"
  45. :description="formatStepDesc(detail.Quote_Sent)"></el-step>
  46. <el-step title="Order Confirmed"></el-step>
  47. <el-step
  48. title="Enquiry Closed"
  49. :description="formatStepDesc(detail.Enquiry_Closed)"></el-step>
  50. </el-steps>
  51. </div>
  52. </section>
  53. <section
  54. class=""
  55. v-if="
  56. (detail.Website_Message && detail.Website_Message.length > 1) ||
  57. (detail.Artworklink && detail.Artworklink.length)
  58. ">
  59. <p class="sharing-title">Enquiries Information</p>
  60. <div class="sharing-address">
  61. <p style="white-space: pre-wrap">{{ detail.Website_Message }}</p>
  62. <p>
  63. Artwork link:
  64. <a
  65. style="color: blue; text-decoration: underline"
  66. :href="detail.Artworklink"
  67. target="_brank"
  68. >{{ detail.Artworklink }}</a
  69. >
  70. </p>
  71. </div>
  72. </section>
  73. <section
  74. v-if="
  75. detail.Quotes_Information &&
  76. detail.Quotes_Information.quotes_details_data?.length
  77. ">
  78. <div class="sharing-title">Quotes Information</div>
  79. <el-table
  80. :data="[detail.Quotes_Information]"
  81. :header-cell-style="{
  82. background: '#fff',
  83. color: '#101010',
  84. fontWeight: 'normal',
  85. }">
  86. <el-table-column
  87. width="200"
  88. prop="Quote_Title"
  89. label="Quote Name"></el-table-column>
  90. <el-table-column
  91. align="center"
  92. prop="Quote_Stage"
  93. label="Status">
  94. <template slot-scope="scope">
  95. <div>{{ scope.row.Quote_Stage || detail.Quote_Stage }}</div>
  96. </template>
  97. </el-table-column>
  98. <el-table-column
  99. align="center"
  100. prop="Total_Including_Tax"
  101. label="Grand Total">
  102. <template slot-scope="scope">
  103. {{ transformNumber(scope.row.Total_Including_Tax) }}
  104. </template>
  105. </el-table-column>
  106. <el-table-column
  107. align="center"
  108. prop=""
  109. label="Date">
  110. <template slot-scope="scope">
  111. <div>
  112. {{
  113. formatStepDesc(scope.row.Created_Time)
  114. }}
  115. </div>
  116. </template>
  117. </el-table-column>
  118. </el-table>
  119. <br />
  120. <el-table
  121. :header-cell-style="{
  122. background: '#fff',
  123. color: '#101010',
  124. fontWeight: 'normal',
  125. }"
  126. :data="detail.Quotes_Information.quotes_details_data"
  127. style="margin-left: 80px; width: calc(100% - 80px)">
  128. <el-table-column
  129. label="S.No"
  130. type="index"
  131. width="65"></el-table-column>
  132. <el-table-column
  133. min-width="300"
  134. prop="product_name"
  135. label="Product Name">
  136. <template slot-scope="scope">
  137. <div>
  138. <div class="text-link">{{ scope.row.product_name }}</div>
  139. <div
  140. style="white-space: pre-wrap"
  141. v-if="scope.row.product_description">
  142. {{ scope.row.product_description }}
  143. </div>
  144. </div>
  145. </template>
  146. </el-table-column>
  147. <el-table-column
  148. align="center"
  149. prop="quantity"
  150. label="Quantity"></el-table-column>
  151. <el-table-column
  152. align="center"
  153. prop="list_price"
  154. label="List Prices">
  155. <template slot-scope="scope">
  156. {{ transformNumber(scope.row.list_price) }}
  157. </template>
  158. </el-table-column>
  159. <el-table-column
  160. align="center"
  161. prop="amount"
  162. label="Amount">
  163. <template slot-scope="scope">
  164. {{ transformNumber(scope.row.amount) }}
  165. </template>
  166. </el-table-column>
  167. <el-table-column
  168. align="center"
  169. prop="Tax"
  170. label="Tax">
  171. <template slot-scope="scope">
  172. {{ transformNumber(scope.row.Tax) }}
  173. </template>
  174. </el-table-column>
  175. <el-table-column
  176. align="center"
  177. prop="Discount"
  178. label="Discount">
  179. <template slot-scope="scope">
  180. {{ transformNumber(scope.row.Discount) }}
  181. </template>
  182. </el-table-column>
  183. <el-table-column
  184. align="center"
  185. prop="net_total"
  186. label="Total">
  187. <template slot-scope="scope">
  188. {{ transformNumber(scope.row.net_total) }}
  189. </template>
  190. </el-table-column>
  191. </el-table>
  192. <div class="table-wrap">
  193. <table class="total">
  194. <tr>
  195. <td>Sub Total</td>
  196. <td>
  197. {{ detail.Currency }}&nbsp;
  198. <div class="num">
  199. {{
  200. transformNumber(
  201. detail.Quotes_Information
  202. .quotecalculation__Sub_Total_Amount
  203. )
  204. }}
  205. </div>
  206. </td>
  207. </tr>
  208. <tr>
  209. <td>Total Taxes</td>
  210. <td>
  211. {{ detail.Currency }}&nbsp;
  212. <div class="num">
  213. {{ transformNumber(detail.Quotes_Information.Tax_Total) }}
  214. </div>
  215. </td>
  216. </tr>
  217. <tr>
  218. <td>Total Discount</td>
  219. <td>
  220. {{ detail.Currency }}&nbsp;
  221. <div class="num">
  222. {{
  223. transformNumber(detail.Quotes_Information.Discount_Amount)
  224. }}
  225. </div>
  226. </td>
  227. </tr>
  228. <tr>
  229. <td>Adjustment</td>
  230. <td>
  231. {{ detail.Currency }}&nbsp;
  232. <div class="num">
  233. {{ transformNumber(detail.Quotes_Information.Adjustment) }}
  234. </div>
  235. </td>
  236. </tr>
  237. <tr>
  238. <td>Grand Total</td>
  239. <td>
  240. {{ detail.Currency }}&nbsp;
  241. <div class="num">
  242. {{
  243. transformNumber(
  244. detail.Quotes_Information.Total_Including_Tax
  245. )
  246. }}
  247. </div>
  248. </td>
  249. </tr>
  250. </table>
  251. </div>
  252. </section>
  253. <section v-if="detail.orderInformation.length">
  254. <div class="sharing-title">Order Information</div>
  255. <el-table
  256. :data="detail.orderInformation"
  257. :header-cell-style="{
  258. background: '#fff',
  259. color: '#101010',
  260. fontWeight: 'normal',
  261. }"
  262. :row-style="{ cursor: 'pointer' }"
  263. @row-click="navToOrderDetail">
  264. <el-table-column
  265. width="100"
  266. label="Order No"
  267. prop="Reference">
  268. <template slot-scope="scope">
  269. <div class="">{{ scope.row.Reference }}</div>
  270. </template>
  271. </el-table-column>
  272. <el-table-column
  273. align="center"
  274. label="Job name"
  275. prop="Sales_Order_Title_Job_Name">
  276. <template slot-scope="scope">
  277. <div class="text-link">
  278. {{ scope.row.Sales_Order_Title_Job_Name }}
  279. </div>
  280. </template></el-table-column
  281. >
  282. <el-table-column
  283. align="center"
  284. label="Order Status"
  285. prop="Order_Stage"></el-table-column>
  286. <el-table-column
  287. align="center"
  288. label="Invoice status"
  289. prop="Invoice_status1"></el-table-column>
  290. <el-table-column
  291. align="center"
  292. label="Grand Total"
  293. prop="Total_Including_Tax">
  294. <template slot-scope="scope">
  295. {{ transformNumber(scope.row.Total_Including_Tax) }}
  296. </template>
  297. </el-table-column>
  298. <el-table-column
  299. align="center"
  300. label="Date"
  301. prop="Sales_Order_Created">
  302. <template slot-scope="scope">
  303. <div>{{ formatStepDesc(scope.row.Sales_Order_Created) }}</div>
  304. </template>
  305. </el-table-column>
  306. <el-table-column
  307. label="Action"
  308. width="90"
  309. align="center">
  310. <template slot-scope="scope">
  311. <el-button
  312. size="small"
  313. type="primary"
  314. style="background-color: rgb(0, 33, 59); color: #fff"
  315. @click="navToOrderDetail(scope.row)"
  316. plain
  317. >View</el-button
  318. >
  319. </template>
  320. </el-table-column>
  321. </el-table>
  322. </section>
  323. <section
  324. v-if="
  325. (detail.Emaillink && detail.Emaillink.length) ||
  326. (detail.Email_link2 && detail.Email_link2.length)
  327. ">
  328. <br />
  329. <br />
  330. <el-tabs v-model="activeEnquiryMail">
  331. <el-tab-pane
  332. v-if="detail.Email_link2 && detail.Email_link2.length"
  333. label="Initial Quote"
  334. name="quote">
  335. <iframe
  336. :src="detail.Email_link2"
  337. frameborder="0"
  338. style="overflow: scroll"
  339. height="1200px"
  340. width="100%"></iframe>
  341. </el-tab-pane>
  342. <el-tab-pane
  343. v-if="detail.Emaillink && detail.Emaillink.length"
  344. label="Initial Enquiry"
  345. name="enquiry">
  346. <iframe
  347. :src="detail.Emaillink"
  348. frameborder="0"
  349. style="overflow: scroll"
  350. height="1200px"
  351. width="100%"></iframe>
  352. </el-tab-pane>
  353. </el-tabs>
  354. </section>
  355. </div>
  356. </div>
  357. </template>
  358. <script>
  359. import { round } from '@/utils/price.js'
  360. export default {
  361. name: 'EnquiryDetail',
  362. components: {},
  363. filters: {},
  364. props: {},
  365. data() {
  366. return {
  367. activeEnquiryMail: 'quote',
  368. loading: false,
  369. detail: { orderInformation: [] },
  370. stepConfig: {
  371. 'Enquiry Created': 1,
  372. 'Enquiry Confirmed': 2,
  373. 'Quote Drafted': 3,
  374. 'Quote Sent': 4,
  375. 'Order Confirmed': 5,
  376. 'Enquiry Closed': 6,
  377. },
  378. }
  379. },
  380. computed: {
  381. computedEnquiryState() {
  382. if (this.detail.Customize_Pipeline_Stage) {
  383. return this.stepConfig[this.detail.Customize_Pipeline_Stage]
  384. }
  385. return 0
  386. },
  387. },
  388. watch: {},
  389. created() {
  390. this.getDetail()
  391. },
  392. mounted() {},
  393. updated() {},
  394. beforeDestroy() {},
  395. methods: {
  396. transformNumber(value) {
  397. // console.log(value, 'value')
  398. return round(Number(value)).toFixed(2)
  399. },
  400. formatStepDesc(date) {
  401. return this.$utils.formatTime(date, 'DD/MM/YYYY')
  402. },
  403. getDetail() {
  404. this.$axios
  405. .post('/uk-api/crmdata/enquiries_detail', {
  406. accounts_id: this.$store.state.userInfo?.crm_accounts_id || '',
  407. id: this.$route.query.id,
  408. })
  409. .then(res => {
  410. // console.log(res)
  411. // eslint-disable-next-line
  412. if (res.code == 1) {
  413. if (res.result === '4002' || res.result === null) {
  414. console.log('id不一致 || 数据空')
  415. this.$router.replace('/')
  416. return
  417. }
  418. const temp = JSON.parse(JSON.stringify(res.result))
  419. if (temp.Orders_Information && temp.Orders_Information.Reference) {
  420. temp.orderInformation = [temp.Orders_Information]
  421. } else {
  422. temp.orderInformation = []
  423. }
  424. this.detail = temp
  425. if (!(this.detail.Email_link2 && this.detail.Email_link2.length)) {
  426. this.activeEnquiryMail = 'enquiry'
  427. }
  428. }
  429. })
  430. .catch(e => {
  431. console.log(e, 'eee')
  432. if (e.response.data.code === 10100) {
  433. this.$router.replace('/')
  434. console.log('not login')
  435. }
  436. })
  437. },
  438. navToOrderDetail(row) {
  439. console.log(row)
  440. const url = this.$router.resolve({
  441. path: '/home/myDetail/orderDetail',
  442. query: { id: row.sales_orders_id },
  443. })
  444. window.open(url.href, '_blank')
  445. },
  446. },
  447. }
  448. </script>
  449. <style lang="scss">
  450. .page-enquiry-detail {
  451. .el-tabs__item {
  452. font-size: 24px;
  453. // margin-bottom: 30px;
  454. font-weight: 600;
  455. }
  456. .el-tabs__nav-wrap::after {
  457. display: none;
  458. }
  459. }
  460. </style>
  461. <style lang="scss" scoped>
  462. @import './detail.scss';
  463. .table-wrap {
  464. td:nth-of-type(2) {
  465. text-align: left;
  466. .num {
  467. display: inline-block;
  468. }
  469. }
  470. }
  471. // .page-enquiry-detail {
  472. // }
  473. .text-link {
  474. color: #409eff;
  475. }
  476. </style>