record.js
16.0 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
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
var Controller = {
index: function () {
// 初始化表格参数配置
Table.api.init({
extend: {
index_url: 'facrm/clues/record/index',
del_url: 'facrm/clues/record/del'
}
});
//联系人
var contact = $("#table");
//在普通搜索渲染后
contact.on('post-common-search.bs.table', function (event, table) {
});
contact.bootstrapTable({
url: $.fn.bootstrapTable.defaults.extend.index_url,
pk: 'id',
sortName: 'id',
toolbar: '#toolbar',
queryParams: function (params) { // 请求服务器数据时发送的参数,可以在这里添加额外的查询参数,返回false则终止请求
//params.filter='{"customer_id":'+customer_id+'}';//只是查当前客户的联系人
return params
},
columns: [
[
{field: 'id', title: 'ID'},
{
field: 'types_id',
title: __('线索'),
align: 'left',
formatter: function (value, row, index) {
if (!row.clues) return '-';
value='<a href="javascript:void(0);" data-url="facrm/clues/index/edit/ids/' + row.types_id
+'" data-area="["98%","98%"]" class="btn-dialog" data-title="'+ row.clues.name+'">'+ row.clues.name+'('+row.types_id+')'+'</a>';
return value;
}, addclass: 'selectpage',
extend: 'data-source="facrm/clues/index" data-field="name"'
},
{field: 'content', title: __('content'), operate: 'LIKE',align: 'left'},
{field: 'create_user_id', title: __('创建人'),formatter: function (value, row, index) {
if (!row.create_user) return '-';
return row.create_user.nickname;
}, addclass: 'selectpage',
extend: 'data-source="facrm/common/selectpage/model/admin?type=children" data-field="nickname"'},
{field: 'create_time', title: __('创建时间'), formatter: Table.api.formatter.datetime, operate: 'RANGE', addclass: 'datetimerange', sortable: true,
extend: 'autocomplete="off"'},
{field: 'next_time', title: __('下次跟进'), formatter: Table.api.formatter.datetime, operate: 'RANGE', addclass: 'datetimerange', sortable: true,
extend: 'autocomplete="off"'},
{field: 'record_type', title: __('跟进类型'),formatter: function (v,r) {
return record_type_list[v];
},searchList: record_type_list},
{field: 'operate', title: __('Operate'), table: contact, align: 'left',
events: Table.api.events.operate,
buttons: [
{
name: 'files',
text: '附件',
title: '查看附件',
classname: 'btn btn-xs btn-success btn-dialog',
url:function (row) {
return 'facrm/clues/record/files/types/'+row.types+'/ids/'+row.id;
},
hidden:function (row) {
if (row.files.length<=0) return true;
}
},
],
formatter: Table.api.formatter.operate
}
]
],
//启用固定列
fixedColumns: true,
//固定右侧列数
fixedRightNumber: 1,
searchFormVisible:true, //打开搜索
});
// 初始化表格
contact.bootstrapTable();
Table.api.bindevent(contact);//当内容渲染完成后
// 绑定TAB事件
$('.panel-heading ul[data-field] li a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
var field = $(this).closest("ul").data("field");
var value = $(this).data("value");
$(".commonsearch-table input[name="+field+"]").val(value);
return false;
});
},
add: function () {
Controller.api.bindevent();
if ("undefined" == typeof clues_id){
clues_id=0;
}
Fast.api.ajax({
url: 'facrm/fields/get_fields_html',
data: {source: 'clues', 'id': clues_id,'tpl':"fields_12_2"}
}, function (data) {
$("#extend").html(data.html);
Form.api.bindevent($("#extend"));
return false;
});
$("#buttonshow").click(function () {
var hiddeninfo= $("#hiddeninfo");
hiddeninfo.toggle();
if(hiddeninfo.css('display') === 'none'){
$(this).text("显示更多");
}else{
$(this).text("隐藏信息");
}
});
// 初始化表格参数配置
Table.api.init({
extend: {
index_url: 'facrm/clues/record/index/clues_id/'+clues_id,
files_url:'facrm/clues/record/files/clues_id/'+clues_id,
}
});
var table = $("#tableflow");
// 初始化表格
table.bootstrapTable({
url: $.fn.bootstrapTable.defaults.extend.index_url,
pk: 'id',
sortName: 'id',
toolbar: '#toolbar1',
columns: [
[
{field: 'id', title: 'ID'},
{field: 'content', title: __('content'), operate: 'LIKE'},
{field: 'create_user.nickname', title: __('创建人'),operate:false},
{field: 'create_user_id', title: __('创建人'), visible:false,addclass: 'selectpage',
extend: 'data-source="facrm/common/selectpage/model/admin?type=children" data-field="nickname"'},
{field: 'create_time', title: __('创建时间'), formatter: Table.api.formatter.datetime, operate: 'RANGE', addclass: 'datetimerange', sortable: true,
extend: 'autocomplete="off"'},
{field: 'next_time', title: __('下次跟进'), formatter: Table.api.formatter.datetime, operate: 'RANGE', addclass: 'datetimerange', sortable: true,
extend: 'autocomplete="off"'},
{field: 'files', title: __('附件'),formatter: function (v,row) {
if (v.length>0) return '<a href="facrm/clues/record/files/types/'+row.types+'/ids/'+row.id+'" class="btn btn-success btn-dialog btn-xs"><i class="fa fa-file-image-o"></i> ' + __('附件') + '</a>';
},operate: false},
{field: 'record_type', title: __('跟进类型'),formatter: function (v,r) {
return record_type_list[v];
},searchList: record_type_list},
]
]
});
// 为表格绑定事件
Table.api.bindevent(table);
//附件
var files = $("#t-files");
files.bootstrapTable({
url: $.fn.bootstrapTable.defaults.extend.files_url,
pk: 'id',
sortName: 'id',
toolbar: '#toolbar-files',
//禁用默认搜索
search: false,
//启用普通表单搜索
commonSearch: false,
//可以控制是否默认显示搜索单表,false则隐藏,默认为false
searchFormVisible: false,
//分页大小
pageSize: 12,
showColumns: false,
showToggle: false,
showExport: false,
showSearch: false,
pagination: false,
columns: [
[
{field: 'url', title: __('预览'), formatter: Controller.api.formatter.thumb, operate: false},
{field: 'create_time', title: __('创建时间'), formatter: Table.api.formatter.datetime, operate: 'RANGE', addclass: 'datetimerange', sortable: true,
extend: 'autocomplete="off"'},
]
],
});
//发邮件|发信息
$(".btn-send-email,.btn-send-sms").click(function () {
var that = this;
var title = $(that).data('title') || $(that).attr("title") || __('操作');
var url = $(that).data('url');
var data = $(that).data() || {};
delete data.title,data.url;
parent.Fast.api.open(url+"?data="+encodeURI(JSON.stringify(data)), title, data);
});
//下一条线索
$(".btn-next").click(function () {
Fast.api.ajax({
url: $(this).data('url'),
data: {}
}, function (data) {
setTimeout("closetab()",'100');
Backend.api.addtabs('facrm/clues/record/add/ids/'+data.id,'跟进线索-'+data.name);
return false;
});
});
},
edit: function () {
},
files: function () {
},
calllog: function () {
// 初始化表格参数配置
Table.api.init({
extend: {
index_url: 'facrm/clues/record/calllog'+(Config.clues_id?"/clues_id/"+Config.clues_id:""),
multi_url: '',
table: '',
}
});
var table = $("#table");
// 初始化表格
table.bootstrapTable({
url: $.fn.bootstrapTable.defaults.extend.index_url,
pk: 'id',
sortName: 'id',
columns: [
[
{field: 'id', title: 'ID'},
{field: 'admin_id', title: __('员工'),addclass: 'selectpage',
formatter: function (v, r) {
if (!r.admin) return '-';
return r.admin.nickname;
},
extend: 'data-source="facrm/common/selectpage/model/admin?type=all" data-field="nickname" data-orderBy="id desc"'},
{field: 'from_exten', title: __('坐席工号'), operate: "LIKE"},
{field: 'call_no', title: __('号码'), operate: "LIKE"},
{
field: 'status',
title: __('Status'),
formatter: Table.api.formatter.status,
searchList: {0: __('未同步'), 1: __('已同步'), '-1': __('未接通')}
},
{
field: 'record_file',
title: __('录音'),
operate: "LIKE",
align: 'left',
formatter: function (value, row, index) {
if (!value) return '-';
if (!value || row.status!=1) return '-';
return '<a href="' + value
+ '" target="_blank" data-title="查看录音">查看录音</a>';
}
},
{field: 'call_time_length', title: __('通话时长(秒)'), operate: 'BETWEEN', sortable: true},
{
field: 'create_time',
title: __('创建时间'),
formatter: Table.api.formatter.datetime,
operate: 'RANGE',
addclass: 'datetimerange',
sortable: true
},
{
field: 'operate',
title: __('Operate'),
table: table,
events: Table.api.events.operate,
buttons: [{
name: 'logdetail',
text: __('Detail'),
icon: 'fa fa-list',
classname: 'btn btn-info btn-xs btn-detail btn-dialog',
url: 'facrm/setting/cloudcall/logdetail'
}],
formatter: Table.api.formatter.operate,
}
]
],
//启用固定列
fixedColumns: true,
//固定右侧列数
fixedRightNumber: 1,
});
// 为表格绑定事件
Table.api.bindevent(table);
},
api: {
bindevent: function () {
Form.api.bindevent($("form[role=form]"), function (data) {
$("#tableflow").bootstrapTable("refresh");
$("#record-content").val("");
return true;
});
//云呼
$(".cloudcall").click(function () {
var that = this;
var type = $(that).data('type');
var typeid = $(that).data('typeid');
var name = $(that).data('name');
var field = $(that).data('field');
Fast.api.ajax({
url: 'facrm/setting/cloudcall/call',
data: {type: type, typeid: typeid,field:field,name:name}
}, function (data) {
Toastr.success("呼叫成功!");
return false;
});
});
}
,
formatter: {
thumb: function (value, row, index) {
var reg = /\.(png|jpg|gif|jpeg|webp)$/;
if (reg.test(row.url)) {
return '<a href="' + row.fullurl + '" target="_blank"><img src="' + row.fullurl + '" alt="" style="max-height:90px;max-width:120px"></a>';
} else {
return '<a href="' + row.fullurl + '" target="_blank"><img src="' + Fast.api.fixurl("ajax/icon") + "?suffix=" + row.imagetype + '" alt="" style="max-height:90px;max-width:120px"></a>';
}
},
url: function (value, row, index) {
return '<a href="' + row.fullurl + '" target="_blank" class="label bg-green">' + row.url + '</a>';
},
filename: function (value, row, index) {
return '<div style="width:180px;margin:0 auto;text-align:center;overflow:hidden;white-space: nowrap;text-overflow: ellipsis;">' + Table.api.formatter.search.call(this, value, row, index) + '</div>';
},
}
}
};
return Controller;
});
function closetab(){
top.window.$("ul.nav-addtabs li.active").prev().find(".close-tab").trigger("click");
}