117 lines
3.8 KiB
PHP
117 lines
3.8 KiB
PHP
<?php
|
|
|
|
namespace app\api\controller\party;
|
|
|
|
use app\common\controller\Api;
|
|
use app\admin\model\party\BranchPayList as BranchPayListModel;
|
|
use app\admin\validate\party\BranchPayList as BranchPayListValdate;
|
|
use think\App;
|
|
use think\facade\Db;
|
|
|
|
/**
|
|
* 党费列表
|
|
*/
|
|
class BranchPayList extends Api
|
|
{
|
|
protected $noNeedRight = ['*'];
|
|
public function __construct(App $app)
|
|
{
|
|
parent::__construct($app);
|
|
$this->model = new BranchPayListModel();
|
|
$this->validate = new BranchPayListValdate();
|
|
}
|
|
|
|
|
|
/**党组织党费清单
|
|
* @param $search
|
|
* @param $page
|
|
* @return null
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function index($search = '', $page = 1)
|
|
{
|
|
$select = Db::name('szxc_party_branch')->where('status', 1)
|
|
->withAttr('pay_info', function ($data, $value) {
|
|
$find = Db::name('szxc_party_branch_pay_list')->where('branch_id',$value['id'])->where('status', 1)->field('pay,no_pay')->find();
|
|
return $find;
|
|
})->withAttr('nickname', function ($datas, $value) {
|
|
$finds = Db::name('user')->where('id', $value['user_id'])->field('nickname')->find();
|
|
return $finds?$finds['nickname']:'';
|
|
})
|
|
->withAttr('two_nickname', function ($datas, $value) {
|
|
$finds = Db::name('user')->where('id', $value['two_user_id'])->field('nickname')->find();
|
|
return $finds?$finds['nickname']:'';
|
|
})
|
|
->page($page)->limit(20)->select();
|
|
$branch_count = $this->model->where('status', 1)->count();
|
|
$branch_pay_count = $this->model->where('status', 1)->sum('pay');
|
|
$branch_no_pay_count = $this->model->where('status', 1)->sum('no_pay');
|
|
return $this->success('ok', ['list' => $select,
|
|
'branch' => ['branch_count' => $branch_count, 'branch_pay_count' => $branch_pay_count, 'branch_no_pay_count' => $branch_no_pay_count]]);
|
|
}
|
|
|
|
public function branch_pay_list($id,$page=1){
|
|
$select = $this->model->where('branch_id',$id)->where('status', 1)->page($page)->select();
|
|
$count = $this->model->where('branch_id',$id)->where('status', 1)->count();
|
|
return $this->success('ok', ['list' => $select, 'count' =>$count]);
|
|
|
|
}
|
|
|
|
public function add()
|
|
{
|
|
|
|
}
|
|
|
|
public function post()
|
|
{
|
|
$input = $this->request->post();
|
|
$res = $this->validate->check($input);
|
|
if (!$res) {
|
|
return $this->error($this->validate->getError());
|
|
}
|
|
$input['pay'] = 0;
|
|
$input['no_pay'] = 0;
|
|
$input['status'] = 0;
|
|
$res = BranchPayListModel::create($input);
|
|
if ($res) {
|
|
return $this->success('添加成功', ['id' => $res->id]);
|
|
} else {
|
|
return $this->error('添加失败');
|
|
}
|
|
}
|
|
|
|
public function edit($id)
|
|
{
|
|
$find = $this->model->with('branch')->where('id', $id)->find();
|
|
return $this->success('ok', $find);
|
|
|
|
}
|
|
|
|
public function put($id)
|
|
{
|
|
$input = $this->request->post();;
|
|
$res = $this->validate->check($input);
|
|
if (!$res) {
|
|
return $this->error($this->validate->getError());
|
|
}
|
|
$res = $this->model->where('id', $id)->update($input);
|
|
if ($res) {
|
|
return $this->success('修改成功');
|
|
} else {
|
|
return $this->error('修改失败');
|
|
}
|
|
}
|
|
|
|
public function delete($id)
|
|
{
|
|
$res = $this->model->where('id', $id)->update(['status' => 0]);
|
|
if ($res) {
|
|
return $this->success('删除成功');
|
|
} else {
|
|
return $this->error('删除失败');
|
|
}
|
|
}
|
|
}
|