OfflineOrderRefund.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <?php
  2. namespace app\purchase\controller;
  3. use app\common\model\OfflineOrderItem;
  4. use app\common\model\SystemUser;
  5. use app\common\service\PurchaseLogic;
  6. use library\tools\Data;
  7. use think\Db;
  8. use function AlibabaCloud\Client\value;
  9. /**
  10. * 线下订单管理
  11. * Class OfflineOrderRefund
  12. * @package app\purchase\controller
  13. */
  14. class OfflineOrderRefund extends PurBase
  15. {
  16. /**
  17. * 绑定数据表
  18. * @var string
  19. */
  20. protected $table = 'OfflineOrderRefund';
  21. /**
  22. * 线下订单列表
  23. * @auth true
  24. * @menu true
  25. * @throws \think\Exception
  26. * @throws \think\db\exception\DataNotFoundException
  27. * @throws \think\db\exception\ModelNotFoundException
  28. * @throws \think\exception\DbException
  29. * @throws \think\exception\PDOException
  30. */
  31. public function index()
  32. {
  33. $this->title = '线下订单列表';
  34. $this->supplier = Db::name('Supplier')->where('is_deleted',0)->column('name','id');
  35. $this->admin_arr =SystemUser::column('username','id');
  36. $this->admin_arr[0] = 'admin';
  37. $where = [];
  38. $where[] = ['r.is_deleted','=',0];
  39. $query = $this->_query($this->table)
  40. ->field('r.*,o.employee_user')
  41. ->alias('r')
  42. ->leftJoin('OfflineOrder o','o.id = r.order_id')
  43. ->where($where);
  44. $query->like('r.order_num');
  45. $query->order('r.id desc')->page();
  46. }
  47. /**
  48. * 数据列表处理
  49. * @auth true
  50. * @menu true
  51. * @param array $data
  52. * @throws \think\db\exception\DataNotFoundException
  53. * @throws \think\db\exception\ModelNotFoundException
  54. * @throws \think\exception\DbException
  55. */
  56. protected function _index_page_filter(&$data)
  57. {
  58. foreach ($data as &$v) {
  59. $v['list'] = OfflineOrderItem::where('order_id',$v['order_id'])->select()->toArray();
  60. }
  61. }
  62. /**
  63. * 审核
  64. * @auth true
  65. * @menu true
  66. * @throws \think\Exception
  67. * @throws \think\db\exception\DataNotFoundException
  68. * @throws \think\db\exception\ModelNotFoundException
  69. * @throws \think\exception\DbException
  70. * @throws \think\exception\PDOException
  71. */
  72. public function audit()
  73. {
  74. $this->title = '审核线下订单';
  75. $this->_form($this->table, 'audit');
  76. }
  77. /**
  78. * 删除
  79. * @auth true
  80. * @menu true
  81. * @throws \think\Exception
  82. * @throws \think\exception\PDOException
  83. */
  84. public function del()
  85. {
  86. $this->_save($this->table, ['is_deleted' => 1]);
  87. }
  88. /**
  89. * 表单数据处理
  90. * @auth true
  91. * @menu true
  92. * @param array $data
  93. */
  94. protected function _form_filter(&$data)
  95. {
  96. if($this->request->isGet()){
  97. $this->supplier = Db::name('Supplier')->where('is_deleted',0)->column('name','id');
  98. $this->item_list = [];
  99. }
  100. if($this->request->isPost()) {
  101. // 审核人id
  102. if($this->request->action() == 'audit') {
  103. $order_sh = \app\common\model\OfflineOrderRefund::where('id',$data['id'])->value('sh_status');
  104. if($order_sh == 1) $this->error('已审核通过,不能修改');
  105. $data['audit_user'] = $this->admin_user['id'];
  106. }
  107. }
  108. $data['create_at'] = date('Y-m-d H:i:s');
  109. }
  110. protected function _form_result($id)
  111. {
  112. // 采购订单审核通过后创建线下管理订单
  113. if($this->request->isPost() && $this->request->action() == 'audit') {
  114. $sh_status = input('sh_status');
  115. $res = PurchaseLogic::auditOfflineRefund($id,$sh_status,$this->request->post('remark'));
  116. $res['code'] == 200 ? $this->success($res['msg']):$this->error($res['msg']);
  117. }
  118. }
  119. }