FinancialCancel.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. namespace app\cxinv\controller;
  3. use app\cxinv\model\FinancialTz;
  4. use app\cxinv\model\FinancialManager;
  5. use think\App;
  6. class FinancialCancel extends Base
  7. {
  8. public function __construct(App $app)
  9. {
  10. parent::__construct($app);
  11. $this->model = new \app\cxinv\model\FinancialCancel();
  12. }
  13. public function create(){
  14. $params=$this->request->param(['type'=>"","item_ids"=>[],"remark"=>""],"post",'trim');
  15. $valid = $this->validate($params,[
  16. 'type|类型'=>'require|in:1,2',
  17. 'item_ids|订单id'=>'require|array',
  18. 'remark|备注'=>'max:255',
  19. ]);
  20. if($valid!== true) return error($valid);
  21. $create=[];
  22. foreach ($params['item_ids'] as $k=>$v){
  23. if($params['type']==1){
  24. $ManagerInfo=FinancialManager::where('id',$v)->findOrEmpty();
  25. if($ManagerInfo->isEmpty()) return error("[$v]订单数据不存在");
  26. if($ManagerInfo->status!=2 && $ManagerInfo->status!=3) return error("[$v]订单数据状态不正确");
  27. }else{
  28. $TzInfo=FinancialTz::where('id',$v)->findOrEmpty();
  29. if($TzInfo->isEmpty()) return error("[$v]计提数据不存在");
  30. if($TzInfo->status!=1 && $TzInfo->status!=2) return error("[$v]计提数据状态不正确");
  31. }
  32. $create[]=[
  33. 'type'=>$params['type'],
  34. 'item_id'=>$params['item_id'],
  35. 'remark'=>$params['remark'],
  36. 'apply_id'=>$this->uid,
  37. 'apply_name'=>$this->uname,
  38. ];
  39. }
  40. $this->model->startTrans();
  41. try{
  42. $res=$this->model->saveAll($create);
  43. if($res->isEmpty()) throw new \Exception("删除数据失败");
  44. $this->model->commit();
  45. }catch (\Exception $e){
  46. $this->model->rollback();
  47. return error($e->getMessage());
  48. }
  49. return success("删除数据成功");
  50. }
  51. //列表
  52. public function list(){
  53. $params=$this->request->param(['type'=>1,"item_id"=>"","page"=>1,"size"=>20],"post",'trim');
  54. $where=[];
  55. if($params['type']!='') {
  56. $where[]=['type','=',$params['type']];
  57. $model=($params['type']==1)?'FinancialManager':'FinancialTz';
  58. }
  59. if($params['item_id']!='') $where[]=['item_id','=',$params['item_id']];
  60. $list=$this->model->with([$model])->where($where)->order('id desc')->paginate(['page'=>$params['page'],'list_rows'=>$params['size']]);
  61. return success("获取成功",['list'=>$list->items(),'count'=>$list->total()]);
  62. }
  63. }