123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- namespace app\cxinv\controller;
- use app\cxinv\model\FinancialTz;
- use app\cxinv\model\FinancialManager;
- use think\App;
- class FinancialCancel extends Base
- {
- public function __construct(App $app)
- {
- parent::__construct($app);
- $this->model = new \app\cxinv\model\FinancialCancel();
- }
- public function create(){
- $params=$this->request->param(['type'=>"","item_ids"=>[],"remark"=>""],"post",'trim');
- $valid = $this->validate($params,[
- 'type|类型'=>'require|in:1,2',
- 'item_ids|订单id'=>'require|array',
- 'remark|备注'=>'max:255',
- ]);
- if($valid!== true) return error($valid);
- $create=[];
- foreach ($params['item_ids'] as $k=>$v){
- if($params['type']==1){
- $ManagerInfo=FinancialManager::where('id',$v)->findOrEmpty();
- if($ManagerInfo->isEmpty()) return error("[$v]订单数据不存在");
- if($ManagerInfo->status!=2 && $ManagerInfo->status!=3) return error("[$v]订单数据状态不正确");
- }else{
- $TzInfo=FinancialTz::where('id',$v)->findOrEmpty();
- if($TzInfo->isEmpty()) return error("[$v]计提数据不存在");
- if($TzInfo->status!=1 && $TzInfo->status!=2) return error("[$v]计提数据状态不正确");
- }
- $create[]=[
- 'type'=>$params['type'],
- 'item_id'=>$params['item_id'],
- 'remark'=>$params['remark'],
- 'apply_id'=>$this->uid,
- 'apply_name'=>$this->uname,
- ];
- }
- $this->model->startTrans();
- try{
- $res=$this->model->saveAll($create);
- if($res->isEmpty()) throw new \Exception("删除数据失败");
- $this->model->commit();
- }catch (\Exception $e){
- $this->model->rollback();
- return error($e->getMessage());
- }
- return success("删除数据成功");
- }
- //列表
- public function list(){
- $params=$this->request->param(['type'=>1,"item_id"=>"","page"=>1,"size"=>20],"post",'trim');
- $where=[];
- if($params['type']!='') {
- $where[]=['type','=',$params['type']];
- $model=($params['type']==1)?'FinancialManager':'FinancialTz';
- }
- if($params['item_id']!='') $where[]=['item_id','=',$params['item_id']];
- $list=$this->model->with([$model])->where($where)->order('id desc')->paginate(['page'=>$params['page'],'list_rows'=>$params['size']]);
- return success("获取成功",['list'=>$list->items(),'count'=>$list->total()]);
- }
- }
|