Orderbacklog.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use think\Db;
  5. /**
  6. * 订单提前还车日志
  7. *
  8. * @icon fa fa-circle-o
  9. */
  10. class Orderbacklog extends Backend
  11. {
  12. /**
  13. * Orderbacklog模型对象
  14. * @var \app\admin\model\Orderbacklog
  15. */
  16. protected $model = null;
  17. public function _initialize()
  18. {
  19. parent::_initialize();
  20. $this->model = new \app\admin\model\Orderbacklog;
  21. $this->view->assign("statusList", $this->model->getStatusList());
  22. }
  23. /**
  24. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  25. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  26. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  27. */
  28. /**
  29. * 查看
  30. */
  31. public function index()
  32. {
  33. //当前是否为关联查询
  34. $this->relationSearch = true;
  35. //设置过滤方法
  36. $this->request->filter(['strip_tags', 'trim']);
  37. if ($this->request->isAjax()) {
  38. //如果发送的来源是Selectpage,则转发到Selectpage
  39. if ($this->request->request('keyField')) {
  40. return $this->selectpage();
  41. }
  42. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  43. //只能看自己的
  44. $where_op = [];
  45. if($this->auth->company_id){
  46. $where_op['order_back_log.company_id'] = $this->auth->company_id;
  47. }
  48. $list = $this->model
  49. ->with(['order','user','company'])
  50. ->where($where)
  51. ->where($where_op)
  52. ->order($sort, $order)
  53. ->paginate($limit);
  54. foreach ($list as $row) {
  55. $row->getRelation('order')->visible(['orderno']);
  56. $row->getRelation('user')->visible(['username']);
  57. $row->getRelation('company')->visible(['name']);
  58. }
  59. $result = array("total" => $list->total(), "rows" => $list->items());
  60. return json($result);
  61. }
  62. return $this->view->fetch();
  63. }
  64. /**
  65. * 一次退款
  66. */
  67. public function refund(){
  68. $id = input('id',0);
  69. if($this->request->isPost()){
  70. $refund_money = input('back_fee',0);
  71. $remark = input('remark','');
  72. $backlog = Db::name('order_back_log')->where('id',$id)->find();
  73. $order = Db::name('order')->where('id', $backlog['order_id'])->find();
  74. if($order['status'] == 30){
  75. $this->error('订单已经还车,不能提前还了');
  76. }
  77. if ($refund_money < 0) {
  78. $this->error('退款金额不能小于 0');
  79. }
  80. if ($refund_money > $order['pay_fee']) {
  81. $this->error('退款总金额不能大于实际支付金额'.$order['pay_fee']);
  82. }
  83. //
  84. $data = [
  85. 'back_fee' => $refund_money,
  86. 'status' => 1, //仅代表处理了,结果另说
  87. 'remark' => $remark,
  88. ];
  89. Db::name('order_back_log')->where('id',$id)->update($data);
  90. //修改总订单的还车时间
  91. Db::name('order')->where('id',$backlog['order_id'])->update(['endtime'=>$backlog['new_endtime']]);
  92. $this->success('处理完成');
  93. }
  94. $info = Db::name('order_back_log')->alias('c')
  95. ->field([
  96. 'c.id','c.old_endtime','c.new_endtime','c.back_price as back_back_price','c.back_base_price','c.back_pay_fee',
  97. 'order.orderno','order.starttime','order.endtime','order.lease_price',
  98. 'order.base_price','order.service_price','order.yajin_price','order.weizhang_price','order.get_price','order.back_price',
  99. 'order.total_fee','order.coupon_price','order.pay_fee'
  100. ])
  101. ->join('order','c.order_id = order.id','LEFT')->where('c.id',$id)->find();
  102. $this->view->assign('row',$info);
  103. return $this->view->fetch();
  104. }
  105. }