zx/app/controller/admin/system/financial/Financial.php

170 lines
5.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\controller\admin\system\financial;
use app\common\repositories\store\ExcelRepository;
use app\common\repositories\system\financial\FinancialRepository;
use crmeb\basic\BaseController;
use crmeb\services\ExcelService;
use think\App;
/**
* 商户财务申请提现
*/
class Financial extends BaseController
{
public $repository;
public function __construct(App $app, FinancialRepository $repository)
{
parent::__construct($app);
$this->repository = $repository;
}
public function lst()
{
[$page, $limit] = $this->getPage();
$where = $this->request->params(['date', 'status', 'financial_type', 'financial_status', 'keyword', 'is_trader', 'mer_id']);
$where['type'] = 0;
$data = $this->repository->getAdminList($where, $page, $limit);
return app('json')->success($data);
}
/**
* TODO 退款申请列表
* @return \think\response\Json
* @author Qinii
* @day 2023/5/24
*/
public function getMarginLst()
{
[$page, $limit] = $this->getPage();
$where = $this->request->params(['date', 'status', 'keyword', 'is_trader', 'mer_id', 'type_id', 'category_id']);
$where['type'] = 1;
$data = $this->repository->getAdminList($where, $page, $limit);
return app('json')->success($data);
}
/**
* TODO
* @param $id
* @return \think\response\Json
* @author Qinii
* @day 3/19/21
*/
public function detail($id)
{
$data = $this->repository->detail($id);
return app('json')->success($data);
}
public function statusForm($id)
{
return app('json')->success(formToData($this->repository->statusForm($id)));
}
/**
* TODO 审核
* @param $id
* @return \think\response\Json
* @author Qinii
* @day 3/19/21
*/
public function switchStatus($id)
{
$data = $this->request->params([['status', 0], 'refusal']);
$type = $this->request->param('type', 0);
$data['status_time'] = date('Y-m-d H:i:s');
if (!in_array($data['status'], [1, -1])) {
return app('json')->fail('审核状态错误');
}
if (($data['status'] == -1) && empty($data['refusal'])) {
return app('json')->fail('请输入拒绝理由');
}
if ($data['status'] == 1) $data['refusal'] = '';
$data['admin_id'] = $this->request->adminId();
$this->repository->switchStatus($id, $type, $data);
return app('json')->success('审核完成');
}
public function refundShow($id)
{
return app('json')->success($this->repository->refundShow($id));
}
/**
* TODO 修改凭证
* @param $id
* @return \think\response\Json
* @author Qinii
* @day 3/19/21
*/
public function update($id)
{
$image = $this->request->param('image');
if (empty($image)) return app('json')->fail('请上传凭证');
$res = $this->repository->get($id);
if ($res['status'] != 1) return app('json')->success('申请未通过审核');
$data['image'] = implode(',', $image);
$data['admin_id'] = $this->request->adminId();
$data['update_time'] = date('Y-m-d H:i:s');
$data['financial_status'] = 1;
$this->repository->update($id, $data);
return app('json')->success('修改完成');
}
public function markForm($id)
{
return app('json')->success(formToData($this->repository->adminMarkForm($id)));
}
public function markMarginForm($id)
{
return app('json')->success(formToData($this->repository->adminMarginMarkForm($id)));
}
public function mark($id)
{
$ret = $this->repository->getWhere([$this->repository->getPk() => $id]);
if (!$ret) return app('json')->fail('数据不存在');
$data = $this->request->params(['admin_mark']);
$this->repository->update($id, $data);
return app('json')->success('备注成功');
}
/**
* TODO 头部统计
* @return \think\response\Json
* @author Qinii
* @day 4/22/21
*/
public function title()
{
$ret = $this->repository->getTitle(['type' => 0]);
return app('json')->success($ret);
}
public function export()
{
$where = $this->request->params(['date', 'status', 'financial_type', 'financial_status', 'keyword', 'is_trader', 'mer_id']);
[$page, $limit] = $this->getPage();
$where['type'] = 0;
$data = app()->make(ExcelService::class)->financialLog($where, $page, $limit);
return app('json')->success($data);
}
}