Goodorder.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use EasyWeChat\Factory;
  5. use think\Db;
  6. /**
  7. * 商品订单
  8. *
  9. * @icon fa fa-circle-o
  10. */
  11. class Goodorder extends Backend
  12. {
  13. /**
  14. * Goodorder模型对象
  15. * @var \app\admin\model\Goodorder
  16. */
  17. protected $model = null;
  18. public function _initialize()
  19. {
  20. parent::_initialize();
  21. $this->model = new \app\admin\model\Goodorder;
  22. $this->view->assign("statusList", $this->model->getStatusList());
  23. }
  24. /**
  25. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  26. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  27. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  28. */
  29. /**
  30. * 查看
  31. */
  32. public function index()
  33. {
  34. //当前是否为关联查询
  35. $this->relationSearch = true;
  36. //设置过滤方法
  37. $this->request->filter(['strip_tags', 'trim']);
  38. if ($this->request->isAjax()) {
  39. //如果发送的来源是Selectpage,则转发到Selectpage
  40. if ($this->request->request('keyField')) {
  41. return $this->selectpage();
  42. }
  43. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  44. $list = $this->model
  45. ->with(['user'])
  46. ->where($where)
  47. ->order($sort, $order)
  48. ->paginate($limit);
  49. foreach ($list as $row) {
  50. $row->getRelation('user')->visible(['username']);
  51. }
  52. $result = array("total" => $list->total(), "rows" => $list->items());
  53. return json($result);
  54. }
  55. return $this->view->fetch();
  56. }
  57. public function refund()
  58. {
  59. $ids = input('ids');
  60. $row = $this->model->get($ids);
  61. if(!empty($row)){
  62. $row = $row->toArray();
  63. }
  64. //提交验证
  65. if (!$row) {
  66. $this->error(__('No Results were found'));
  67. }
  68. if (!$this->auth->id) {
  69. $this->error(__('You have no permission'));
  70. }
  71. if ($this->request->isPost()) {
  72. $params = $this->request->post('row/a');
  73. if($params['status']==1) {
  74. //必要配置
  75. $config = [
  76. 'app_id' => 'wxdc450b7c5d0a0f80',
  77. 'mch_id' => '1635096198',
  78. 'key' => 'e3NkU3L7vmz84H92kfKT5d9qBCOmvdEB', // API v2 密钥 (注意: 是v2密钥 是v2密钥 是v2密钥)
  79. 'cert_path' => common_url().'/cert/apiclient_cert.pem', // XXX: 绝对路径!!!!
  80. 'key_path' => common_url().'/cert/apiclient_key.pem', // XXX: 绝对路径!!!
  81. 'notify_url' => common_url() . '/api/Notice/tableware_notify', // 你也可以在下单时单独设置来想覆盖它
  82. ];
  83. $app = Factory::payment($config);
  84. $refund_no = 'TK' . pay_no(999);
  85. $result = $app->refund->byOutTradeNumber($row['pay_no'], $refund_no, $row['total'], $params['refund_money'], [
  86. // 可在此处传入其他参数,详细参数见微信支付文档
  87. 'refund_desc' => '退款',
  88. ]);
  89. $this->model->save(['status'=>7],['id'=>$ids]);
  90. $this->success('退款成功', 'index');
  91. }
  92. else{
  93. $this->model->save(['status'=>3],['id'=>$ids]);
  94. $this->success('退款驳回','index');
  95. }
  96. }
  97. // print_r($row);die;
  98. $this->view->assign("row", $row);
  99. return $this->view->fetch('refund');
  100. }
  101. }