diff --git a/superadmin/application/admin/controller/Firmcustomer.php b/superadmin/application/admin/controller/Firmcustomer.php index 2e02275..3e6dbd1 100755 --- a/superadmin/application/admin/controller/Firmcustomer.php +++ b/superadmin/application/admin/controller/Firmcustomer.php @@ -192,4 +192,101 @@ class Firmcustomer extends Backend //cache('cache_ai_customer_config_'.session_admin_firm_id(),$ai_config,86400); return json(Tools::set_ok('设置成功')); } + + /** 群发展示 + * @return string|\think\response\Json + * @throws Exception + * @throws \think\exception\DbException + */ + public function massagesindex() + { + //当前是否为关联查询 + $this->relationSearch = true; + //设置过滤方法 + $this->request->filter(['strip_tags', 'trim']); + if ($this->request->isAjax()) { + //如果发送的来源是Selectpage,则转发到Selectpage + if ($this->request->request('keyField')) { + return $this->selectpage(); + } + + list($where, $sort, $order, $offset, $limit) = $this->buildparams(); + + $list = $this->model + ->with(['firmstoreprojectstwo','firmcustomerorigin']); + $field = 'fa_firmcustomer.*'; + if (!empty(input('type'))){ + $massId = input('ids'); + $list = $list->join('fa_groupmessagescustomer gm','gm.customer_id = fa_firmcustomer.id','left') + ->where('gm.groupmessages_id','=',$massId) + ->whereNotNull('gm.id'); + $field = 'fa_firmcustomer.*,gm.status as gm_status,gm.send_time'; + } + + $list = $list->where($where) + ->field($field) + ->order($sort, $order) + ->paginate($limit); + + foreach ($list as $row) { +// $row->visible(['id','name','age','phone','rel_wx','rel_group','firmtags_ids','headimage','remark','responsible_pm','return_visit_content','status','create_time','admin_id']); +// $row->visible(['firmstoreprojectstwo']); + $row->getRelation('firmstoreprojectstwo')->visible(['name']); +// $row->visible(['firmcustomerorigin']); + $row->getRelation('firmcustomerorigin')->visible(['name']); + } + + $result = array("total" => $list->total(), "rows" => $list->items()); + + return json($result); + } + $this->view->assign('type',empty(input('type'))?0:1); + return $this->view->fetch(); + } + public function massagesindexnot() + { + //当前是否为关联查询 + $this->relationSearch = true; + //设置过滤方法 + $this->request->filter(['strip_tags', 'trim']); + if ($this->request->isAjax()) { + //如果发送的来源是Selectpage,则转发到Selectpage + if ($this->request->request('keyField')) { + return $this->selectpage(); + } + + list($where, $sort, $order, $offset, $limit) = $this->buildparams(); + + $list = $this->model + ->with(['firmstoreprojectstwo','firmcustomerorigin']); + $massId = input('ids'); + $messIds = Db::table('fa_groupmessagescustomer')->where('groupmessages_id',$massId)->column('customer_id'); + if (!empty($messIds)){ + $list = $list->whereNotIn('fa_firmcustomer.id',$messIds); + } + + $list = $list->where($where) + ->order($sort, $order) + ->paginate($limit); + + foreach ($list as $row) { + $row->visible(['id','name','age','phone','rel_wx','rel_group','firmtags_ids','headimage','remark','responsible_pm','return_visit_content','status','create_time','admin_id']); + $row->visible(['firmstoreprojectstwo']); + $row->getRelation('firmstoreprojectstwo')->visible(['name']); + $row->visible(['firmcustomerorigin']); + $row->getRelation('firmcustomerorigin')->visible(['name']); + //$row->visible(['admin']); + //$row->getRelation('admin')->visible(['nickname']); + $row->admin_id = Db::table('fa_admin')->where('id',$row->admin_id)->value('nickname'); + $row->responsible_pm = Db::table('fa_admin')->where('id',$row->responsible_pm)->value('nickname'); + } + + $result = array("total" => $list->total(), "rows" => $list->items(),'mess_id'=>$massId); + + return json($result); + } + $this->view->assign('mess_id',input('ids')); + return $this->view->fetch(); + } + } diff --git a/superadmin/application/admin/controller/Groupmessages.php b/superadmin/application/admin/controller/Groupmessages.php new file mode 100644 index 0000000..0d7c496 --- /dev/null +++ b/superadmin/application/admin/controller/Groupmessages.php @@ -0,0 +1,168 @@ +model = new \app\admin\model\Groupmessages; + + } + + + + /** + * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法 + * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑 + * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改 + */ + public function add() + { + if (false === $this->request->isPost()) { + $customerIds = $this->request->get('ids'); + $this->view->assign('customerIds',$customerIds); + return $this->view->fetch(); + } + $params = $this->request->post('row/a'); + $params['create_time'] = date('Y-m-d H:i:s'); + $params['admin_name'] = session('admin')['username']; + + if (empty($params)) { + $this->error(__('Parameter %s can not be empty', '')); + } + $params = $this->preExcludeFields($params); + + if ($this->dataLimit && $this->dataLimitFieldAutoFill) { + $params[$this->dataLimitField] = $this->auth->id; + } + $customer_ids = explode(',',$params['customer_ids']); + $dataList = []; + unset($params['customer_ids']); + foreach ($customer_ids as $value){ + $data = []; + $data['status'] ='pending'; + $data['customer_id'] = $value; + $dataList[]=$data; + } + $result = false; + Db::startTrans(); + try { + //是否采用模型验证 + if ($this->modelValidate) { + $name = str_replace("\\model\\", "\\validate\\", get_class($this->model)); + $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.add' : $name) : $this->modelValidate; + $this->model->validateFailException()->validate($validate); + } + $result = $this->model->allowField(true)->insertGetId($params); + if (!$result){ + Db::rollback(); + $this->error('添加失败,请重新操作'); + } + foreach ($dataList as $key=>&$value){ + $value['groupmessages_id'] = $result; + } + $contentResult = Db::table('fa_groupmessagescustomer')->insertAll($dataList); + if (!$contentResult){ + Db::rollback(); + $this->error('添加内容失败,请重新操作'); + } + Db::commit(); + } catch (ValidateException|PDOException|Exception $e) { + Db::rollback(); + $this->error($e->getMessage()); + } + if ($result === false) { + $this->error(__('No rows were inserted')); + } + $this->success(); + } + + /** + * @return string|void 再次发送的客户 + * @throws \think\Exception + */ + public function addagain() + { + if (false === $this->request->isPost()) { + $customerIds = $this->request->get('ids'); + $this->view->assign('customerIds',$customerIds); + return $this->view->fetch(); + } + $params = $this->request->post(); + if (empty($params)) { + $this->error(__('Parameter %s can not be empty', '')); + } + $params = $this->preExcludeFields($params); + if ($this->dataLimit && $this->dataLimitFieldAutoFill) { + $params[$this->dataLimitField] = $this->auth->id; + } + $mess_id = $params['mess_id']; + $messData = $this->model->where('id',$mess_id)->find(); + if (empty($messData)) { + $this->error(__('Parameter %s can not be empty', '')); + } + $customer_ids = explode(',',$params['customer_ids']); + $dataList = []; + unset($params['customer_ids']); + foreach ($customer_ids as $value){ + $data = []; + $data['status'] ='pending'; + $data['customer_id'] = $value; + $dataList[]=$data; + } + Db::startTrans(); + try { + //是否采用模型验证 + if ($this->modelValidate) { + $name = str_replace("\\model\\", "\\validate\\", get_class($this->model)); + $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.add' : $name) : $this->modelValidate; + $this->model->validateFailException()->validate($validate); + } + foreach ($dataList as $key=>&$value){ + $value['groupmessages_id'] = $mess_id; + } + $contentResult = Db::table('fa_groupmessagescustomer')->insertAll($dataList); + if (!$contentResult){ + Db::rollback(); + $this->error('添加内容失败,请重新操作'); + } + Db::commit(); + } catch (ValidateException|PDOException|Exception $e) { + Db::rollback(); + $this->error($e->getMessage()); + } + $this->success(); + } +// function sendMessages($params){ +// $sendList = Db::table('fa_groupmessages')->alias('gm') +// ->leftJoin('fa_firmcustomer fc','fc.id = gm.fa_firmcustomer') +// ->where('gm.create_time',$params['create_time']) +// ->where('gm.status','pending') +// ->field('fc.*,gm.id as groupmessages_id') +// ->select(); +// foreach ($sendList as $value){ +// Tools::log_to_write_txt(['客户注意事项,开始:$item'=>$customer_record]); +// $ret = (new Tasktimer())->postMatterText($customer_record,['content'=>$notesMsg],'注意事项'); +// Tools::log_to_write_txt(['客户注意事项,结束:$res'=>$ret]); +// } +// } + + +} diff --git a/superadmin/application/admin/lang/zh-cn/groupmessages.php b/superadmin/application/admin/lang/zh-cn/groupmessages.php new file mode 100644 index 0000000..2688416 --- /dev/null +++ b/superadmin/application/admin/lang/zh-cn/groupmessages.php @@ -0,0 +1,8 @@ + '主键', + 'Messages_content' => '信息内容', + 'Create_time' => '创建时间', + 'Admin_name' => '创建人名称' +]; diff --git a/superadmin/application/admin/model/Groupmessages.php b/superadmin/application/admin/model/Groupmessages.php new file mode 100644 index 0000000..e0aa742 --- /dev/null +++ b/superadmin/application/admin/model/Groupmessages.php @@ -0,0 +1,40 @@ + [], + 'edit' => [], + ]; + +} diff --git a/superadmin/application/admin/view/firmcustomer/massagesindex.html b/superadmin/application/admin/view/firmcustomer/massagesindex.html new file mode 100755 index 0000000..66b4171 --- /dev/null +++ b/superadmin/application/admin/view/firmcustomer/massagesindex.html @@ -0,0 +1,36 @@ +
+ +
+ {:build_heading(null,FALSE)} + +
+ + +
+
+
+
+
+ + {if $type==0} + + {/if} +
+ +
+
+
+ +
+
+
diff --git a/superadmin/application/admin/view/firmcustomer/massagesindexnot.html b/superadmin/application/admin/view/firmcustomer/massagesindexnot.html new file mode 100755 index 0000000..5323a00 --- /dev/null +++ b/superadmin/application/admin/view/firmcustomer/massagesindexnot.html @@ -0,0 +1,35 @@ +
+ +
+ {:build_heading(null,FALSE)} + +
+ + +
+
+
+
+
+ + +
+ +
+
+
+ +
+
+
diff --git a/superadmin/application/admin/view/groupmessages/add.html b/superadmin/application/admin/view/groupmessages/add.html new file mode 100644 index 0000000..597ccb6 --- /dev/null +++ b/superadmin/application/admin/view/groupmessages/add.html @@ -0,0 +1,15 @@ +
+ +
+ +
+ +
+
+ +
diff --git a/superadmin/application/admin/view/groupmessages/addagain.html b/superadmin/application/admin/view/groupmessages/addagain.html new file mode 100644 index 0000000..597ccb6 --- /dev/null +++ b/superadmin/application/admin/view/groupmessages/addagain.html @@ -0,0 +1,15 @@ +
+ +
+ +
+ +
+
+ +
diff --git a/superadmin/application/admin/view/groupmessages/edit.html b/superadmin/application/admin/view/groupmessages/edit.html new file mode 100644 index 0000000..9e0bd71 --- /dev/null +++ b/superadmin/application/admin/view/groupmessages/edit.html @@ -0,0 +1,27 @@ +
+ +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+ +
diff --git a/superadmin/application/admin/view/groupmessages/index.html b/superadmin/application/admin/view/groupmessages/index.html new file mode 100644 index 0000000..f47c910 --- /dev/null +++ b/superadmin/application/admin/view/groupmessages/index.html @@ -0,0 +1,26 @@ +
+ {:build_heading()} + +
+
+
+
+
+ + + + + + +
+ +
+
+
+ +
+
+
diff --git a/superadmin/public/assets/js/backend/firmcustomer.js b/superadmin/public/assets/js/backend/firmcustomer.js index 1e796cb..542a1a4 100755 --- a/superadmin/public/assets/js/backend/firmcustomer.js +++ b/superadmin/public/assets/js/backend/firmcustomer.js @@ -237,11 +237,138 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin edit: function () { Controller.api.bindevent(); }, + massagesindex: function () { + // 初始化表格参数配置 + Table.api.init({ + extend: { + index_url: 'firmcustomer/index' + location.search, + add_url: 'firmcustomer/add', + edit_url: 'firmcustomer/edit', + del_url: 'firmcustomer/del', + import_url: 'firmcustomer/import', + massagesindex_url: 'firmcustomer/massagesindex'+ location.search, + table: 'firmcustomer', + } + }); + + var table = $("#table"); + + // 初始化表格 + table.bootstrapTable({ + url: $.fn.bootstrapTable.defaults.extend.massagesindex_url, + pk: 'id', + sortName: 'id', + fixedColumns: true, + fixedRightNumber: 1, + pageSize: 200, + pageList:[200,300], + columns: [ + [ + {checkbox: true}, + {field: 'id', title: __('Id')}, + {field: 'name', title: __('Customer_name'), operate: 'LIKE'}, + {field: 'gm_status', title: '发送状态', }, + {field: 'send_time', title: '发送时间',}, + {field: 'phone', title: __('Phone'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content}, + {field: 'rel_wx', title: __('Rel_wx'), operate: 'LIKE'}, + {field: 'rel_group', title: __('Rel_group'), operate: 'LIKE'}, + {field: 'firmstoreprojectstwo.name', title: __('Firmstoreprojectstwo.name'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content}, + {field: 'firmcustomerorigin.name', title: __('Firmcustomerorigin.name'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content}, + {field: 'firmtags_ids', title: __('Firmtags_ids'), operate: 'LIKE'}, + {field: 'remark', title: __('Remark'), operate: 'LIKE'}, + {field: 'create_time', title: __('Create_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false}, + + ] + ] + }); + + // 为表格绑定事件 + Table.api.bindevent(table); + $('#submitButton').on('click', function () { + // 获取多选的数据 + var rows = $('#table').bootstrapTable('getSelections'); + var ids = []; + rows.forEach(function (row) { + ids.push(row.id); + }); + var url = 'groupmessages/add?ids=' + ids.join(','); + Fast.api.open(url); + }); + }, + massagesindexnot: function () { + // 初始化表格参数配置 + Table.api.init({ + extend: { + index_url: 'firmcustomer/index' + location.search, + add_url: 'firmcustomer/add', + edit_url: 'firmcustomer/edit', + del_url: 'firmcustomer/del', + import_url: 'firmcustomer/import', + massagesindexnot_url: 'firmcustomer/massagesindexnot'+ location.search, + table: 'firmcustomer', + } + }); + + var table = $("#table"); + + // 初始化表格 + table.bootstrapTable({ + url: $.fn.bootstrapTable.defaults.extend.massagesindexnot_url, + pk: 'id', + sortName: 'id', + fixedColumns: true, + fixedRightNumber: 1, + pageSize: 200, + pageList:[200,300], + columns: [ + [ + {checkbox: true}, + {field: 'id', title: __('Id')}, + {field: 'name', title: __('Customer_name'), operate: 'LIKE'}, + {field: 'phone', title: __('Phone'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content}, + {field: 'rel_wx', title: __('Rel_wx'), operate: 'LIKE'}, + {field: 'rel_group', title: __('Rel_group'), operate: 'LIKE'}, + {field: 'firmstoreprojectstwo.name', title: __('Firmstoreprojectstwo.name'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content}, + {field: 'firmcustomerorigin.name', title: __('Firmcustomerorigin.name'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content}, + {field: 'firmtags_ids', title: __('Firmtags_ids'), operate: 'LIKE'}, + {field: 'remark', title: __('Remark'), operate: 'LIKE'}, + {field: 'responsible_pm', title: __('Responsible_pm'), operate: 'LIKE'}, + {field: 'status', title: __('Status'), searchList: {"yes":__('Status yes'),"no":__('Status no')}, formatter: Table.api.formatter.status}, + {field: 'admin_id', title: __('责任人'), operate: 'LIKE'}, + {field: 'create_time', title: __('Create_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false}, + + ] + ] + }); + + // 为表格绑定事件 + Table.api.bindevent(table); + + $('#submitButton').on('click', function () { + // 获取多选的数据 + var mess_id = $('#mess_id').val(); + var rows = $('#table').bootstrapTable('getSelections'); + var ids = []; + rows.forEach(function (row) { + ids.push(row.id); + }); + $.post('groupmessages/addagain', {customer_ids: ids.join(','),mess_id:mess_id}, function (res) { + if (res.code == 1){ + layer.msg('发送成功',function (){ + location.reload(); + },300); + + }else { + layer.msg(res.msg); + } + }); + }); + }, api: { bindevent: function () { Form.api.bindevent($("form[role=form]")); } - } + }, }; return Controller; }); diff --git a/superadmin/public/assets/js/backend/groupmessages.js b/superadmin/public/assets/js/backend/groupmessages.js new file mode 100644 index 0000000..36f1132 --- /dev/null +++ b/superadmin/public/assets/js/backend/groupmessages.js @@ -0,0 +1,85 @@ +define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { + + var Controller = { + index: function () { + // 初始化表格参数配置 + Table.api.init({ + extend: { + index_url: 'groupmessages/index' + location.search, + add_url: 'groupmessages/add', + edit_url: 'groupmessages/edit', + del_url: 'groupmessages/del', + multi_url: 'groupmessages/multi', + import_url: 'groupmessages/import', + table: 'groupmessages', + } + }); + + var table = $("#table"); + + // 初始化表格 + table.bootstrapTable({ + url: $.fn.bootstrapTable.defaults.extend.index_url, + pk: 'id', + sortName: 'id', + columns: [ + [ + {checkbox: true}, + {field: 'id', title: __('Id')}, + {field: 'messages_content', title: __('messages_content'),}, + {field: 'create_time', title: __('Create_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false}, + {field: 'admin_name', title: __('Admin_name'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content}, + {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate, + buttons: [ + { + name: 'addSendTime', + text: __('已发送客户'), + title: __('已发送客户'), + classname: 'btn btn-xs btn-primary btn-dialog', + icon: 'fa fa-magic', + url: 'firmcustomer/massagesindex?type=1', + callback: function (data) { + Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"}); + }, + visible: function (row) { + //返回true时按钮显示,返回false隐藏 + return true; + } + }, + { + name: 'addSendTime', + text: __('未发送客户'), + title: __('未发送客户'), + classname: 'btn btn-xs btn-danger btn-dialog', + icon: 'fa fa-magic', + url: 'firmcustomer/massagesindexnot?type=1', + callback: function (data) { + Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"}); + }, + visible: function (row) { + //返回true时按钮显示,返回false隐藏 + return true; + } + }, + ]} + ] + ] + }); + + // 为表格绑定事件 + Table.api.bindevent(table); + }, + add: function () { + Controller.api.bindevent(); + }, + edit: function () { + Controller.api.bindevent(); + }, + api: { + bindevent: function () { + Form.api.bindevent($("form[role=form]")); + } + } + }; + return Controller; +});