doctor-admin-components 1.0.13-beta.6 → 1.0.13-beta.61

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/README.md +18 -7
  2. package/package.json +1 -1
  3. package/packages/index.js +7 -0
  4. package/packages/src/api/biz/bizContract.js +980 -1
  5. package/packages/src/api/biz/bizContractCompany.js +1 -1
  6. package/packages/src/api/biz/bizFileInfo.js +16 -0
  7. package/packages/src/api/biz/bizInvoice.js +1 -1
  8. package/packages/src/assets/images/click-show-table.png +0 -0
  9. package/packages/src/assets/images/more.png +0 -0
  10. package/packages/src/assets/images/pdf-new.png +0 -0
  11. package/packages/src/components/FileUpload/contract-drag-new.vue +99 -10
  12. package/packages/src/i18n/en/message.json +296 -0
  13. package/packages/src/i18n/index.js +38 -0
  14. package/packages/src/i18n/zh-CN/message.json +296 -0
  15. package/packages/src/index.js +6 -0
  16. package/packages/src/utils/index.js +35 -0
  17. package/packages/src/utils/request.js +120 -146
  18. package/packages/src/views/biz/bizFileInfo/PAYMENT_VOUCHER(/"payment_voucher/", /"/344/273/230/346/254/276/345/207/255/350/257/201.ini" +222 -0
  19. package/packages/src/views/biz/bizFileInfo/contract copy.vue +1711 -0
  20. package/packages/src/views/biz/bizFileInfo/contract.vue +1678 -1003
  21. package/packages/src/views/biz/bizFileInfo/contractFile/BillOfLadingNoTab.vue +114 -0
  22. package/packages/src/views/biz/bizFileInfo/contractFile/ContentTitle.vue +102 -0
  23. package/packages/src/views/biz/bizFileInfo/contractFile/IMGPreviewCheckBox.vue +280 -0
  24. package/packages/src/views/biz/bizFileInfo/contractFile/Progress.vue +85 -0
  25. package/packages/src/views/biz/bizFileInfo/contractFile/ProgressDetail.vue +122 -0
  26. package/packages/src/views/biz/bizFileInfo/contractFile/SectionSlot.vue +83 -0
  27. package/packages/src/views/biz/bizFileInfo/contractFile/ShowAndHide.vue +178 -0
  28. package/packages/src/views/biz/bizFileInfo/fileShow copy.vue +321 -0
  29. package/packages/src/views/biz/bizFileInfo/fileShow.vue +131 -46
  30. package/packages/src/views/biz/bizFileInfo/fileShowClaim.vue +1 -1
  31. package/packages/src/views/biz/bizShipment/add.vue +119 -69
  32. package/packages/src/views/biz/contractTracing/addSubCompany.vue +106 -169
  33. package/packages/src/views/biz/contractTracing/billInfo.vue +150 -315
  34. package/packages/src/views/biz/contractTracing/companyBanks.vue +228 -0
  35. package/packages/src/views/biz/contractTracing/contractSummary.vue +286 -629
  36. package/packages/src/views/biz/contractTracing/contractTracingDetail copy.vue +107 -0
  37. package/packages/src/views/biz/contractTracing/contractTracingDetail.vue +200 -7
  38. package/packages/src/views/biz/contractTracing/editBill.vue +219 -359
  39. package/packages/src/views/biz/contractTracing/purchaseInvoiceUpload.vue +157 -7
  40. package/packages/src/views/biz/contractTracing/shipmentPurchaseAmount.vue +8 -2
  41. package/packages/src/views/biz/contractTracing/subCompanyDialog.vue +196 -176
  42. package/packages/src/views/test.vue +3 -3
  43. package/packages/src/views/biz/contractTracing/association.vue +0 -189
  44. package/packages/src/views/biz/contractTracing/chargingDialog.vue +0 -84
  45. package/packages/src/views/biz/contractTracing/contract.vue +0 -1276
  46. package/packages/src/views/biz/contractTracing/disputeRecord.vue +0 -311
  47. package/packages/src/views/biz/contractTracing/edit.vue +0 -205
  48. package/packages/src/views/biz/contractTracing/sendDrafEmail.vue +0 -120
  49. package/packages/src/views/biz/contractTracing/shipment.vue +0 -601
@@ -25,7 +25,6 @@ export function getBizContract(id) {
25
25
  method: "get",
26
26
  });
27
27
  }
28
-
29
28
  // 查询合同详细
