169 lines
6.0 KiB
PHP
169 lines
6.0 KiB
PHP
<?php
|
|
|
|
namespace app\admin\controller;
|
|
|
|
use app\common\controller\Backend;
|
|
use think\Db;
|
|
|
|
/**
|
|
* 群发
|
|
*
|
|
* @icon fa fa-circle-o
|
|
*/
|
|
class Groupmessages extends Backend
|
|
{
|
|
|
|
/**
|
|
* Groupmessages模型对象
|
|
* @var \app\admin\model\Groupmessages
|
|
*/
|
|
protected $model = null;
|
|
|
|
public function _initialize()
|
|
{
|
|
parent::_initialize();
|
|
$this->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]);
|
|
// }
|
|
// }
|
|
|
|
|
|
}
|