Work.php
14.7 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
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Work extends CI_Controller
{
public function __construct()
{
parent::__construct();
// $this->load->model();
}
/**
* 控制台默认页面
*/
public function index($state = null)
{
switch ($state) {
case 1:
$this->load->view('work/待审核');
break;
case 2:
$this->load->view('work/待补录');
break;
case 3:
$this->load->view('work/待提交');
break;
case 4:
$this->load->view('work/待初审');
break;
case 5:
$this->load->view('work/待复审');
break;
case 6:
$this->load->view('work/待终审');
break;
case 7:
$this->load->view('work/待尽调');
break;
case 8:
$this->load->view('work/待客户确认');
break;
case 9:
$this->load->view('work/放款中');
break;
case 10:
$this->load->view('work/待确认放款');
break;
case 11:
$this->load->view('work/审批拒绝');
break;
case 12:
$this->load->view('work/已取消');
break;
case 13:
$this->load->view('work/已流单');
break;
default:
$this->load->view('work/index');
break;
}
}
public function workbench()
{
$this->load->view('work/工作台');
}
/**
* 开始进件
*
* @return void
*/
public function add()
{
$this->load->view('work/add');
}
/**
* 开始进件
*
* @return void
*/
public function added()
{
$this->load->view('work/added');
}
/**
* 订单详情
*/
public function detail($id = null)
{
$info = array();
$url = $this->config->item('apiBaseUrl') . 'order/detail/' . $id;
/*$context = stream_context_create(array(
'http' => array(
'method' => 'POST',
'header' => 'Content-type:application/x-www-form-urlencoded',
'content' => http_build_query($info),
'timeout' => 20
)
));*/
$result = file_get_contents($url);
$json = json_decode($result);
$ret = $json->data;
if (!$ret->clientUnitOutputVO) {
$ret->clientUnitOutputVO = array();
}
if (!$ret->clientContactOutputVOS) {
$ret->clientContactOutputVOS = array();
}
$recordUrl = $this->config->item('apiBaseUrl') . 'order/orderOperatorRecord/' . $id;
$result2 = file_get_contents($recordUrl);
$json2 = json_decode($result2);
$ret2 = $json2->data;
$data = array(
'clientInfoOutputVO' => $ret->clientInfoOutputVO,
'clientUnitOutputVO' => $ret->clientUnitOutputVO,
'clientContactOutputVOS' => $ret->clientContactOutputVOS,
'applyOrderVO' => $ret->orderVO,
'operatorRecord' => $ret2
);
$this->load->view('work/订单详情', $data);
}
/**
* 资料补录
*/
public function record($id = null)
{
$url = $this->config->item('apiBaseUrl') . 'order/detail/' . $id;
$result = file_get_contents($url);
$json = json_decode($result);
$ret = $json->data;
if (!$ret->clientUnitOutputVO) {
$ret->clientUnitOutputVO = array();
}
if (!$ret->clientContactOutputVOS) {
$ret->clientContactOutputVOS = array();
}
$recordUrl = $this->config->item('apiBaseUrl') . 'order/orderOperatorRecord/' . $id;
$result2 = file_get_contents($recordUrl);
$json2 = json_decode($result2);
$ret2 = isset($json2->data) ? $json2 : array();
$data = array(
'clientInfoOutputVO' => $ret->clientInfoOutputVO,
'clientUnitOutputVO' => $ret->clientUnitOutputVO,
'clientContactOutputVOS' => $ret->clientContactOutputVOS,
'applyOrderVO' => $ret->orderVO,
'operatorRecord' => $ret2,
'id' => $id
);
$this->load->view('work/资料/资料补录', $data);
}
public function recorded($id = null)
{
$this->load->view('work/资料/资料补录结果');
}
public function check($state = null, $id = null)
{
$url = $this->config->item('apiBaseUrl') . 'order/detail/' . $id;
$result = file_get_contents($url);
$json = json_decode($result);
$ret = $json->data;
$data = array();
if ($ret) {
if (!$ret->clientUnitOutputVO) {
$ret->clientUnitOutputVO = array();
}
if (!$ret->clientContactOutputVOS) {
$ret->clientContactOutputVOS = array();
}
if (!$ret->clientInfoOutputVO) {
$ret->clientInfoOutputVO = array();
}
if (!$ret->orderVO) {
$ret->orderVO = array();
}
$url2 = $this->config->item('apiBaseUrl') . 'audit/creditReport/' . $id;
$result2 = file_get_contents($url2);
$json2 = json_decode($result2);
$ret2 = $json2->data;
if ($ret2) {
$credit = $ret2;
} else{
$credit = array();
}
$url3 = $this->config->item('apiBaseUrl') . 'dueDiligence/' . $id;
$result3 = file_get_contents($url3);
$json3 = json_decode($result3);
$dueDiligence = $json3->data;
$data = array(
'clientInfoOutputVO' => $ret->clientInfoOutputVO,
'clientUnitOutputVO' => $ret->clientUnitOutputVO,
'clientContactOutputVOS' => $ret->clientContactOutputVOS,
'applyOrderVO' => $ret->orderVO,
'credit'=> $credit,//信用报告
'id' => $id,
'dueDiligence'=>$dueDiligence //尽调报告
);
}
// var_dump($ret);exit;
switch ($state) {
case 1:
$this->load->view('work/审批/资料清单', $data);
break;
case 2:
$this->load->view('work/审批/基本信息', $data);
break;
case 3:
$this->load->view('work/审批/人脉圈', $data);
break;
case 4:
$this->load->view('work/审批/风险识别', $data);
break;
case 5:
$this->load->view('work/审批/交易记录', $data);
break;
case 6:
if($ret->orderVO->status == 4){
$this->load->view('work/审批/录入信用报告', $data);
} else{
if($ret->orderVO->status == 6){
//查询初审结果,复审结果
$getFirstCheckUrl = $this->config->item('apiBaseUrl') . 'flow/getFirstCheck/' . $id;
$getFirstCheckResult = file_get_contents($getFirstCheckUrl);
$getFirstCheckResult = json_decode($getFirstCheckResult);
$getFirstCheck = $getFirstCheckResult->data;
$data['getFirstCheck'] = $getFirstCheck;
//查询初审结果,复审结果
$getSecondCheckUrl = $this->config->item('apiBaseUrl') . 'flow/getSecoundCheck/' . $id;
$getSecondCheckResult = file_get_contents($getSecondCheckUrl);
$getSecondCheckResult = json_decode($getSecondCheckResult);
$getSecondCheck = $getSecondCheckResult->data;
$data['getSecondCheck'] = $getSecondCheck;
$this->load->view('work/审批/终审意见', $data);
}else{
$this->load->view('work/审批/意见', $data);
}
}
break;
case 7:
$this->load->view('work/审批/网查筛选', $data);
break;
case 8:
$url = $this->config->item('apiBaseUrl') . 'audit/phoneAudit/record/' . $id;
$result = file_get_contents($url);
$json = json_decode($result);
$ret = $json->data;
$data['record'] = $ret;
$this->load->view('work/审批/电核', $data);
break;
case 9:
$this->load->view('work/审批/意见', $data);
break;
case 12:
$this->load->view('work/审批/意见结果', $data);
break;
case 10:
$this->load->view('work/审批/复审', $data);
break;
case 11:
$this->load->view('work/审批/终审', $data);
break;
}
}
public function telAdd($id)
{
$data = array('id'=>$id);
$this->load->view('work/审批/电核添加', $data);
}
public function telRefuse()
{
$this->load->view('work/审批/拒绝');
}
public function verify($id = null)
{
$url = $this->config->item('apiBaseUrl') . 'order/detail/' . $id;
$result = file_get_contents($url);
$json = json_decode($result);
$ret = $json->data;
if (!$ret->clientUnitOutputVO) {
$ret->clientUnitOutputVO = array();
}
if (!$ret->clientContactOutputVOS) {
$ret->clientContactOutputVOS = array();
}
//查询还款计划表
$str = 'borrowAmount=' . $ret->orderVO->agreeMoney . '&productId=' . $ret->orderVO->productId . '&loanDeadline=' . $ret->orderVO->deadline;
$url2 = $this->config->item('apiBaseUrl') . 'application/tool/interest?' . $str;
$result2 = file_get_contents($url2);
$json2 = json_decode($result2);
$ret2 = $json2->data;
// var_dump($url2, $ret2);
$data = array(
'clientInfoOutputVO' => $ret->clientInfoOutputVO,
'clientUnitOutputVO' => $ret->clientUnitOutputVO,
'clientContactOutputVOS' => $ret->clientContactOutputVOS,
'applyOrderVO' => $ret->orderVO,
'plan'=>$ret2,
'id'=>$id
);
$this->load->view('work/客户确认/客户确认', $data);
}
public function move($id)
{
$url = $this->config->item('apiBaseUrl') . 'order/detail/' . $id;
$result = file_get_contents($url);
$json = json_decode($result);
$ret = $json->data;
if (!$ret->clientUnitOutputVO) {
$ret->clientUnitOutputVO = array();
}
if (!$ret->clientContactOutputVOS) {
$ret->clientContactOutputVOS = array();
}
//查询还款计划表
$str = 'borrowAmount=' . $ret->orderVO->agreeMoney . '&productId=' . $ret->orderVO->productId . '&loanDeadline=' . $ret->orderVO->deadline;
$url2 = $this->config->item('apiBaseUrl') . 'application/tool/interest?' . $str;
$result2 = file_get_contents($url2);
$json2 = json_decode($result2);
$ret2 = $json2->data;
$data = array(
'clientInfoOutputVO' => $ret->clientInfoOutputVO,
'clientUnitOutputVO' => $ret->clientUnitOutputVO,
'clientContactOutputVOS' => $ret->clientContactOutputVOS,
'applyOrderVO' => $ret->orderVO,
'plan'=>$ret2,
'id'=>$id
);
$this->load->view('work/资料/资料移交', $data);
}
public function side($state = null)
{
switch ($state) {
case '1':
$this->load->view('work/预审管理');
break;
case '2':
$this->load->view('work/资料补录');
break;
case '3':
$this->load->view('work/初审');
break;
case '4':
$this->load->view('work/复审');
break;
case '5':
$this->load->view('work/终审');
break;
case '6':
$this->load->view('work/尽调管理');
break;
case '7':
$this->load->view('work/客户确认');
break;
case '8':
$this->load->view('work/等待放款');
break;
case '9':
$this->load->view('work/确认放款');
break;
}
}
public function task()
{
$this->load->view('work/任务管理');
}
public function appoint()
{
$this->load->view('work/派单');
}
public function loan($id)
{
$url = $this->config->item('apiBaseUrl') . 'flow/getWaitLoan/' . $id;
$result = file_get_contents($url);
$json = json_decode($result);
$ret = $json->data;
$data = array(
'item' => $ret,
'id'=>$id
);
$this->load->view('work/线下已放款', $data);
}
public function data()
{
$draw = $_GET['draw'];
$data['recordsTotal'] = 57;
$data['recordsFiltered'] = 57;
$start = $_GET['start'] ? $_GET['start'] : 0;
$data['data'] = array();
for ($i = 0; $i < 57; $i++) {
if ($i >= $start && $i < $start + 10) {
$arr = array(
'id' => $i,
'name' => '小明' . $i
);
$data['data'][] = $arr;
}
}
$data['draw'] = $draw + 1;
$this->output->set_content_type('application/json')->set_output(json_encode($data));
}
public function inquiry ($id)
{
$url = $this->config->item('apiBaseUrl') . 'order/detail/' . $id;
$result = file_get_contents($url);
$json = json_decode($result);
$ret = $json->data;
if (!$ret->clientUnitOutputVO) {
$ret->clientUnitOutputVO = array();
}
if (!$ret->clientContactOutputVOS) {
$ret->clientContactOutputVOS = array();
}
$data = array(
'clientInfoOutputVO' => $ret->clientInfoOutputVO,
'clientUnitOutputVO' => $ret->clientUnitOutputVO,
'clientContactOutputVOS' => $ret->clientContactOutputVOS,
'applyOrderVO' => $ret->orderVO,
'id'=>$id
);
$this->load->view('/work/尽调报告/index', $data);
}
}