30
29
  export function getSaleContractInfo(dealId) {
31
30
  return request({
@@ -40,6 +39,953 @@ export function getBizContractFileInfo(id) {
40
39
  url: "/biz/contract/fileInfo/" + id,
41
40
  method: "get",
42
41
  });
42
+ // return new Promise((resolve, reject) => {
43
+ // resolve(
44
+ // {
45
+ // "msg": "操作成功",
46
+ // "code": 200,
47
+ // "data": {
48
+ // "latestContractFileInfo": [
49
+ // {
50
+ // "fileId": 2140,
51
+ // "linkId": 374,
52
+ // "subLinkId": null,
53
+ // "linkType": "contract",
54
+ // "fileName": "Formal_ARS20240310-08739_20240310.pdf",
55
+ // "fileType": "contract_formal",
56
+ // "url": "https://hzcdn.doctorscrap.com/upload/2024/03/10/b0ea373c-71ab-438b-bd5c-b4751d4be16a.pdf",
57
+ // "coverUrl": null,
58
+ // "createTime": "2024-03-10 03:08:50",
59
+ // "ext": ".pdf",
60
+ // "visible": true,
61
+ // "name": null,
62
+ // "fileInfoList": null,
63
+ // "fileTypeList": null,
64
+ // "linkIdList": null
65
+ // }
66
+ // ],
67
+ // "sendDraftContractFlag": true,
68
+ // "confirmContractFlag": true,
69
+ // "bliConfirmFlag": false,
70
+ // "contractSignFlag": true,
71
+ // "existDepositInvoiceFlag": true,
72
+ // "depositInvoicePayFlag": true,
73
+ // "contractPercentage": "75.00",
74
+ // "claimCreateFlag": false,
75
+ // "claimProcessFlag": null,
76
+ // "claimCloseFlag": false,
77
+ // "claimPercentage": null,
78
+ // "latestBillFileInfo": [],
79
+ // "personalBillFileInfo": [
80
+ // {
81
+ // "fileId": 2143,
82
+ // "linkId": 1581,
83
+ // "subLinkId": null,
84
+ // "linkType": "dealRecord",
85
+ // "fileName": "0414cc54-e649-4bda-8e69-2758a9052178.CNT__",
86
+ // "fileType": "personal_deal_bill",
87
+ // "url": "https://s3.cdn.doctorscrap.com/develop/2024/03/11/fe9193a409f746379a437552f6c515fd.CNT__",
88
+ // "coverUrl": null,
89
+ // "createTime": "2024-03-11 03:25:25",
90
+ // "ext": ".CNT__",
91
+ // "visible": true,
92
+ // "name": null,
93
+ // "fileInfoList": null,
94
+ // "fileTypeList": null,
95
+ // "linkIdList": null
96
+ // }
97
+ // ],
98
+ // "saleContractOtherFile": [],
99
+ // "purchaseContractOtherFile": [],
100
+ // "signContractFileInfo": [
101
+ // {
102
+ // "fileId": 2176,
103
+ // "linkId": 374,
104
+ // "subLinkId": null,
105
+ // "linkType": "contract",
106
+ // "fileName": "20240307-095507.jpeg",
107
+ // "fileType": "contract_sign",
108
+ // "url": "https://s3.cdn.doctorscrap.com/develop/2024/03/12/eea2a0771a7147e0a7004f44c7a13797.jpeg",
109
+ // "coverUrl": null,
110
+ // "createTime": "2024-03-12 10:09:00",
111
+ // "ext": ".jpeg",
112
+ // "visible": true,
113
+ // "name": null,
114
+ // "fileInfoList": null,
115
+ // "fileTypeList": null,
116
+ // "linkIdList": null
117
+ // }
118
+ // ],
119
+ // "proformaInvoice": {
120
+ // "id": 407,
121
+ // "askId": 10019989,
122
+ // "contractId": 374,
123
+ // "shipmentId": null,
124
+ // "receiveCompanyName": "018测试公司",
125
+ // "contractNo": "ARS20240310-08739",
126
+ // "invoiceNo": "INV20240310-08739",
127
+ // "eta": null,
128
+ // "etaUpdateTime": null,
129
+ // "billOfLadingNo": null,
130
+ // "invoiceType": "sale",
131
+ // "invoiceSpecies": "proforma",
132
+ // "invoiceSpeciesSearch": null,
133
+ // "invoiceContent": null,
134
+ // "quoteType": "FIXED",
135
+ // "totalWeight": 40,
136
+ // "currency": "USD",
137
+ // "remainingAmount": 0,
138
+ // "amount": 7104,
139
+ // "depositAmount": null,
140
+ // "pointPriceDate": "2024-03-10 03:08:50",
141
+ // "pointPriceMonth": null,
142
+ // "pointPrice": null,
143
+ // "deposit": 20,
144
+ // "balance": 80,
145
+ // "billCompanyId": 10872,
146
+ // "billCompanyName": "TTYY INTERNATIONAL LIMITED",
147
+ // "billCompanyAddress": "FLAT/RM A1,11/F SUCCESS COMMBLDG NO 245-251 HENNESSY RD WANCHAI,HONGKONG.",
148
+ // "receiveCompanyId": 10913,
149
+ // "receiveCompanyAddress": "2024年03月09日16:35:29",
150
+ // "shipCompanyName": "018测试公司",
151
+ // "shipCompanyAddress": "2024年03月09日16:35:29",
152
+ // "paymentTerms": "20% deposit with in 7 days after booking confirmation or container(s) no. and 80% balance T/T paid 7 days before arrival at the POD. ",
153
+ // "livePriceDecision": null,
154
+ // "pingAnBank": null,
155
+ // "swift": "SZDBCNBSXXX",
156
+ // "bankName": "PING AN BANK CO.,LTD. SHANGHAI FREE TRADE AREA BRANCH",
157
+ // "bankAddress": "Unit 2, 1st Floor, No.3 Building, Lujiazui Century Financial Plaza, No.799 South YangGao Road, Pudong District, Shanghai,China",
158
+ // "account": "OSA15000107675711",
159
+ // "accountName": "Apex Recycling Limited",
160
+ // "accountAddress": "RM18, 9/F, BLK B, HI-TECH INDUSTRIAL CENTRE, 491-501 CASTLE PEAK ROAD, TSUEN WAN, HK",
161
+ // "endFlag": false,
162
+ // "invoiceState": 0,
163
+ // "completionState": 0,
164
+ // "generateDocumentStatus": true,
165
+ // "voidFlag": null,
166
+ // "visibleServiceFee": true,
167
+ // "documentGenerationTime": "2024-03-10 05:20:05",
168
+ // "documentGenerationBeginTime": null,
169
+ // "documentGenerationEndTime": null,
170
+ // "remark": null,
171
+ // "reference": null,
172
+ // "dealTime": "2024-03-10 03:07:23",
173
+ // "createUserId": 1,
174
+ // "createUserName": "测试狂人",
175
+ // "updateUserId": 1,
176
+ // "updateUserName": "测试狂人",
177
+ // "elementPoint": null,
178
+ // "invoiceDate": "2024-03-10 03:08:50",
179
+ // "multiElementFlag": false,
180
+ // "createTime": "2024-03-10 03:08:50",
181
+ // "createBeginTime": null,
182
+ // "createEndTime": null,
183
+ // "updateTime": "2024-03-10 05:20:05",
184
+ // "shipmentCreateTime": null,
185
+ // "billCompanyInfo": null,
186
+ // "receiveCompanyInfo": null,
187
+ // "contract": null,
188
+ // "depositInvoice": null,
189
+ // "contractDetailList": null,
190
+ // "invoiceDetailList": null,
191
+ // "containerDetailList": null,
192
+ // "selectInvoiceDetailList": null,
193
+ // "lmeCu": null,
194
+ // "cmxCu": null,
195
+ // "documentType": null,
196
+ // "quoteTypeOptions": null,
197
+ // "voucherImageList": null,
198
+ // "documentsList": null,
199
+ // "invoiceFileList": null,
200
+ // "extraCosts": null,
201
+ // "containerNoList": null,
202
+ // "destination": null,
203
+ // "terminal": null,
204
+ // "financialStatus": "fully_paid",
205
+ // "financialStatusSearch": null,
206
+ // "contractVoidFlag": null
207
+ // },
208
+ // "proformaInvoiceFileInfo": [
209
+ // {
210
+ // "fileId": 2141,
211
+ // "linkId": 407,
212
+ // "subLinkId": null,
213
+ // "linkType": "invoice",
214
+ // "fileName": "proforma_INV20240310-08739_20240310.pdf",
215
+ // "fileType": "proforma_invoice",
216
+ // "url": "https://hzcdn.doctorscrap.com/upload/2024/03/10/c02cc555-063b-4d80-af45-6776b16dfb93.pdf",
217
+ // "coverUrl": null,
218
+ // "createTime": "2024-03-10 03:08:51",
219
+ // "ext": ".pdf",
220
+ // "visible": true,
221
+ // "name": null,
222
+ // "fileInfoList": null,
223
+ // "fileTypeList": null,
224
+ // "linkIdList": null
225
+ // }
226
+ // ],
227
+ // "personalProformaInvoiceFileInfo": [
228
+ // {
229
+ // "fileId": 2175,
230
+ // "linkId": 407,
231
+ // "subLinkId": null,
232
+ // "linkType": "invoice",
233
+ // "fileName": "02b0ef972253423c990e4d674a5e52f3 (1).jpeg",
234
+ // "fileType": "personal_proforma_invoice",
235
+ // "url": "https://s3.cdn.doctorscrap.com/develop/2024/03/12/ee52b404a79842e7823e71f5ec7bd6a4.jpeg",
236
+ // "coverUrl": null,
237
+ // "createTime": "2024-03-12 09:48:04",
238
+ // "ext": ".jpeg",
239
+ // "visible": true,
240
+ // "name": null,
241
+ // "fileInfoList": null,
242
+ // "fileTypeList": null,
243
+ // "linkIdList": null
244
+ // }
245
+ // ],
246
+ // "proformaInvoiceWaterBillFileInfo": [],
247
+ // "shipmentFileInfoList": [
248
+ // {
249
+ // "shipmentId": 203,
250
+ // "bookingNo": "2024年03月10日11:09:23",
251
+ // "billOfLadingNo": "2024年03月10日11:09:23",
252
+ // "generatePackingFlag": false,
253
+ // "generateInvoiceFlag": false,
254
+ // "uploadContainerPhotoFlag": true,
255
+ // "uploadDraftBlFlag": false,
256
+ // "confirmDraftBlFlag": false,
257
+ // "balanceInvoicePartiallyPaidFlag": true,
258
+ // "balanceInvoiceFullyPaidFlag": true,
259
+ // "shipmentPercentage": "42.86",
260
+ // "telexReleaseFlag": null,
261
+ // "telexReleasePercentage": null,
262
+ // "bookingConfirmation": [],
263
+ // "draftBillOfLading": [],
264
+ // "originalBillOfLadingCopy": [],
265
+ // "packingList": [],
266
+ // "salePersonalPackingList": [
267
+ // {
268
+ // "fileId": 2149,
269
+ // "linkId": 203,
270
+ // "subLinkId": null,
271
+ // "linkType": "shipment",
272
+ // "fileName": "port-data.png",
273
+ // "fileType": "sale_personal_shipment_packing_list",
274
+ // "url": "https://s3.cdn.doctorscrap.com/develop/2024/03/11/5b94778c1bdc447daf21056a1c2786f4.png",
275
+ // "coverUrl": null,
276
+ // "createTime": "2024-03-11 06:23:36",
277
+ // "ext": ".png",
278
+ // "visible": true,
279
+ // "name": null,
280
+ // "fileInfoList": null,
281
+ // "fileTypeList": null,
282
+ // "linkIdList": null
283
+ // }
284
+ // ],
285
+ // "purchasePersonalPackingList": [],
286
+ // "containerFileInfoRespList": [
287
+ // {
288
+ // "containerId": 199,
289
+ // "containerNo": "2024-03-10 11:09:36",
290
+ // "packingPhoto": [
291
+ // {
292
+ // "fileId": 2150,
293
+ // "linkId": 199,
294
+ // "subLinkId": null,
295
+ // "linkType": "container",
296
+ // "fileName": "port-data.png",
297
+ // "fileType": "container_packing_photo",
298
+ // "url": "https://s3.cdn.doctorscrap.com/develop/2024/03/11/6c6b0f69b2ef473680df021ce1a177a5.png",
299
+ // "coverUrl": null,
300
+ // "createTime": "2024-03-11 06:48:58",
301
+ // "ext": ".png",
302
+ // "visible": true,
303
+ // "name": null,
304
+ // "fileInfoList": null,
305
+ // "fileTypeList": null,
306
+ // "linkIdList": null
307
+ // },
308
+ // {
309
+ // "fileId": 2151,
310
+ // "linkId": 199,
311
+ // "subLinkId": null,
312
+ // "linkType": "container",
313
+ // "fileName": "20240103-102832.jpeg",
314
+ // "fileType": "container_packing_photo",
315
+ // "url": "https://s3.cdn.doctorscrap.com/develop/2024/03/11/64327bfa54074b61899359cc21fbb4ac.jpeg",
316
+ // "coverUrl": null,
317
+ // "createTime": "2024-03-11 06:52:27",
318
+ // "ext": ".jpeg",
319
+ // "visible": true,
320
+ // "name": null,
321
+ // "fileInfoList": null,
322
+ // "fileTypeList": null,
323
+ // "linkIdList": null
324
+ // }
325
+ // ],
326
+ // "expandedFlag": false
327
+ // }
328
+ // ],
329
+ // "finalInvoice": {
330
+ // "id": 408,
331
+ // "askId": 10019989,
332
+ // "contractId": 374,
333
+ // "shipmentId": 203,
334
+ // "receiveCompanyName": "018测试公司",
335
+ // "contractNo": "ARS20240310-08739",
336
+ // "invoiceNo": "INV20240310-08739-A",
337
+ // "eta": null,
338
+ // "etaUpdateTime": null,
339
+ // "billOfLadingNo": null,
340
+ // "invoiceType": "sale",
341
+ // "invoiceSpecies": "fixed",
342
+ // "invoiceSpeciesSearch": null,
343
+ // "invoiceContent": null,
344
+ // "quoteType": "FIXED",
345
+ // "totalWeight": 20,
346
+ // "currency": "USD",
347
+ // "remainingAmount": 0,
348
+ // "amount": 18160,
349
+ // "depositAmount": 0,
350
+ // "pointPriceDate": "2024-03-10 03:09:53",
351
+ // "pointPriceMonth": null,
352
+ // "pointPrice": null,
353
+ // "deposit": 20,
354
+ // "balance": 80,
355
+ // "billCompanyId": 10872,
356
+ // "billCompanyName": "TTYY INTERNATIONAL LIMITED",
357
+ // "billCompanyAddress": "FLAT/RM A1,11/F SUCCESS COMMBLDG NO 245-251 HENNESSY RD WANCHAI,HONGKONG.",
358
+ // "receiveCompanyId": 10913,
359
+ // "receiveCompanyAddress": "2024年03月09日16:35:29",
360
+ // "shipCompanyName": "018测试公司",
361
+ // "shipCompanyAddress": "2024年03月09日16:35:29",
362
+ // "paymentTerms": "20% deposit with in 7 days after booking confirmation or container(s) no. and 80% balance T/T paid 7 days before arrival at the POD. ",
363
+ // "livePriceDecision": null,
364
+ // "pingAnBank": "",
365
+ // "swift": "SZDBCNBSXXX",
366
+ // "bankName": "PING AN BANK CO.,LTD. SHANGHAI FREE TRADE AREA BRANCH",
367
+ // "bankAddress": "Unit 2, 1st Floor, No.3 Building, Lujiazui Century Financial Plaza, No.799 South YangGao Road, Pudong District, Shanghai,China",
368
+ // "account": "OSA15000107675711",
369
+ // "accountName": "Apex Recycling Limited",
370
+ // "accountAddress": "RM18, 9/F, BLK B, HI-TECH INDUSTRIAL CENTRE, 491-501 CASTLE PEAK ROAD, TSUEN WAN, HK",
371
+ // "endFlag": false,
372
+ // "invoiceState": 0,
373
+ // "completionState": 0,
374
+ // "generateDocumentStatus": true,
375
+ // "voidFlag": null,
376
+ // "visibleServiceFee": true,
377
+ // "documentGenerationTime": "2024-03-10 05:20:09",
378
+ // "documentGenerationBeginTime": null,
379
+ // "documentGenerationEndTime": null,
380
+ // "remark": null,
381
+ // "reference": null,
382
+ // "dealTime": "2024-03-10 03:07:23",
383
+ // "createUserId": 1,
384
+ // "createUserName": "测试狂人",
385
+ // "updateUserId": 1,
386
+ // "updateUserName": "测试狂人",
387
+ // "elementPoint": null,
388
+ // "invoiceDate": "2024-03-10 03:09:53",
389
+ // "multiElementFlag": false,
390
+ // "createTime": "2024-03-10 03:09:53",
391
+ // "createBeginTime": null,
392
+ // "createEndTime": null,
393
+ // "updateTime": "2024-03-10 05:20:08",
394
+ // "shipmentCreateTime": null,
395
+ // "billCompanyInfo": null,
396
+ // "receiveCompanyInfo": null,
397
+ // "contract": null,
398
+ // "depositInvoice": null,
399
+ // "contractDetailList": null,
400
+ // "invoiceDetailList": null,
401
+ // "containerDetailList": null,
402
+ // "selectInvoiceDetailList": null,
403
+ // "lmeCu": null,
404
+ // "cmxCu": null,
405
+ // "documentType": null,
406
+ // "quoteTypeOptions": null,
407
+ // "voucherImageList": null,
408
+ // "documentsList": null,
409
+ // "invoiceFileList": null,
410
+ // "extraCosts": null,
411
+ // "containerNoList": null,
412
+ // "destination": null,
413
+ // "terminal": null,
414
+ // "financialStatus": "fully_paid",
415
+ // "financialStatusSearch": null,
416
+ // "contractVoidFlag": null
417
+ // },
418
+ // "saleTemporaryFinallyInvoice": [],
419
+ // "salePersonalTemporaryFinallyInvoice": [],
420
+ // "purchaseTemporaryFinallyInvoice": [],
421
+ // "saleFinallyInvoice": [],
422
+ // "salePersonalFinallyInvoice": [],
423
+ // "purchaseFinallyInvoice": [],
424
+ // "shipmentOther": [],
425
+ // "saleShipmentOther": [
426
+ // {
427
+ // "fileId": 2152,
428
+ // "linkId": 203,
429
+ // "subLinkId": null,
430
+ // "linkType": "shipment",
431
+ // "fileName": "port-data.png",
432
+ // "fileType": "sale_shipment_other",
433
+ // "url": "https://s3.cdn.doctorscrap.com/develop/2024/03/11/c80277e21f5848d89f47bbf30af202d8.png",
434
+ // "coverUrl": null,
435
+ // "createTime": "2024-03-11 08:07:01",
436
+ // "ext": ".png",
437
+ // "visible": true,
438
+ // "name": null,
439
+ // "fileInfoList": null,
440
+ // "fileTypeList": null,
441
+ // "linkIdList": null
442
+ // }
443
+ // ],
444
+ // "purchaseShipmentOther": [],
445
+ // "waterBill": [],
446
+ // "voucher": [],
447
+ // "salePersonalWaterBill": [],
448
+ // "purchasePersonalWaterBill": [],
449
+ // "deliveryReceipt": []
450
+ // },
451
+ // {
452
+ // "shipmentId": 204,
453
+ // "bookingNo": "2024年03月10日11:10:06",
454
+ // "billOfLadingNo": "2024年03月10日11:10:06",
455
+ // "generatePackingFlag": true,
456
+ // "generateInvoiceFlag": true,
457
+ // "uploadContainerPhotoFlag": false,
458
+ // "uploadDraftBlFlag": false,
459
+ // "confirmDraftBlFlag": false,
460
+ // "balanceInvoicePartiallyPaidFlag": true,
461
+ // "balanceInvoiceFullyPaidFlag": true,
462
+ // "shipmentPercentage": "57.14",
463
+ // "telexReleaseFlag": null,
464
+ // "telexReleasePercentage": null,
465
+ // "bookingConfirmation": [],
466
+ // "draftBillOfLading": [],
467
+ // "originalBillOfLadingCopy": [],
468
+ // "packingList": [
469
+ // {
470
+ // "fileId": 2303,
471
+ // "linkId": 204,
472
+ // "subLinkId": null,
473
+ // "linkType": "shipment",
474
+ // "fileName": "packing_list_INV20240310-08739-B_20240313.pdf",
475
+ // "fileType": "shipment_packing_list",
476
+ // "url": "https://hzcdn.doctorscrap.com/upload/2024/03/13/4b6cf613-dd50-4ff0-9bd0-3e4671f2b868.pdf",
477
+ // "coverUrl": null,
478
+ // "createTime": "2024-03-13 08:42:15",
479
+ // "ext": ".pdf",
480
+ // "visible": true,
481
+ // "name": null,
482
+ // "fileInfoList": null,
483
+ // "fileTypeList": null,
484
+ // "linkIdList": null
485
+ // }
486
+ // ],
487
+ // "salePersonalPackingList": [],
488
+ // "purchasePersonalPackingList": [],
489
+ // "containerFileInfoRespList": [
490
+ // {
491
+ // "containerId": 200,
492
+ // "containerNo": "2024-03-10 11:10:14",
493
+ // "packingPhoto": [],
494
+ // "expandedFlag": false
495
+ // }
496
+ // ],
497
+ // "finalInvoice": {
498
+ // "id": 409,
499
+ // "askId": 10019989,
500
+ // "contractId": 374,
501
+ // "shipmentId": 204,
502
+ // "receiveCompanyName": "018测试公司",
503
+ // "contractNo": "ARS20240310-08739",
504
+ // "invoiceNo": "INV20240310-08739-B",
505
+ // "eta": null,
506
+ // "etaUpdateTime": null,
507
+ // "billOfLadingNo": null,
508
+ // "invoiceType": "sale",
509
+ // "invoiceSpecies": "fixed",
510
+ // "invoiceSpeciesSearch": null,
511
+ // "invoiceContent": null,
512
+ // "quoteType": "FIXED",
513
+ // "totalWeight": 30,
514
+ // "currency": "USD",
515
+ // "remainingAmount": 27240,
516
+ // "amount": 27240,
517
+ // "depositAmount": 0,
518
+ // "pointPriceDate": "2024-03-10 03:10:39",
519
+ // "pointPriceMonth": null,
520
+ // "pointPrice": null,
521
+ // "deposit": 20,
522
+ // "balance": 80,
523
+ // "billCompanyId": 10872,
524
+ // "billCompanyName": "TTYY INTERNATIONAL LIMITED",
525
+ // "billCompanyAddress": "FLAT/RM A1,11/F SUCCESS COMMBLDG NO 245-251 HENNESSY RD WANCHAI,HONGKONG.",
526
+ // "receiveCompanyId": 10913,
527
+ // "receiveCompanyAddress": "2024年03月09日16:35:29",
528
+ // "shipCompanyName": "018测试公司",
529
+ // "shipCompanyAddress": "2024年03月09日16:35:29",
530
+ // "paymentTerms": "20% deposit with in 7 days after booking confirmation or container(s) no. and 80% balance T/T paid 7 days before arrival at the POD. ",
531
+ // "livePriceDecision": null,
532
+ // "pingAnBank": "",
533
+ // "swift": "SZDBCNBSXXX",
534
+ // "bankName": "PING AN BANK CO.,LTD. SHANGHAI FREE TRADE AREA BRANCH",
535
+ // "bankAddress": "Unit 2, 1st Floor, No.3 Building, Lujiazui Century Financial Plaza, No.799 South YangGao Road, Pudong District, Shanghai,China",
536
+ // "account": "OSA15000107675711",
537
+ // "accountName": "Apex Recycling Limited",
538
+ // "accountAddress": "RM18, 9/F, BLK B, HI-TECH INDUSTRIAL CENTRE, 491-501 CASTLE PEAK ROAD, TSUEN WAN, HK",
539
+ // "endFlag": false,
540
+ // "invoiceState": 0,
541
+ // "completionState": 0,
542
+ // "generateDocumentStatus": true,
543
+ // "voidFlag": null,
544
+ // "visibleServiceFee": true,
545
+ // "documentGenerationTime": "2024-03-10 05:20:12",
546
+ // "documentGenerationBeginTime": null,
547
+ // "documentGenerationEndTime": null,
548
+ // "remark": null,
549
+ // "reference": null,
550
+ // "dealTime": "2024-03-10 03:07:23",
551
+ // "createUserId": 1,
552
+ // "createUserName": "测试狂人",
553
+ // "updateUserId": 1,
554
+ // "updateUserName": "测试狂人",
555
+ // "elementPoint": null,
556
+ // "invoiceDate": "2024-03-10 03:10:38",
557
+ // "multiElementFlag": false,
558
+ // "createTime": "2024-03-10 03:10:38",
559
+ // "createBeginTime": null,
560
+ // "createEndTime": null,
561
+ // "updateTime": "2024-03-10 05:20:11",
562
+ // "shipmentCreateTime": null,
563
+ // "billCompanyInfo": null,
564
+ // "receiveCompanyInfo": null,
565
+ // "contract": null,
566
+ // "depositInvoice": null,
567
+ // "contractDetailList": null,
568
+ // "invoiceDetailList": null,
569
+ // "containerDetailList": null,
570
+ // "selectInvoiceDetailList": null,
571
+ // "lmeCu": null,
572
+ // "cmxCu": null,
573
+ // "documentType": null,
574
+ // "quoteTypeOptions": null,
575
+ // "voucherImageList": null,
576
+ // "documentsList": null,
577
+ // "invoiceFileList": null,
578
+ // "extraCosts": null,
579
+ // "containerNoList": null,
580
+ // "destination": null,
581
+ // "terminal": null,
582
+ // "financialStatus": "fully_paid",
583
+ // "financialStatusSearch": null,
584
+ // "contractVoidFlag": null
585
+ // },
586
+ // "saleTemporaryFinallyInvoice": [],
587
+ // "salePersonalTemporaryFinallyInvoice": [],
588
+ // "purchaseTemporaryFinallyInvoice": [],
589
+ // "saleFinallyInvoice": [
590
+ // {
591
+ // "fileId": 2192,
592
+ // "linkId": 204,
593
+ // "subLinkId": null,
594
+ // "linkType": "shipment",
595
+ // "fileName": "fixed_INV20240310-08739-B_20240312.pdf",
596
+ // "fileType": "sale_finally_invoice",
597
+ // "url": "https://hzcdn.doctorscrap.com/upload/2024/03/12/d264d64f-a343-40ec-8eee-c5c8f766f81c.pdf",
598
+ // "coverUrl": null,
599
+ // "createTime": "2024-03-12 10:58:10",
600
+ // "ext": ".pdf",
601
+ // "visible": true,
602
+ // "name": null,
603
+ // "fileInfoList": null,
604
+ // "fileTypeList": null,
605
+ // "linkIdList": null
606
+ // },
607
+ // {
608
+ // "fileId": 2302,
609
+ // "linkId": 204,
610
+ // "subLinkId": null,
611
+ // "linkType": "shipment",
612
+ // "fileName": "fixed_INV20240310-08739-B_20240313.pdf",
613
+ // "fileType": "sale_finally_invoice",
614
+ // "url": "https://hzcdn.doctorscrap.com/upload/2024/03/13/dfbf99ec-2bd6-41ec-803b-50ce1621e77e.pdf",
615
+ // "coverUrl": null,
616
+ // "createTime": "2024-03-13 08:42:14",
617
+ // "ext": ".pdf",
618
+ // "visible": true,
619
+ // "name": null,
620
+ // "fileInfoList": null,
621
+ // "fileTypeList": null,
622
+ // "linkIdList": null
623
+ // }
624
+ // ],
625
+ // "salePersonalFinallyInvoice": [],
626
+ // "purchaseFinallyInvoice": [],
627
+ // "shipmentOther": [],
628
+ // "saleShipmentOther": [],
629
+ // "purchaseShipmentOther": [],
630
+ // "waterBill": [],
631
+ // "voucher": [],
632
+ // "salePersonalWaterBill": [],
633
+ // "purchasePersonalWaterBill": [],
634
+ // "deliveryReceipt": []
635
+ // }
636
+ // ],
637
+ // "claimCreditNoteFileList": null,
638
+ // "claimDebitNoteFileList": null
639
+ // }
640
+ // }
641
+ // )
642
+ // }
643
+ // )
644
+ return new Promise((resolve) => {
645
+ resolve(
646
+ {
647
+ "msg": "操作成功",
648
+ "code": 200,
649
+ "data": {
650
+ "latestContractFileInfo": [
651
+ {
652
+ "fileId": 2322,
653
+ "linkId": 395,
654
+ "subLinkId": null,
655
+ "linkType": "contract",
656
+ "fileName": "Formal_ARP20240314-78908_20240314.pdf",
657
+ "fileType": "contract_formal",
658
+ "url": "https://hzcdn.doctorscrap.com/upload/2024/03/14/38816388-550c-479e-abe1-6a763bd72157.pdf",
659
+ "coverUrl": null,
660
+ "createTime": "2024-03-14 09:50:50",
661
+ "ext": ".pdf",
662
+ "visible": true,
663
+ "name": null,
664
+ "fileInfoList": null,
665
+ "fileTypeList": null,
666
+ "linkIdList": null
667
+ }
668
+ ],
669
+ "sendDraftContractFlag": true,
670
+ "confirmContractFlag": true,
671
+ "bliConfirmFlag": true,
672
+ "contractSignFlag": true,
673
+ "existDepositInvoiceFlag": true,
674
+ "depositInvoicePayFlag": false,
675
+ "contractPercentage": "83.33",
676
+ "claimCreateFlag": false,
677
+ "claimProcessFlag": null,
678
+ "claimCloseFlag": false,
679
+ "claimPercentage": null,
680
+ "latestBillFileInfo": [
681
+ {
682
+ "fileId": 2319,
683
+ "linkId": 1601,
684
+ "subLinkId": null,
685
+ "linkType": "dealRecord",
686
+ "fileName": "BL_instruction_ARS20240314-78908_20240314.pdf",
687
+ "fileType": "deal_bill",
688
+ "url": "https://hzcdn.doctorscrap.com/upload/2024/03/14/1f89c7a9-86a7-47e4-86a4-583bbbbf016b.pdf",
689
+ "coverUrl": null,
690
+ "createTime": "2024-03-14 09:48:10",
691
+ "ext": ".pdf",
692
+ "visible": true,
693
+ "name": null,
694
+ "fileInfoList": null,
695
+ "fileTypeList": null,
696
+ "linkIdList": null
697
+ }
698
+ ],
699
+ "personalBillFileInfo": [],
700
+ "saleContractOtherFile": [],
701
+ "purchaseContractOtherFile": [],
702
+ "signContractFileInfo": [
703
+ {
704
+ "fileId": 2329,
705
+ "linkId": 395,
706
+ "subLinkId": null,
707
+ "linkType": "contract",
708
+ "fileName": "索赔申请书文案未更新.png",
709
+ "fileType": "contract_sign",
710
+ "url": "https://s3.cdn.doctorscrap.com/develop/2024/03/14/7f0f6dd70e3c40c183a5b2a3a5db5dcc.png",
711
+ "coverUrl": null,
712
+ "createTime": "2024-03-14 10:07:49",
713
+ "ext": ".png",
714
+ "visible": true,
715
+ "name": null,
716
+ "fileInfoList": null,
717
+ "fileTypeList": null,
718
+ "linkIdList": null
719
+ }
720
+ ],
721
+ "proformaInvoice": {
722
+ "id": 424,
723
+ "askId": 10020031,
724
+ "contractId": 395,
725
+ "shipmentId": null,
726
+ "receiveCompanyName": "0测试公司",
727
+ "contractNo": "ARP20240314-78908",
728
+ "invoiceNo": "ARP20240314-78908",
729
+ "eta": null,
730
+ "etaUpdateTime": null,
731
+ "billOfLadingNo": null,
732
+ "invoiceType": "purchase",
733
+ "invoiceSpecies": "proforma",
734
+ "invoiceSpeciesSearch": null,
735
+ "invoiceContent": null,
736
+ "quoteType": "CMX_3",
737
+ "totalWeight": null,
738
+ "currency": "USD",
739
+ "remainingAmount": 123,
740
+ "amount": 123,
741
+ "depositAmount": null,
742
+ "pointPriceDate": null,
743
+ "pointPriceMonth": null,
744
+ "pointPrice": null,
745
+ "deposit": null,
746
+ "balance": null,
747
+ "billCompanyId": 10908,
748
+ "billCompanyName": "Ntest",
749
+ "billCompanyAddress": "B",
750
+ "receiveCompanyId": 10872,
751
+ "receiveCompanyAddress": "杭州",
752
+ "shipCompanyName": null,
753
+ "shipCompanyAddress": null,
754
+ "paymentTerms": "20% deposit with in 7 days after booking and 80% balance paid 7 days before arrival at the POD ",
755
+ "livePriceDecision": null,
756
+ "pingAnBank": null,
757
+ "swift": null,
758
+ "bankName": null,
759
+ "bankAddress": null,
760
+ "account": null,
761
+ "accountName": null,
762
+ "accountAddress": null,
763
+ "endFlag": false,
764
+ "invoiceState": 0,
765
+ "completionState": 0,
766
+ "generateDocumentStatus": true,
767
+ "voidFlag": null,
768
+ "visibleServiceFee": true,
769
+ "documentGenerationTime": "2024-03-14 07:57:06",
770
+ "documentGenerationBeginTime": null,
771
+ "documentGenerationEndTime": null,
772
+ "remark": null,
773
+ "reference": null,
774
+ "dealTime": null,
775
+ "createUserId": 135,
776
+ "createUserName": "张子洵",
777
+ "updateUserId": 135,
778
+ "updateUserName": "张子洵",
779
+ "elementPoint": null,
780
+ "invoiceDate": "2024-03-14 00:00:00",
781
+ "multiElementFlag": false,
782
+ "createTime": "2024-03-14 07:56:15",
783
+ "createBeginTime": null,
784
+ "createEndTime": null,
785
+ "updateTime": "2024-03-14 07:57:06",
786
+ "shipmentCreateTime": null,
787
+ "billCompanyInfo": null,
788
+ "receiveCompanyInfo": null,
789
+ "contract": null,
790
+ "depositInvoice": null,
791
+ "contractDetailList": null,
792
+ "invoiceDetailList": null,
793
+ "containerDetailList": null,
794
+ "selectInvoiceDetailList": null,
795
+ "lmeCu": null,
796
+ "cmxCu": null,
797
+ "documentType": null,
798
+ "quoteTypeOptions": null,
799
+ "voucherImageList": null,
800
+ "documentsList": null,
801
+ "invoiceFileList": null,
802
+ "extraCosts": null,
803
+ "containerNoList": null,
804
+ "destination": null,
805
+ "terminal": null,
806
+ "financialStatus": "unpaid",
807
+ "financialStatusSearch": null,
808
+ "contractVoidFlag": null
809
+ },
810
+ "proformaInvoiceFileInfo": [
811
+ {
812
+ "fileId": 2323,
813
+ "linkId": 424,
814
+ "subLinkId": null,
815
+ "linkType": "invoice",
816
+ "fileName": "生成定金发票报错.png",
817
+ "fileType": "proforma_invoice",
818
+ "url": "https://hzcdn.doctorscrap.com/upload/2024/03/14/aca6f069-9dcf-4921-b0ae-ceebe65e84ac.png",
819
+ "coverUrl": null,
820
+ "createTime": null,
821
+ "ext": ".png",
822
+ "visible": null,
823
+ "name": null,
824
+ "fileInfoList": null,
825
+ "fileTypeList": null,
826
+ "linkIdList": null
827
+ }
828
+ ],
829
+ "personalProformaInvoiceFileInfo": [],
830
+ "proformaInvoiceWaterBillFileInfo": [],
831
+ "shipmentFileInfoList": [
832
+ {
833
+ "shipmentId": 223,
834
+ "bookingNo": "SHKYTTRHCCSG",
835
+ "billOfLadingNo": "548568464325436",
836
+ "generatePackingFlag": false,
837
+ "generateInvoiceFlag": false,
838
+ "uploadContainerPhotoFlag": false,
839
+ "uploadDraftBlFlag": false,
840
+ "confirmDraftBlFlag": false,
841
+ "balanceInvoicePartiallyPaidFlag": false,
842
+ "balanceInvoiceFullyPaidFlag": false,
843
+ "shipmentPercentage": "14.29",
844
+ "telexReleaseFlag": false,
845
+ "telexReleasePercentage": "0.00",
846
+ "bookingConfirmation": [],
847
+ "draftBillOfLading": [],
848
+ "originalBillOfLadingCopy": [],
849
+ "packingList": [
850
+ {
851
+ "fileId": 2326,
852
+ "linkId": 223,
853
+ "subLinkId": null,
854
+ "linkType": "shipment",
855
+ "fileName": "packing_list_INV20240314-78908-A_20240314.pdf",
856
+ "fileType": "shipment_packing_list",
857
+ "url": "https://hzcdn.doctorscrap.com/upload/2024/03/14/12e056bb-3edc-4780-87f3-7af7766124bf.pdf",
858
+ "coverUrl": null,
859
+ "createTime": "2024-03-14 10:04:20",
860
+ "ext": ".pdf",
861
+ "visible": true,
862
+ "name": null,
863
+ "fileInfoList": null,
864
+ "fileTypeList": null,
865
+ "linkIdList": null
866
+ }
867
+ ],
868
+ "salePersonalPackingList": [],
869
+ "purchasePersonalPackingList": [],
870
+ "containerFileInfoRespList": [
871
+ {
872
+ "containerId": 218,
873
+ "containerNo": "123",
874
+ "packingPhoto": [],
875
+ "expandedFlag": false
876
+ }
877
+ ],
878
+ "finalInvoice": {
879
+ "id": 427,
880
+ "askId": 10020031,
881
+ "contractId": 395,
882
+ "shipmentId": 223,
883
+ "receiveCompanyName": "0测试公司",
884
+ "contractNo": "ARP20240314-78908",
885
+ "invoiceNo": "456",
886
+ "eta": null,
887
+ "etaUpdateTime": null,
888
+ "billOfLadingNo": null,
889
+ "invoiceType": "purchase",
890
+ "invoiceSpecies": "fixed",
891
+ "invoiceSpeciesSearch": null,
892
+ "invoiceContent": null,
893
+ "quoteType": "CMX_3",
894
+ "totalWeight": null,
895
+ "currency": "USD",
896
+ "remainingAmount": 1111,
897
+ "amount": 1234,
898
+ "depositAmount": null,
899
+ "pointPriceDate": null,
900
+ "pointPriceMonth": null,
901
+ "pointPrice": null,
902
+ "deposit": null,
903
+ "balance": null,
904
+ "billCompanyId": 10908,
905
+ "billCompanyName": "Ntest",
906
+ "billCompanyAddress": "B",
907
+ "receiveCompanyId": 10872,
908
+ "receiveCompanyAddress": "杭州",
909
+ "shipCompanyName": null,
910
+ "shipCompanyAddress": null,
911
+ "paymentTerms": "20% deposit with in 7 days after booking confirmation or container(s) No. and 80% balance paid 7 days before arrival at the POD ",
912
+ "livePriceDecision": null,
913
+ "pingAnBank": null,
914
+ "swift": null,
915
+ "bankName": null,
916
+ "bankAddress": null,
917
+ "account": null,
918
+ "accountName": null,
919
+ "accountAddress": null,
920
+ "endFlag": false,
921
+ "invoiceState": 0,
922
+ "completionState": 0,
923
+ "generateDocumentStatus": true,
924
+ "voidFlag": null,
925
+ "visibleServiceFee": true,
926
+ "documentGenerationTime": "2024-03-14 10:23:52",
927
+ "documentGenerationBeginTime": null,
928
+ "documentGenerationEndTime": null,
929
+ "remark": "",
930
+ "reference": null,
931
+ "dealTime": null,
932
+ "createUserId": 135,
933
+ "createUserName": "张子洵",
934
+ "updateUserId": 135,
935
+ "updateUserName": "张子洵",
936
+ "elementPoint": null,
937
+ "invoiceDate": "2024-03-14 00:00:00",
938
+ "multiElementFlag": false,
939
+ "createTime": "2024-03-14 10:12:14",
940
+ "createBeginTime": null,
941
+ "createEndTime": null,
942
+ "updateTime": "2024-03-14 10:23:52",
943
+ "shipmentCreateTime": null,
944
+ "billCompanyInfo": null,
945
+ "receiveCompanyInfo": null,
946
+ "contract": null,
947
+ "depositInvoice": null,
948
+ "contractDetailList": null,
949
+ "invoiceDetailList": null,
950
+ "containerDetailList": null,
951
+ "selectInvoiceDetailList": null,
952
+ "lmeCu": null,
953
+ "cmxCu": null,
954
+ "documentType": null,
955
+ "quoteTypeOptions": null,
956
+ "voucherImageList": null,
957
+ "documentsList": null,
958
+ "invoiceFileList": null,
959
+ "extraCosts": null,
960
+ "containerNoList": null,
961
+ "destination": null,
962
+ "terminal": null,
963
+ "financialStatus": "partially_paid",
964
+ "financialStatusSearch": null,
965
+ "contractVoidFlag": null
966
+ },
967
+ "saleTemporaryFinallyInvoice": [],
968
+ "salePersonalTemporaryFinallyInvoice": [],
969
+ "purchaseTemporaryFinallyInvoice": [],
970
+ "saleFinallyInvoice": [],
971
+ "salePersonalFinallyInvoice": [],
972
+ "purchaseFinallyInvoice": [],
973
+ "shipmentOther": [],
974
+ "saleShipmentOther": [],
975
+ "purchaseShipmentOther": [],
976
+ "waterBill": [],
977
+ "voucher": [],
978
+ "salePersonalWaterBill": null,
979
+ "purchasePersonalWaterBill": [],
980
+ "deliveryReceipt": []
981
+ }
982
+ ],
983
+ "claimCreditNoteFileList": null,
984
+ "claimDebitNoteFileList": null
985
+ }
986
+ }
987
+ )
988
+ })
43
989
  }
44
990
 
45
991
  // 查询合同详细
@@ -126,3 +1072,36 @@ export function exportBizContract(query) {
126
1072
  params: query,
127
1073
  });
128
1074
  }
1075
+
1076
+ // 撤回回签接口
1077
+ export function withdrawSignContract({contractId}) {
1078
+ return request({
1079
+ url: `/biz/contract/withdrawSign/${contractId}`,
1080
+ method: "get"
1081
+ });
1082
+ }
1083
+ // 草稿提单确认
1084
+ export function shipmentConfirmDraftBl({shipmentId}) {
1085
+ return request({
1086
+ url: `/biz/shipment/confirmDraftBl/${shipmentId}`,
1087
+ method: "get"
1088
+ });
1089
+ }
1090
+
1091
+ // 根据合同号,添加收款账号
1092
+ export function insertCompanyBank(data) {
1093
+ return request({
1094
+ url: "biz/contract/company/savePaymentByContract",
1095
+ method: "post",
1096
+ data: data,
1097
+ });
1098
+ }
1099
+
1100
+ // 根据合同号,获取收款账号
1101
+ export function getCompanyBanks(contractId) {
1102
+ return request({
1103
+ url: `biz/contract/company/paymentAccount/${contractId}`,
1104
+ method: "get",
1105
+ params: {},
1106
+ });
1107
+ }