amoeba.js
8.4 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
import React, { Component } from 'react';
import {
selectCustomerListApi, // 列表
customerDetailApi, // 客户详情
customerOperateApi, // 放弃 终止 加入黑名单 恢复白名单 申领
addNewCustomerApi, // 新增客户
selectCompanyApi, // 归属阿米巴
getContactsListApi, // 查看详情 ---> 联系人
editContactsApi, // 查看详情 --> 联系人 --> 编辑
addContactsApi, // 新增联系人
searchCompanyApi, // 企查查
addVisitHistoryApi, // 添加拜访记录
baseInfoApi, // 查看详情 的 基本信息
applyOperateApi, // 申领
terminateOperateApi, // 终止
abandonOperateApi, // 放弃
blacklistOperateApi, // 黑名单
whitelistOperateApi, // 白名单
shareCustomerApi, // 请求共享客户
reApplicationApi, // 重新申请
chargePersonApi, // 查看详情中的负责人
editBaseInfoApi, // 编辑详情中的基本信息
} from '../../utils/amoebaUtils';
import {
CATCH_ERROR, // 错误信息
FETCH_DATA, //
SAVE_CUSTOMER_LIST, // 客户列表
CUSTOMER_DETAIL, // 客户详情
SELECT_COMPANY, // 归属阿米巴
CONTACTS_LIST, // 查看详情 --> 联系人
EDIT_CONTACTS, // 查看详情 --> 联系人 --> 编辑联系人
} from '../constants/ActionTypes';
import { change, destroy } from "redux-form";
import { copyFileSync } from 'fs';
import { notification } from 'antd';
import { NotificationIcon } from '../../utils/comonOtherUtil';
function catchError(error) {
return {
type: CATCH_ERROR,
payload: { error }
}
}
function saveCustomerList(params) {
return {
type: SAVE_CUSTOMER_LIST,
payload: {
customerList: params.customerList,
}
}
}
function saveCustomerDetail(params) {
return {
type: CUSTOMER_DETAIL,
payload: {
...params
}
}
}
/**
* 客户列表
*/
export function selectCustomerList(params) {
return async (dispatch) => {
try {
const res = await selectCustomerListApi(params);
console.log('客户类表', res)
dispatch(
saveCustomerList({
customerList: res.items,
})
)
dispatch(change('customer_container_search', 'total_count', res.total_count))
} catch (err) {
dispatch(catchError(err));
throw Error(err);
}
}
}
/*
* 查看中的公司信息 && 新增客户的查看详情
*/
export const customerDetail = (key_no) => {
return async (dispatch) => {
try {
const res = await customerDetailApi(key_no);
dispatch(change('step_one', 'company_detail', res));
} catch (err) {
// dispatch(catchError(err));
throw Error(err);
}
}
}
/*
* 放弃 加入黑名单 恢复白名单 终止
*/
export function customerOperate(id, data) {
console.log('data0000', data)
return async (dispatch) => {
try {
await customerOperateApi(id, data);
return data
} catch (err) {
dispatch(catchError(err));
throw Error(err);
}
}
}
// 申领
export function applyOperate(id, data) {
return async (dispatch) => {
try {
await applyOperateApi(id, data);
return data
} catch (err) {
dispatch(catchError(err));
throw Error(err);
}
}
}
// 终止
export function terminateOperate(id, data) {
return async (dispatch) => {
try {
await terminateOperateApi(id, data);
return data
} catch (err) {
dispatch(catchError(err));
throw Error(err);
}
}
}
// 放弃
export function abandonOperate(id, data) {
return async (dispatch) => {
try {
await abandonOperateApi(id, data);
return data
} catch (err) {
dispatch(catchError(err));
throw Error(err);
}
}
}
// 黑名单
export function blacklistOperate(id, data) {
return async (dispatch) => {
try {
await blacklistOperateApi(id, data);
return data
} catch (err) {
dispatch(catchError(err));
throw Error(err);
}
}
}
// 白名单
export function whitelistOperate(id, data) {
return async (dispatch) => {
try {
await whitelistOperateApi(id, data);
return data
} catch (err) {
dispatch(catchError(err));
throw Error(err);
}
}
}
/**
* 新建客户
*/
export function addNewCustomer(params) {
return async (dispatch) => {
const res = await addNewCustomerApi(params) || { code: 404, message: '未返回数据' };
if (res.code && res.code >= 300) {
notification.open({
message: '错误',
description: '创建失败,' + res.message,
icon: <NotificationIcon type='error' />,
})
} else {
notification.open({
message: '成功',
description: '创建成功',
icon: <NotificationIcon type='success' />,
})
window.location.href = '#/container/amoeba';
return res;
}
}
}
/**
* 归属阿米巴
*/
export function selectCompanyList() {
return async (dispatch) => {
const res = await selectCompanyApi();
const { admin_orgs } = res;
admin_orgs.map(x => {
x.id = x.org_id;
x.name = x.org;
})
dispatch({
type: SELECT_COMPANY,
payload: {
admin_orgs
}
});
return admin_orgs
}
}
/**
*
* 新增联系人
*/
export function addNewContacts(id, params) {
return async (dispatch) => {
const res = await addContactsApi(id, params);
}
}
/**
* 查看详情中的联系人
*/
export function getContactsList(id) {
console.log('这是action', id)
return async (dispatch) => {
const res = await getContactsListApi(id);
console.log('res', res);
dispatch({
type: CONTACTS_LIST,
payload: {
contactsList: res.items
}
})
dispatch(change('amoeba_contacts', 'total_count', res.total_count));
}
}
/**
*
* 编辑联系人
*/
export function editContacts(customer_id, contact_id, params) {
return async (dispatch) => {
const res = await editContactsApi(customer_id, contact_id, params);
dispatch({
type: EDIT_CONTACTS,
payload: {
name: res.name,
mobile: res.mobile,
extra: res.extra
}
})
}
}
/**
* 企查查接口
*/
export function searchCompanyList(params) {
return async (dispatch) => {
const res = await searchCompanyApi(params);
dispatch(change('step_one', 'company_list', res.items))
dispatch(change('step_one', 'total_count', res.total_count))
return res
}
}
/**
* 添加拜访记录
*/
export function addVisitHistory(data) {
return async (dispatch) => {
await addVisitHistoryApi(data)
return data
}
}
/**
* 查看详情 ---> 基本信息
*/
export function baseInfoProfiles(id) {
return async (dispatch) => {
const companyBaseInfo = await baseInfoApi(id);
dispatch(change('amoeba_baseInfo', 'base_info', companyBaseInfo));
}
}
/**
* 编辑基本信息
*/
export function editCustomerBaseInfo(id, data) {
return async () => {
await editBaseInfoApi(id, data)
}
}
/**
* 申领
*/
export function applyOperation(id, params) {
return async (dispatch) => {
await applyOperationApi(id, params)
}
}
/**
* 共享客户
*/
export function shareCustomer(params) {
// /crm/v1/customer-share
return async (dispatch) => {
await shareCustomerApi(params);
}
}
/**
* 重新申请
*/
export function reApplication(id, params) {
return async (dispatch) => {
await reApplicationApi(id, params);
}
}
/**
* 查看详情中的负责人
*/
export function chargePerson(id) {
return async (dispatch) => {
const res = await chargePersonApi(id) || {};
const { items = [] } = res;
//销售负责人biz、服务负责人service、服务操作人service-operator、雇员服务负责人emp-service、雇员服务操作人emp-service-operator
let all_emps = [], biz_emps = [], service_emps = [], service_operator_emps = [], emp_service_emps = [], emp_service_operator_emps = [];
items && items.map(data => {
if (data.type == 'biz') {//销售负责人
biz_emps.push(data);
} else if (data.type == 'service') {//服务负责人
service_emps.push(data);
} else if (data.type == 'service-operator') {//服务操作人
service_operator_emps.push(data);
} else if (data.type == 'emp-service') {//雇员服务负责人
emp_service_emps.push(data);
} else if (data.type == 'emp-service-operator') {//雇员服务操作人
emp_service_operator_emps.push(data);
}
});
all_emps.push({ 'type': '销售负责人', 'key': 'biz', 'items': biz_emps });
all_emps.push({ 'type': '服务负责人', 'key': 'service', 'items': service_emps });
all_emps.push({ 'type': '服务操作人', 'key': 'service-operator', 'items': service_operator_emps });
all_emps.push({ 'type': '雇员服务负责人', 'key': 'emp-service', 'items': emp_service_emps });
all_emps.push({ 'type': '雇员服务操作人', 'key': 'emp-service-operator', 'items': emp_service_operator_emps });
dispatch(change('charge_person_form', 'chargePerson', { ...res, all_emps }));
}
}