123 lines
3.9 KiB
PHP
123 lines
3.9 KiB
PHP
<?php
|
|
|
|
namespace app\api\controller\party;
|
|
|
|
use app\admin\validate\party\BranchPayList as BranchPayListValdate;
|
|
use think\App;
|
|
use app\api\BaseController;
|
|
use app\api\middleware\Auth;
|
|
use think\facade\Db;
|
|
|
|
/**
|
|
* 党费列表
|
|
*/
|
|
class BranchPayList extends BaseController
|
|
{
|
|
/**
|
|
* 控制器中间件 [不需要鉴权]
|
|
* @var array
|
|
*/
|
|
protected $middleware = [
|
|
Auth::class => ['except' => [] ]
|
|
];
|
|
public function __construct(App $app)
|
|
{
|
|
parent::__construct($app);
|
|
$this->model = Db::table('fa_szxc_party_branch_pay_list');
|
|
$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::table('fa_szxc_party_branch')->where('status', 1)
|
|
->withAttr('pay_info', function ($data, $value) {
|
|
$find = Db::table('fa_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::connect('shop')->table('eb_user')->where('uid', $value['user_id'])->value('nickname');
|
|
return $finds?:'';
|
|
})
|
|
->withAttr('two_nickname', function ($datas, $value) {
|
|
$finds = Db::connect('shop')->table('eb_user')->where('uid', $value['user_id'])->value('nickname');
|
|
return $finds?:'';
|
|
})
|
|
->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->apiSuccess('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->apiSuccess('ok', ['list' => $select, 'count' =>$count]);
|
|
|
|
}
|
|
|
|
public function add()
|
|
{
|
|
|
|
}
|
|
|
|
public function post()
|
|
{
|
|
$input = get_params();
|
|
$res = $this->validate->check($input);
|
|
if (!$res) {
|
|
return $this->apiError($this->validate->getError());
|
|
}
|
|
$input['pay'] = 0;
|
|
$input['no_pay'] = 0;
|
|
$input['status'] = 0;
|
|
$res = Db::table('fa_szxc_party_branch_pay_list')->insert($input);
|
|
if ($res) {
|
|
return $this->apiSuccess('添加成功', ['id' => $res->id]);
|
|
} else {
|
|
return $this->apiError('添加失败');
|
|
}
|
|
}
|
|
|
|
public function edit($id)
|
|
{
|
|
$find = $this->model->with('branch')->where('id', $id)->find();
|
|
return $this->apiSuccess('ok', $find);
|
|
|
|
}
|
|
|
|
public function put($id)
|
|
{
|
|
$input = get_params();;
|
|
$res = $this->validate->check($input);
|
|
if (!$res) {
|
|
return $this->apiError($this->validate->getError());
|
|
}
|
|
$res = $this->model->where('id', $id)->update($input);
|
|
if ($res) {
|
|
return $this->apiSuccess('修改成功');
|
|
} else {
|
|
return $this->apiError('修改失败');
|
|
}
|
|
}
|
|
|
|
public function delete($id)
|
|
{
|
|
$res = $this->model->where('id', $id)->update(['status' => 0]);
|
|
if ($res) {
|
|
return $this->apiSuccess('删除成功');
|
|
} else {
|
|
return $this->apiError('删除失败');
|
|
}
|
|
}
|
|
}
|