contractUtil.js
31.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
import * as fetch from './fetch';
const ORDER_PATH = '/api/psiorder';
const CONTRACT_PATH = '/api/servicecontract';
const ACCOUNT_PATH = '/api/settlemgm';
const WITHDRAW_PATH = '/api/walletmgm';
const SOCIALWORK_PATH = '/api/socialwork';
const RECRUIT_PATH = '/api/recruit';
//接单表列表
export const getOrderFormList = (params, options = {}) => {
const url = ORDER_PATH + '/form' + params;
return fetch.get(url, options);
}
//服务合同列表
export const getContractList = (params, options = {}) => {
const url = CONTRACT_PATH + '/contracts' + params;
return fetch.get(url, options);
}
//合同续签
export const renew = (params, options = {}) => {
const url = CONTRACT_PATH + '/contracts/' + params.id + '/op/renew';
return fetch.post(url, params, options);
}
//服务合同列表
export const getContractDetail = (id, options = {}) => {
const url = CONTRACT_PATH + '/contracts/' + id;
return fetch.get(url, options);
}
//操作记录列表
export const getOptRecordList = (params, id, options = {}) => {
const url = CONTRACT_PATH + '/' + 'contracts/' + id + '/op-log' + params;
return fetch.get(url, options);
}
//账套管理列表
export const getAccountSetList = (params, options = {}) => {
const url = ACCOUNT_PATH + '/account-books' + params;
return fetch.get(url, options);
}
//账套管理停用/启用
export const accountManage = (id, params, options = {}) => {
const url = ACCOUNT_PATH + '/account-book/' + id + '/op/action';
return fetch.put(url, params, options);
}
//开票信息统计
export const getInoviceNum = (params, options = {}) => {
const url = ACCOUNT_PATH + '/invoices/op/sum';
return fetch.get(url, options);
}
//待核销认领流水统计
export const getCancelNum = (params, options = {}) => {
const url = ACCOUNT_PATH + '/payments/op/sum';
return fetch.get(url, options);
}
//各状态账单统计
export const getBillNum = (params, options = {}) => {
const url = ACCOUNT_PATH + '/bills/op/sum';
return fetch.get(url, options);
}
//账单列表
export const getBillList = (params, options = {}) => {
const url = ACCOUNT_PATH + '/bills' + params;
return fetch.get(url, options);
}
//创建合同
export const createServiceContract = (params, options = {}) => {
const url = CONTRACT_PATH + '/contracts';
return fetch.post(url, params, options);
}
//无账套结算费用列表
export const getNoContractList = (params, options = {}) => {
const url = CONTRACT_PATH + '/service-projects' + params;
return fetch.get(url, options);
}
//账单详情
export const getBillDetail = (id, options = {}) => {
const url = ACCOUNT_PATH + '/bill/' + id;
return fetch.get(url, options);
}
// getSplitBillDetail
//账单拆分详情
export const getSplitBillDetail = (id, options = {}) => {
const url = ACCOUNT_PATH + '/split-detail/' + id + '/person-details';
return fetch.get(url, options);
}
//导出账单
export const importBill = (id) => {
const url = ACCOUNT_PATH + '/bill/' + id + '/op/export';
return fetch.get(url);
}
//生成/锁定/账单
export const buildOrBlockBill = (id, params, options = {}) => {
const url = ACCOUNT_PATH + '/bill/' + id + '/op/action';
return fetch.put(url, params, options);
}
//申请发票
export const applyInvoice = (params, options = {}) => {
const url = ACCOUNT_PATH + '/invoices';
return fetch.post(url, params, options);
}
//查看账单申请发票记录
export const getBillApplyRecordList = (id, options = {}) => {
const url = ACCOUNT_PATH + '/bill/' + id + '/invoices';
return fetch.get(url, options);
}
//操作记录/开票记录
// export const getApplyRecordList = (params,id, options = {}) => {
// const url = ACCOUNT_PATH + '/record-logs/' + id + params;
// return fetch.get(url, options);
// }
export const getApplyRecordList = (id, options = {}) => {
const url = ACCOUNT_PATH + '/invoice/' + id + '/operation-log';
return fetch.get(url, options);
}
//核销账单列表
export const getCancelBillList = (id, options = {}) => {
const url = ACCOUNT_PATH + '/bill/' + id + '/invoices';
return fetch.get(url, options);
}
//开票信息列表
export const getInvoiceList = (params, options = {}) => {
const url = ACCOUNT_PATH + '/invoices' + params;
return fetch.get(url, params, options);
}
// 创建账套时合同和服务项目列表
export const getServerProjectList = (id, options = {}) => {
const url = CONTRACT_PATH + '/contracts-projects?customer_id=' + id;
return fetch.get(url, options);
}
//转客服核销流水
export const toServiceCancel = (id, options = {}) => {
const url = ACCOUNT_PATH + '/payment/' + id + '/op/transfer';
return fetch.put(url, options);
}
// 流水列表
export const getBillRunWaterList = (params, options = {}) => {
const url = ACCOUNT_PATH + '/payments' + params;
return fetch.get(url, params, options);
}
//生成账套
export const createAccount = (params, options = {}) => {
const url = ACCOUNT_PATH + '/account-books';
return fetch.post(url, params, options);
}
//其他费用导入
export const exportOtherPay = (id, url_obj, options = {}) => {
const url = ACCOUNT_PATH + '/bill/' + id + '/other-fees/op/import';
return fetch.post(url, url_obj, options);
}
//查看账单核销记录
export const getBillCancelRecordList = (id, options = {}) => {
const url = ACCOUNT_PATH + '/bill/' + id + '/payments';
return fetch.get(url, options);
}
//核销账单
// export const cancelBill = (id,params, options = {}) => {
// const url = ACCOUNT_PATH + '/bill/' + id + '/op/cancel';
// return fetch.put(url,params, options);
// }
//核销账单
export const cancelBill = (id, params, options = {}) => {
const url = ACCOUNT_PATH + '/bill-detail/' + id + '/op/cancel';
return fetch.put(url, params, options);
}
//核销流水
export const cancelWater = (id, params, options = {}) => {
const url = ACCOUNT_PATH + '/payment/' + id + '/op/cancel';
return fetch.put(url, params, options);
}
//查看账单申请发票记录
export const getCancelDetailList = (id, options = {}) => {
const url = ACCOUNT_PATH + '/payment/' + id + '/bills';
return fetch.get(url, options);
}
//获取账套的发票信息
export const getAccountInvoiceInfoList = (id, options = {}) => {
const url = ACCOUNT_PATH + '/account-book/' + id + '/invoice-info';
return fetch.get(url, options);
}
//领取发票
export const getInvoice = (id, params, options = {}) => {
const url = ACCOUNT_PATH + '/invoice/' + id + '/op/draw';
return fetch.put(url, params, options);
}
//确认签收发票
export const sureSignInvoice = (id, params, options = {}) => {
const url = ACCOUNT_PATH + '/invoice/' + id + '/op/sign';
return fetch.put(url, params, options);
}
//邮寄发票
export const sureSendInvoice = (id, params, options = {}) => {
const url = ACCOUNT_PATH + '/invoice/' + id + '/op/send';
return fetch.put(url, params, options);
}
//确认发送
export const sureEmailInvoice = (id, params, options = {}) => {
const url = ACCOUNT_PATH + '/invoice/' + id + '/op/email';
return fetch.put(url, params, options);
}
//驳回发票
export const returnInvoice = (id, params, options = {}) => {
const url = ACCOUNT_PATH + '/invoice/' + id + '/op/deny';
return fetch.put(url, params, options);
}
//确认发票
export const sureMakeInvoice = (id, params, options = {}) => {
const url = ACCOUNT_PATH + '/invoice/' + id + '/op/confirm';
return fetch.put(url, params, options);
}
//导入流水
export const importWater = (params, options = {}) => {
const url = ACCOUNT_PATH + '/payments/op/import';
return fetch.post(url, params, options);
}
//获取账单社保公积金/工资个税/其他费用/补养明细
export const getBillDetailsList = (id, params, options = {}) => {
const url = ACCOUNT_PATH + '/bill/' + id + '/person-details' + params;
return fetch.get(url, options);
}
//更新账单其他费用
export const updateBillOhterPay = (id, params, options = {}) => {
const url = ACCOUNT_PATH + '/other-fee/' + id;
return fetch.put(url, params, options);
}
//删除账单其他费用
export const delBillOhterPay = (id, params, options = {}) => {
const url = ACCOUNT_PATH + '/other-fee/' + id;
return fetch.del(url, params, options);
}
//获取发票驳回信息
export const getReturnReason = (id, options = {}) => {
const url = ACCOUNT_PATH + '/bill/' + id + '/deny-reason';
return fetch.get(url, options);
}
//获取账套详情
export const getAccountDetails = (id, options = {}) => {
const url = ACCOUNT_PATH + '/account-book/' + id;
return fetch.get(url, options);
}
//修改账套
export const updateAccount = (id, params, options = {}) => {
const url = ACCOUNT_PATH + '/account-book/' + id;
return fetch.put(url, params, options);
}
//更新合同
export const updateContract = (id, params, options = {}) => {
const url = CONTRACT_PATH + '/contracts/' + id;
return fetch.put(url, params, options);
}
//删除账单其他费用
export const updateData = (id, params, options = {}) => {
const url = ACCOUNT_PATH + '/bill/' + id;
return fetch.put(url, params, options);
}
// 打款方列表
export const getPayerLegalList = (id, options = {}) => {
const url = ACCOUNT_PATH + '/payment/payer_legal_entity/dropdown';
return fetch.get(url, options);
}
// 收款方列表
export const getReceivableList = (id, options = {}) => {
const url = ACCOUNT_PATH + '/payment/receivable_legal_entity/dropdown';
return fetch.get(url, options);
}
//下载附件
export const getDownPic = (id, options = {}) => {
const url = CONTRACT_PATH + '/contracts/' + id + '/attachments/op/download';
return fetch.get(url, options);
}
//发起支付申请
export const payApply = (id,params, options = {}) => {
const url = ACCOUNT_PATH + '/split-detail/'+id+'/op/propose';
return fetch.put(url, params, options);
}
//费用拆分
export const paySplit = (params, options = {}) => {
const url = ACCOUNT_PATH + '/bill-detail/' + params.id + '/op/split';
return fetch.post(url, params, options);
}
//费用修改
export const paySplitUpdate = (params, options = {}) => {
const url = ACCOUNT_PATH + '/split-detail/' + params.id + '/op/split';
return fetch.put(url, params, options);
}
//应付管理 -- 确认/驳回
export const checkSplit = (id, options = {}) => {
const url = ACCOUNT_PATH + '/split-detail/' + id + '/op/check';
return fetch.put(url, options);
}
//确认付款
export const surePay = (options = {}) => {
const url = ACCOUNT_PATH + '/split-details/op/confirm';
return fetch.put(url, options);
}
//获取所有支付对象
export const getPayObjectsList = (id, options = {}) => {
const url = ACCOUNT_PATH + '/payment-objects';
return fetch.get(url, options);
}
//应付管理统计
export const getAccountNum = (params, options = {}) => {
const url = ACCOUNT_PATH + '/split-details/op/sum';
return fetch.get(url, options);
}
//应付管理列表
export const getAccountManageList = (params, options = {}) => {
const url = ACCOUNT_PATH + '/split-details' + params;
return fetch.get(url, options);
}
//费用拆分详情
export const getSplitDetail = (id, options = {}) => {
const url = ACCOUNT_PATH + '/bill/' + id + '/split-details';
return fetch.get(url, options);
}
//获取一二级审核人
export const getAuditor = (id, options = {}) => {
const url = ACCOUNT_PATH + '/split-detail/' + id + '/verifier';
return fetch.get(url, options);
}
//服务合同导入
export const exportContract = (params, options = {}) => {
const url = CONTRACT_PATH + '/contract/import';
return fetch.post(url, params, options);
}
//提现管理(待打款、打款中、打款成功)列表
export const getWithDrawManageList = (params, options = {}) => {
const url = WITHDRAW_PATH + '/transactions' + params;
return fetch.get(url, options);
}
//提现管理(打款批次)列表
export const getRemitBatchList = (params, options = {}) => {
const url = WITHDRAW_PATH + '/points-account/paybatch' + params;
return fetch.get(url, options);
}
//打款操作
export const remitOpt = (options = {}) => {
const url = WITHDRAW_PATH + '/points-account';
return fetch.put(url, options);
}
//生成打款批次
export const buildRemitBatch = (options = {}) => {
const url = WITHDRAW_PATH + '/points-account/paybatch';
return fetch.post(url, options);
}
//打款批次操作
export const remitBatchOpt = (id, options = {}) => {
const url = WITHDRAW_PATH + '/points-account/paybatch/' + id + '/op';
return fetch.post(url, options);
}
//打款成功导出
export const remitSuccessImport = (params, options = {}) => {
const url = WITHDRAW_PATH + '/points-account/op/export?money_type=1&status=finished&all=true&in_out=1' + params;
return fetch.get(url, options);
}
//打款批次操作
export const getMoneyByIds = (options = {}) => {
const url = WITHDRAW_PATH + '/points-account/paybatch';
return fetch.put(url, options);
}
//账单合并导出
export const billMergeImport = (options = {}) => {
const url = ACCOUNT_PATH + '/bills/export';
return fetch.put(url, options);
}
//获取账单下所有的发票模板id
export const getInvoiceIdsList = (bill_id, options = {}) => {
const url = ACCOUNT_PATH + '/bill/' + bill_id + '/invoice-template';
return fetch.get(url, options);
}
//查看账单发票模板详情
export const getInvoiceDetail = (bill_id, invoice_id, options = {}) => {
const url = ACCOUNT_PATH + '/bill/' + bill_id + '/invoice-template/' + invoice_id;
return fetch.get(url, options);
}
// 查看账单详情发票模板的发票实例
export const getInvoiceRecord = (bill_id, invoice_id, options = {}) => {
const url = ACCOUNT_PATH + '/bill/' + bill_id + '/invoice-template/' + invoice_id + '/invoice';
return fetch.get(url, options);
}
// 查看账单详情发票模板的开票记录
export const getMakeInvoiceRecord = (bill_id, invoice_id, options = {}) => {
const url = ACCOUNT_PATH + '/bill/' + bill_id + '/invoice-template/' + invoice_id + '/invoice/operation-log';
return fetch.get(url, options);
}
//核销流水页面筛选待核销账单详情
export const getWaterBillList = (params, options = {}) => {
const url = ACCOUNT_PATH + '/payments/cancel-bill-detail' + params;
return fetch.get(url, options);
}
// 查看账单详情核销明细(原账单核销明细接口)
export const getBillCancelDetailList = (bill_id, id, options = {}) => {
const url = ACCOUNT_PATH + '/bill/' + bill_id + '/bill-detail/' + id + '/payments';
return fetch.get(url, options);
}
//账套 操作记录
export const getAccountSetRecordList = (params, id, options = {}) => {
const url = ACCOUNT_PATH + '/account-book/' + id + '/operation-log' + params;
return fetch.get(url, options);
}
//协议管理列表
export const getAgreementManageList = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/protocol' + params;
return fetch.get(url, params, options);
}
//协议操作
export const agreementOpt = (options = {}) => {
const url = SOCIALWORK_PATH + '/protocol/' + options.id + '/op';
return fetch.put(url, options);
}
//创建协议
export const createAgreement = (options = {}) => {
const url = SOCIALWORK_PATH + '/protocol';
return fetch.post(url, options);
}
//确认过协议人员明细
export const getConfirmAgreementStaffDetailsUtil = (id, params, options = {}) => {
const url = SOCIALWORK_PATH + `/protocol/${id}/my-protocols${params}`;
return fetch.get(url, options);
}
//协议详情
export const getAgreementDetails = (id, options = {}) => {
const url = SOCIALWORK_PATH + '/protocol/' + id;
return fetch.get(url, options);
}
//修改协议
export const updateAgreement = (options = {}) => {
const url = SOCIALWORK_PATH + '/protocol/' + options.id;
return fetch.put(url, options);
}
//查看付款进度列表
export const getPayProgressList = (id, options = {}) => {
const url = ACCOUNT_PATH + '/split-detail/' + id + '/operation-log';
return fetch.get(url, options);
}
//任务列表
export const getTaskList = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/freedom-jobs' + params;
return fetch.get(url, params, options);
}
//生成批量匹配的id
export const getBatchMathId = (id, options = {}) => {
const url = SOCIALWORK_PATH + '/matching';
return fetch.get(url, options);
}
//批量指派的导入
export const batchAssignImport = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/batch-matching/op-import';
return fetch.post(url, params, options);
}
//批量任务的导入
export const batchTaskImport = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/freedom-jobs-temp/op-import';
return fetch.post(url, params, options);
}
//批量指派-确认指派/取消
export const batchAssign = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/batch-matching/op';
return fetch.post(url, params, options);
}
// 批量添加任务-确认发布/取消
export const batchAddTask = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/freedom-jobs-temp/op';
return fetch.post(url, params, options);
}
// 指派自由职业者-确认指派/取消
export const batchAssignFreelance = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/freedom-emps-temp/op';
return fetch.post(url, params, options);
}
//创建单个任务
export const createSingleTask = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/freedom-job';
return fetch.post(url, params, options);
}
// 自由职位导入的删除
export const freedomEmployeeImportDel = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/freedom-emps-temp';
return fetch.del(url, params, options);
}
// 自由职位导入的删除
export const freedomTaskImportDel = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/freedom-jobs-temp';
return fetch.del(url, params, options);
}
//日志列表
export const getLogList = (log_id, options = {}) => {
const url = SOCIALWORK_PATH + '/import-record/' + log_id;
return fetch.get(url, options);
}
//任务列表
export const getFreedomJobList = (id, options = {}) => {
const url = SOCIALWORK_PATH + '/freedom-jobs-temp/' + id + '/emps';
return fetch.get(url, options);
}
//自由职业者列表
export const getFreelanceList = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/freedom-emps';
return fetch.post(url, params, options);
}
//查看指派列表
export const getAssignList = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/freedom-jobs/emps' + params;
return fetch.get(url, options);
}
// 指派自由职业者的导入
export const batchFreelanceImport = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/freedom-emps-temp/op-import';
return fetch.post(url, params, options);
}
//删除任务
export const delTask = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/freedom-jobs';
return fetch.del(url, params, options);
}
//手动生成账单
export const handlecreateBill = (id, params, options = {}) => {
const url = `api/settlemgm/account-book/${id}/bills`
return fetch.post(url, params, options)
}
//获取用工池列表
export const getLaborPoolDataList = (params, options = {}) => {
// const url = RECRUIT_PATH + '/myresumes' + params;
const url = SOCIALWORK_PATH + '/employees' + params;
return fetch.get(url, options);
}
//创建协议
export const addTask = (options = {}) => {
// const url = RECRUIT_PATH + '/org-resume';
const url = SOCIALWORK_PATH + '/employees';
return fetch.post(url, options);
}
// 指派自由职业者-现在自由职业之后传给我选择的id
export const assignEmps = (options = {}) => {
const url = SOCIALWORK_PATH + '/freedom-emps-temp/op-select';
return fetch.post(url, options);
}
// 指派自由职业者-调用的接口
export const getAssignFreelanceList = (options = {}) => {
const url = SOCIALWORK_PATH + '/freedom-emps-temp/pre';
return fetch.post(url, options);
}
// 获取待付款/已付款结算月份下拉列表
export const getMonthList = (params, options = {}) => {
const url = ACCOUNT_PATH + '/split-details/drop-down-list' + params;
return fetch.get(url, options);
}
//流水导入
export const waterImport = (options = {}) => {
const url = ACCOUNT_PATH + '/payments/op/import';
return fetch.post(url, options);
}
//查看某批次导入流水失败记录
export const getImportFailList = (params, options = {}) => {
const url = ACCOUNT_PATH + '/payments/op/import/' + id + '/record';
return fetch.get(url, options);
}
//确认导入流水
export const suerImportWater = (options = {}) => {
const url = ACCOUNT_PATH + '/payments/op/import/confirm';
return fetch.put(url, options);
}
// 查看某批次导入流水自动核销账单列表
export const getImportCancelBillList = (id, options = {}) => {
const url = ACCOUNT_PATH + '/payments/op/import/' + id + '/cancel-bill';
return fetch.post(url, options);
}
// 任务导出
export const importTask = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/freedom-jobs/emps/export' + params;
return fetch.get(url, options);
}
//结算管理数据统计
export const getAccountManageNum = (params, options = {}) => {
const url = ACCOUNT_PATH + '/progress/op/sum';
return fetch.get(url, options);
}
// 账单费用拆分列表
export const getBillCostSplitList = (params, options = {}) => {
const url = ACCOUNT_PATH + '/split-details/bills' + params;
return fetch.get(url, options);
}
// 已拆分费用项目列表
export const getSplitedList = (id, options = {}) => {
const url = ACCOUNT_PATH + '/bill/' + id + '/has-split-details';
return fetch.get(url, options);
}
// 账单可拆分费用项目列表
export const getCanSplitedList = (id, options = {}) => {
const url = ACCOUNT_PATH + '/bill/' + id + '/wait-split-details';
return fetch.get(url, options);
}
//批量发起付款申请
export const batchStartPay = (id, options = {}) => {
const url = ACCOUNT_PATH + '/bill/' + id + '/split-details/op/propose';
return fetch.put(url, options);
}
//简历库下载身份证
export const getDownLoadIDCard = ( options = {}) => {
const url = 'api/uaa/users/id-card/op/download';
return fetch.post(url, options);
}
//导出打印pdf
export const importPrint = (id, options = {}) => {
const url = ACCOUNT_PATH + '/split-detail/'+id+'/export/pdf';
return fetch.get(url, options);
}
//指派员工修改手机号
export const updateMobile = (options = {}) => {
const url = SOCIALWORK_PATH + '/freedom-jobs/add-freedom-emp';
return fetch.post(url, options);
}
//删除承揽者
export const delTasker = (options = {}) => {
const url = SOCIALWORK_PATH + '/freedom-emps';
return fetch.del(url, options);
}
// 承揽者列表
export const getApplyList = (options = {}) => {
const url = SOCIALWORK_PATH + '/freedom-emps';
return fetch.get(url, options);
}
// 获取机构类型
export const getTenantType = (options = {}) => {
const url = CONTRACT_PATH + '/tenant-type';
return fetch.get(url, options);
}
// 用工池导出
export const laborPoolExportUtil = (params, options = {}) => {
const url = `api/socialwork/employees/export${params}`;
return fetch.get(url, options)
}
//开户管理列表
export const getOpenManageList = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/individual-house-businesses' + params;
return fetch.get(url, options);
}
//批量设置归属客户
export const batchSetCustom = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/individual-house-businesses/customer';
return fetch.put(url, params, options);
}
// 开户管理导出
export const openManageExport = (params, options = {}) => {
const url = SOCIALWORK_PATH + `/individual-house-businesses/op/export${params}`;
return fetch.get(url, options)
}
// 开户操作(成功/失败)
export const openOpt = (id,params, options = {}) => {
const url = SOCIALWORK_PATH + `/individual-house-business/${id}/op/account`;
return fetch.put(url, params, options);
}
// 更改个体工商户开户信息
export const updateOpenOpt = (id,params, options = {}) => {
const url = SOCIALWORK_PATH + `/individual-house-business/${id}`;
return fetch.put(url, params, options);
}
// 更改个体工商户名字(自动/手动)
export const changeName = (id,params, options = {}) => {
const url = SOCIALWORK_PATH + `/individual-house-business/${id}/name`;
return fetch.put(url, params, options);
}
//查看个体工商户开户信息
export const openInfoDetail = (id, options = {}) => {
const url = SOCIALWORK_PATH + '/individual-house-business/' + id;
return fetch.get(url, options);
}
// 临时导入个体工商户
export const importIndividual = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/individual-house-businesses/op/import';
return fetch.post(url, params, options);
}
// 确认导入临时导入的个体工商户
export const importIndustrial = (options = {}) => {
const url = SOCIALWORK_PATH + `/individual-house-businesses/op/import/confirm`;
return fetch.post(url,options);
}
// 除临时导入的个体工商户
export const delIndustrial = (params, options = {}) => {
const url = SOCIALWORK_PATH + `/individual-house-businesses/imports`;
return fetch.del(url, params, options);
}
// 个体工商户下载附件
export const individualDown = (id, options = {}) => {
const url = SOCIALWORK_PATH + `/individual-house-business/${id}/attachments/op/download`;
return fetch.get(url, options)
}
// 销户
export const cancelOpt = (id,params, options = {}) => {
const url = SOCIALWORK_PATH + `/individual-house-business/${id}/op/cancel`;
return fetch.put(url, params, options);
}
//查看开户失败原因
export const searchOpenFailReason = (id,params, options = {}) => {
const url = SOCIALWORK_PATH + `/individual-house-business/${id}/fail-reason`;
return fetch.get(url, params, options);
}
//个体工商户发票列表
export const loadIndividualInvoice = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/individual-house-businesses/invoices' + params;
return fetch.get(url, options);
}
//登记发票
export const registerInvoice = (id,params, options = {}) => {
const url = SOCIALWORK_PATH + `/individual-house-businesses/invoice/${id}/op/check`;
return fetch.put(url, params, options);
}
//开票列表导出
export const invoiceExport = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/individual-house-businesses/invoices/op/export' + params;
return fetch.get(url, options);
}
//导入个体工商户发票号码
export const exportInvoice = ( options = {}) => {
const url = SOCIALWORK_PATH + '/individual-house-businesses/invoices/op/import';
return fetch.put(url, options);
}
//导入个体工商户发票号码最后的确认
export const exportInvoiceSure = ( options = {}) => {
const url = SOCIALWORK_PATH + '/individual-house-businesses/invoices/op/import';
return fetch.post(url, options);
}
//开户管理操作记录列表
export const getOpenOptRecordList = (id,params, options = {}) => {
const url = SOCIALWORK_PATH + `/individual-house-business/${id}/operation-log${params}`;
return fetch.get(url, options);
}
//开户管理 查看失败原因
export const getFailReason = (id,params, options = {}) => {
const url = SOCIALWORK_PATH + `/individual-house-business/${id}/fail-reason`;
return fetch.get(url, options);
}
//统计账单中某个项目的险种合计
export const getSocialTotal = (id,params, options = {}) => {
const url = ACCOUNT_PATH + `/bill/${id}/person-details/insurance-cost${params}`;
return fetch.get(url, options);
}
//检查账套的服务项目是否可以修改
export const getServerIsCheck = (id,params, options = {}) => {
const url = ACCOUNT_PATH + `/account-book/${id}/check`;
return fetch.get(url, options);
}
//服务合同列表导出
export const contractExport = (params, options = {}) => {
const url = CONTRACT_PATH + '/contract/export' + params;
}
//财务管理 - 任务明细 列表
export const getTaskDetailsList = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/tasks' + params;
return fetch.get(url, options);
}
//财务管理 - 任务明细 批量发放
export const batchGrant = ( options = {}) => {
const url = SOCIALWORK_PATH + '/tasks/op/point-confirm';
return fetch.put(url, options);
}
//财务管理 任务明细 导出
export const exportTaskDetails = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/tasks/op/export' + params;
return fetch.get(url, options);
}
//批量岗位导入
export const batchPositionExport = ( options = {}) => {
const url = SOCIALWORK_PATH + '/positions/import';
return fetch.post(url, options);
}
//批量岗位导入
export const batchExportSure = ( options = {}) => {
const url = SOCIALWORK_PATH + '/positions/import/op';
return fetch.post(url, options);
}
//用工池修改手机号
export const updateLoginMobile = ( options = {}) => {
const url = SOCIALWORK_PATH + '/employees/mobile';
return fetch.put(url, options);
}
//开户管理更改接单手机号
export const updateOrderMobile = (id, options = {}) => {
const url = SOCIALWORK_PATH + '/individual-house-business/'+id+'/mobile';
return fetch.put(url, options);
}
//获取年检设置
export const getAsSetting = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/individual-house-businesses/annual-inspection';
return fetch.get(url, options);
}
//年检设置
export const AsSet = (options = {}) => {
const url = SOCIALWORK_PATH + '/individual-house-businesses/annual-inspection';
return fetch.put(url, options);
}
//获取待年检年份
export const getASYear = (id,options = {}) => {
const url = SOCIALWORK_PATH + `/individual-house-business/${id}/annual-inspection-year`;
return fetch.get(url, options);
}
//办理年检
export const optAs = (id,options = {}) => {
const url = SOCIALWORK_PATH + `/individual-house-business/${id}/op/annual-inspect`;
return fetch.put(url, options);
}
//新增任务关联岗位列表
export const getRelevancePosition = (id,options = {}) => {
const url = SOCIALWORK_PATH + `/positions/dropdown`;
return fetch.get(url, options);
}
//检测账套编号是否存在
export const getAccountIsExist = (options = {}) => {
const url = ACCOUNT_PATH + `/account-books/account-book-no/op/check`;
return fetch.put(url, options);
}
//获取任务类型列表
export const getTaskTypeList = (id,options = {}) => {
const url = SOCIALWORK_PATH + `/job-types`;
return fetch.get(url, options);
}
//服务合同导入
export const contractImport = ( options = {}) => {
const url = CONTRACT_PATH + '/contract/import';
return fetch.post(url, options);
}
//服务合同导入-确认/取消
export const contractImportSure = ( options = {}) => {
const url = CONTRACT_PATH + '/contract/import/op';
return fetch.post(url, options);
}
//任务指派 设置用工成果
export const setLabor = (id, options = {}) => {
const url = SOCIALWORK_PATH + `/freedom-emps/${id}/update-fee`;
return fetch.put(url, options);
}
//获取乙方法务实体信息
export const getPartyBLengalEntity = (tentant_id,id,options = {}) => {
const url = `/api/uaa/tenants/${tentant_id}/legal-entities?id=${id}`;
return fetch.get(url, options);
}
//审核hr发起的任务
export const checkHrSendTask = (id, options = {}) => {
const url = SOCIALWORK_PATH + `/freedom-job/${id}/op/check`;
return fetch.put(url, options);
}
//批量岗位导入
export const batchResultImport = ( options = {}) => {
const url = SOCIALWORK_PATH + '/payment-import';
return fetch.post(url, options);
}
// 导入银行流水的操作
export const batchExportWaterSure = ( options = {}) => {
const url = SOCIALWORK_PATH + '/payment-import';
return fetch.put(url, options);
}
//店铺管理列表
export const getMinishopListUtil = (params, options = {}) => {
const url = SOCIALWORK_PATH + '/minishop' + params;
return fetch.get(url, options);
}
//添加店铺
export const addMinishopUtil = ( options = {}) => {
const url = SOCIALWORK_PATH + '/minishop';
return fetch.post(url, options);
}
//编辑店铺
export const editMinishopUtil = ( params, options = {}) => {
const url = SOCIALWORK_PATH + '/minishop/' + params.id;
return fetch.put(url, params, options);
}
//用工池下载银行卡照片
export const loadDownLoadBankCardUtil = ( params, options = {}) => {
const url = 'api/walletmgm/bank_cards' + params;
return fetch.get(url, options);
}