Cannelorder.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\model\User;
  4. use app\admin\model\UserRelations;
  5. use app\api\controller\Chuyutimedtask;
  6. use app\common\controller\Backend;
  7. use app\common\library\Token;
  8. use fast\Random;
  9. use think\Db;
  10. use think\Exception;
  11. /**
  12. * 店铺注销订单
  13. *
  14. * @icon fa fa-circle-o
  15. */
  16. class Cannelorder extends Backend
  17. {
  18. /**
  19. * Cannelorder模型对象
  20. * @var \app\admin\model\Cannelorder
  21. */
  22. protected $model = null;
  23. protected $searchFields = 'order_no';
  24. public function _initialize()
  25. {
  26. parent::_initialize();
  27. $this->model = new \app\admin\model\Cannelorder;
  28. $this->view->assign("statusList", $this->model->getStatusList());
  29. $this->view->assign("isOffsetList", $this->model->getIsOffsetList());
  30. $this->view->assign("timeoutList", $this->model->getTimeoutList());
  31. }
  32. /**
  33. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  34. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  35. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  36. */
  37. /**
  38. * 查看
  39. */
  40. public function index()
  41. {
  42. //当前是否为关联查询
  43. $this->relationSearch = true;
  44. //设置过滤方法
  45. $this->request->filter(['strip_tags', 'trim']);
  46. if ($this->request->isAjax()) {
  47. //如果发送的来源是Selectpage,则转发到Selectpage
  48. if ($this->request->request('keyField')) {
  49. return $this->selectpage();
  50. }
  51. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  52. $list = $this->model
  53. ->with(['user', 'buser'])
  54. ->where($where)
  55. ->order($sort, $order)
  56. ->paginate($limit);
  57. foreach ($list as $row) {
  58. $row->getRelation('user')->visible(['username', 'nickname']);
  59. $row->getRelation('buser')->visible(['username', 'nickname']);
  60. }
  61. $result = array("total" => $list->total(), "rows" => $list->items());
  62. return json($result);
  63. }
  64. return $this->view->fetch();
  65. }
  66. /**
  67. * 添加
  68. */
  69. public function add()
  70. {
  71. if ($this->request->isPost()) {
  72. $params = $this->request->post("row/a");
  73. if ($params) {
  74. // 查询是否提交过
  75. $count = $this->model->where(['c_user_id' => $params['c_user_id']])->count();
  76. if ($count > 0) {
  77. $this->error('商户已申请过');
  78. }
  79. Db::startTrans();
  80. try {
  81. $params['order_no'] = 'ZX' . order_no(Random::numeric(4));
  82. $params['createtime'] = time();
  83. $this->model->insert($params);
  84. Db::commit();
  85. } catch (\Exception $e) {
  86. Db::rollback();
  87. $this->error($e->getMessage());
  88. }
  89. $this->success();
  90. }
  91. $this->error(__('Parameter %s can not be empty', ''));
  92. }
  93. return $this->view->fetch();
  94. }
  95. /**
  96. * 确认清点金额
  97. */
  98. public function confirm_amount($ids)
  99. {
  100. $row = $this->model->get(['id' => $ids]);
  101. if (!$row) {
  102. $this->error(__('No Results were found'));
  103. }
  104. if ($this->request->isPost()) {
  105. $params = $this->request->post('row/a');
  106. if (empty($params)) {
  107. $this->error(__('Parameter %s can not be empty', ''));
  108. }
  109. $params = $this->preExcludeFields($params);
  110. $params['status'] = 3;
  111. $this->model->allowField(true)->isUpdate(true)->save($params);
  112. $this->success("成功", null, ['id' => $ids]);
  113. }
  114. $this->view->assign("row", $row->toArray());
  115. return $this->view->fetch();
  116. }
  117. /**
  118. * 确认已退款
  119. */
  120. public function confirm_refund($ids)
  121. {
  122. $row = $this->model->get(['id' => $ids]);
  123. if (!$row) {
  124. $this->error(__('No Results were found'));
  125. }
  126. if ($this->request->isAjax()) {
  127. Db::startTrans();
  128. try {
  129. // 修改 注销订单状态
  130. $param = [
  131. 'status' => 4,
  132. 'id' => $ids,
  133. ];
  134. $this->model->allowField(true)->isUpdate(true)->save($param);
  135. $c_user_id = $row['c_user_id'];
  136. // 修改商户信息
  137. $user_param = [
  138. 'cancel_shop' => 1,
  139. 'id' => $c_user_id,
  140. ];
  141. $user_model = new User();
  142. $user_model->allowField(true)->isUpdate(true)->save($user_param);
  143. // 修改b端 - c端 关系
  144. $user_re_param = ['status' => 2];
  145. $user_re_model = new UserRelations();
  146. $user_re_model->allowField(true)->isUpdate(true)->save($user_re_param, ['c_user_id' => $c_user_id]);
  147. // 删除会员指定的所有Token
  148. Token::clear($c_user_id);
  149. // 发送短信
  150. $sms_model = new Chuyutimedtask();
  151. $user_model = new User();
  152. $c_user_info = $user_model->field('id,mobile')->where('id',$c_user_id)->find();
  153. //$TemplateParam = json_encode('');
  154. $sms_model->SmsTemplate('SMS_263560039',$c_user_info->mobile,'');
  155. Db::commit();
  156. $this->success("成功", null, ['id' => $ids]);
  157. return;
  158. } catch (Exception $e) {
  159. Db::rollback();
  160. $this->error('失败');
  161. return;
  162. }
  163. }
  164. }
  165. }