Cannelorder.php 5.5 KB

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