123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <?php
- namespace app\api\controller;
- use app\admin\model\Method;
- use app\admin\model\Order;
- use app\common\controller\Api;
- use think\Db;
- use think\Exception;
- class Distribution extends Api
- {
- protected $noNeedLogin = [];
- protected $noNeedRight = ['*'];
- public function dist_list(){
- $dis_type = input('dis_type',1);
- $method_model = new Method();
- $user = $this->auth->getUser();
- $admin_id=$user->id;
- if($user->pid>0){
- $admin_id = $user->pid;
- }
- $list = $method_model->where(array('user_id'=>$admin_id,'type'=>2,'status'=>1,'dis_type'=>$dis_type))->whereIn('moshi','2,3')->paginate();
- $this->success('选择模式列表',$list);
- }
- public function order_list(){
- $method_id = input('method_id');
- $dis_model = new \app\admin\model\Distribution();
- $list = $dis_model->where('method_id',$method_id)->order('id,number','desc')->paginate();
- $this->success('列表',$list);
- }
- public function add_list(){
- $data = input();
- $dis_model = new \app\admin\model\Distribution();
- $dis_data= [
- 'method_id'=>$data['method_id'],
- 'title'=>'线下订单',
- 'phone'=>$data['phone'],
- 'type'=>2,
- ];
- $dis_model->insert($dis_data);
- $this->success('添加成功');
- }
- public function del_list(){
- $list_id = input('list_id');
- $dis_model = new \app\admin\model\Distribution();
- $dis_model->where('id',$list_id)->delete();
- $this->success('删除成功');
- }
- public function number_list(){
- $method_id = input('method_id');
- $dis_model = new \app\admin\model\Distribution();
- $list = $dis_model->where('method_id',$method_id)->order('id')->select();
- $array = $this->shuffle_assoc($list);
- Db::startTrans();
- try {
- $i = 1;
- foreach ($array as $k=>$v){
- $dis_model->isUpdate('true',['id'=>$array[$k]['id']])->save(['number'=>$i]);
- $i++;
- }
- $method_model = new Method();
- $method_model->isUpdate('true',['id'=>$method_id])->save(['dis_type'=>2]);
- Db::commit();
- $this->success('生成座位表');
- }catch (Exception $e){
- Db::rollback();
- $this->error('座位表生成失败');
- }
- }
- public function shuffle_assoc($list) {
- if (!is_array($list)) return $list;
- $keys = array_keys($list);
- shuffle($keys);
- $random = array();
- foreach ($keys as $key)
- $random[$key] = $this->shuffle_assoc($list[$key]);
- return $random;
- }
- public function zuowei_tongzhi(){
- $user = $this->auth->getUser();
- $method_id = input('method_id');
- $model = new \app\admin\model\Distribution();
- $method = $model
- ->alias('a')
- ->join('user b', 'a.phone = b.mobile', 'LEFT')
- ->join('method c', 'c.id = a.method_id', 'LEFT')
- ->field('a.phone,a.number,b.id as user_id,b.nickname,c.show_images')
- ->where("a.method_id",$method_id)
- ->select();
- if(empty($method)){
- $this->error('没有数据');
- }
- if($user->zhannei == 1){
- $message_model = new \app\admin\model\Message();
- foreach($method as $val){
- $user_name = $val->nickname??'';
- $message_data = [
- 'category_id'=>1,
- 'user_id'=>$val->user_id??0,
- 'title'=>'座位表生成通知',
- 'name'=>$user_name,
- 'image'=>$val->show_images??'',
- 'description'=>$user_name.'通知您座位表已经生成了',
- 'is_read'=>0,
- 'createtime'=>time(),
- ];
- $message_model->insert($message_data);
- }
- if($user->duanxin == 1){
- if(count($method) > $user->sms_number){
- $this->error('短信数量不足');
- }
- $user->sms_number -=count($method);
- $user->save();
- $sms= new Sms();
- $res = $sms->zuowei_tongzhi($method,$this->auth->id);
- if ($res) {
- $this->success('座位生成通知已发出');
- }
- }
- }
- }
- }
|