parent
63c17bddc0
commit
4a8a5f68c2
@ -0,0 +1,279 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Exports\BaseExport;
|
||||
use App\Exports\CommonExport;
|
||||
use App\Helpers\ResponseCode;
|
||||
use App\Models\CustomForm;
|
||||
use App\Models\CustomFormField;
|
||||
use App\Models\StockCompany;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Facades\Validator;
|
||||
use Maatwebsite\Excel\Facades\Excel;
|
||||
|
||||
class StockCompanyController extends BaseController
|
||||
{
|
||||
|
||||
/**
|
||||
* 构造函数
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct(new StockCompany());
|
||||
}
|
||||
|
||||
/**
|
||||
* @OA\Get(
|
||||
* path="/api/admin/stock-company/index",
|
||||
* tags={"上市公司管理"},
|
||||
* summary="列表",
|
||||
* description="",
|
||||
* @OA\Parameter(name="is_export", in="query", @OA\Schema(type="string"), required=false, description="是否导出0否1是"),
|
||||
* @OA\Parameter(name="export_fields", in="query", @OA\Schema(type="string"), required=false, description="需要导出的字段数组"),
|
||||
* @OA\Parameter(name="filter", in="query", @OA\Schema(type="string"), required=false, description="查询条件。数组"),
|
||||
* @OA\Parameter(name="show_relation", in="query", @OA\Schema(type="string"), required=false, description="需要输出的关联关系数组"),
|
||||
* @OA\Parameter(name="page_size", in="query", @OA\Schema(type="string"), required=false, description="每页显示的条数"),
|
||||
* @OA\Parameter(name="page", in="query", @OA\Schema(type="string"), required=false, description="页码"),
|
||||
* @OA\Parameter(name="sort_name", in="query", @OA\Schema(type="string"), required=false, description="排序字段名字"),
|
||||
* @OA\Parameter(name="sort_type", in="query", @OA\Schema(type="string"), required=false, description="排序类型"),
|
||||
* @OA\Parameter(name="token", in="query", @OA\Schema(type="string"), required=true, description="token"),
|
||||
* @OA\Response(
|
||||
* response="200",
|
||||
* description="暂无"
|
||||
* )
|
||||
* )
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$all = request()->all();
|
||||
|
||||
$list = $this->model->with(underlineToHump($all['show_relation'] ?? []))
|
||||
->where(function ($query) use ($all) {
|
||||
if (isset($all['filter']) && !empty($all['filter'])) {
|
||||
foreach ($all['filter'] as $condition) {
|
||||
$key = $condition['key'] ?? null;
|
||||
$op = $condition['op'] ?? null;
|
||||
$value = $condition['value'] ?? null;
|
||||
if (!isset($key) || !isset($op) || !isset($value)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// 等于
|
||||
if ($op == 'eq') {
|
||||
$query->where($key, $value);
|
||||
}
|
||||
// 不等于
|
||||
if ($op == 'neq') {
|
||||
$query->where($key, '!=', $value);
|
||||
}
|
||||
// 大于
|
||||
if ($op == 'gt') {
|
||||
$query->where($key, '>', $value);
|
||||
}
|
||||
// 大于等于
|
||||
if ($op == 'egt') {
|
||||
$query->where($key, '>=', $value);
|
||||
}
|
||||
// 小于
|
||||
if ($op == 'lt') {
|
||||
$query->where($key, '<', $value);
|
||||
}
|
||||
// 小于等于
|
||||
if ($op == 'elt') {
|
||||
$query->where($key, '<=', $value);
|
||||
}
|
||||
// 模糊搜索
|
||||
if ($op == 'like') {
|
||||
$query->where($key, 'like', '%' . $value . '%');
|
||||
}
|
||||
// 否定模糊搜索
|
||||
if ($op == 'notlike') {
|
||||
$query->where($key, 'not like', '%' . $value . '%');
|
||||
}
|
||||
// null搜索
|
||||
if ($op == 'null') {
|
||||
$query->whereNull($key);
|
||||
}
|
||||
// notnull搜索
|
||||
if ($op == 'notnull') {
|
||||
$query->whereNotNull($key);
|
||||
}
|
||||
// 范围搜索
|
||||
if ($op == 'range') {
|
||||
list($from, $to) = explode(',', $value);
|
||||
if (empty($from) || empty($to)) {
|
||||
continue;
|
||||
}
|
||||
$query->whereBetween($key, [$from, $to]);
|
||||
}
|
||||
}
|
||||
}
|
||||
})->orderBy($all['sort_name'] ?? 'id', $all['sort_type'] ?? 'desc');
|
||||
|
||||
if (isset($all['is_export']) && !empty($all['is_export'])) {
|
||||
$list = $list->get()->toArray();
|
||||
$export_fields = $all['export_fields'] ?? [];
|
||||
// 导出文件名字
|
||||
$tableName = $this->model->getTable();
|
||||
$filename = (new CustomForm())->getTableComment($tableName);
|
||||
return Excel::download(new BaseExport($export_fields, $list, $tableName), $filename . date('YmdHis') . '.xlsx');
|
||||
} else {
|
||||
// 输出
|
||||
$list = $list->paginate($all['page_size'] ?? 20);
|
||||
}
|
||||
return $this->success($list);
|
||||
}
|
||||
|
||||
/**
|
||||
* @OA\Get(
|
||||
* path="/api/admin/stock-company/show",
|
||||
* tags={"上市公司管理"},
|
||||
* summary="详情",
|
||||
* description="",
|
||||
* @OA\Parameter(name="id", in="query", @OA\Schema(type="string"), required=true, description="id"),
|
||||
* @OA\Parameter(name="show_relation", in="query", @OA\Schema(type="string"), required=false, description="需要输出的关联关系数组,填写输出指定数据"),
|
||||
* @OA\Parameter(name="token", in="query", @OA\Schema(type="string"), required=true, description="token"),
|
||||
* @OA\Response(
|
||||
* response="200",
|
||||
* description="暂无"
|
||||
* )
|
||||
* )
|
||||
*/
|
||||
public function show()
|
||||
{
|
||||
return parent::show();
|
||||
}
|
||||
|
||||
/**
|
||||
* @OA\Post(
|
||||
* path="/api/admin/stock-company/save",
|
||||
* tags={"上市公司管理"},
|
||||
* summary="保存",
|
||||
* description="",
|
||||
* @OA\Parameter(name="id", in="query", @OA\Schema(type="int"), required=false, description="Id(存在更新,不存在新增)"),
|
||||
* @OA\Parameter(name="company_name", in="query", @OA\Schema(type="string", nullable=true), description="公司名称"),
|
||||
* @OA\Parameter(name="stock_date", in="query", @OA\Schema(type="string", format="date", nullable=true), description="上市时间"),
|
||||
* @OA\Parameter(name="enrollment_date", in="query", @OA\Schema(type="string", format="date", nullable=true), description="入学时间"),
|
||||
* @OA\Parameter(name="is_after_enrollment", in="query", @OA\Schema(type="string", nullable=true), description="是否入学后上市-0否1是"),
|
||||
* @OA\Parameter(name="token", in="query", @OA\Schema(type="string"), required=true, description="认证token"),
|
||||
* @OA\Response(
|
||||
* response="200",
|
||||
* description="操作成功"
|
||||
* )
|
||||
* )
|
||||
*/
|
||||
public function save()
|
||||
{
|
||||
$all = \request()->all();
|
||||
DB::beginTransaction();
|
||||
try {
|
||||
if (isset($all['id'])) {
|
||||
$model = $this->model->find($all['id']);
|
||||
if (empty($model)) {
|
||||
return $this->fail([ResponseCode::ERROR_BUSINESS, '数据不存在']);
|
||||
}
|
||||
} else {
|
||||
$model = $this->model;
|
||||
$all['admin_id'] = $this->getUserId();
|
||||
$all['department_id'] = $this->getUser()->department_id;
|
||||
}
|
||||
|
||||
// 如果提供了上市时间和入学时间,自动计算是否入学后上市
|
||||
if (isset($all['stock_date']) && isset($all['enrollment_date'])) {
|
||||
$stockDate = strtotime($all['stock_date']);
|
||||
$enrollmentDate = strtotime($all['enrollment_date']);
|
||||
$all['is_after_enrollment'] = ($stockDate > $enrollmentDate) ? 1 : 0;
|
||||
}
|
||||
|
||||
$original = $model->getOriginal();
|
||||
$model->fill($all);
|
||||
$model->save();
|
||||
DB::commit();
|
||||
// 记录日志
|
||||
$this->saveLogs($original, $model);
|
||||
return $this->success($model);
|
||||
} catch (\Exception $exception) {
|
||||
DB::rollBack();
|
||||
return $this->fail([$exception->getCode(), $exception->getMessage()]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @OA\Get(
|
||||
* path="/api/admin/stock-company/destroy",
|
||||
* tags={"上市公司管理"},
|
||||
* summary="删除",
|
||||
* description="",
|
||||
* @OA\Parameter(name="id", in="query", @OA\Schema(type="string"), required=true, description="id"),
|
||||
* @OA\Parameter(name="token", in="query", @OA\Schema(type="string"), required=true, description="token"),
|
||||
* @OA\Response(
|
||||
* response="200",
|
||||
* description="暂无"
|
||||
* )
|
||||
* )
|
||||
*/
|
||||
public function destroy()
|
||||
{
|
||||
return parent::destroy();
|
||||
}
|
||||
|
||||
/**
|
||||
* @OA\Get(
|
||||
* path="/api/admin/stock-company/this-year-new",
|
||||
* tags={"上市公司管理"},
|
||||
* summary="今年新增上市公司",
|
||||
* description="",
|
||||
* @OA\Parameter(name="year", in="query", @OA\Schema(type="string"), required=false, description="年份,默认为当前年份"),
|
||||
* @OA\Parameter(name="token", in="query", @OA\Schema(type="string"), required=true, description="token"),
|
||||
* @OA\Response(
|
||||
* response="200",
|
||||
* description="暂无"
|
||||
* )
|
||||
* )
|
||||
*/
|
||||
public function thisYearNew()
|
||||
{
|
||||
$all = request()->all();
|
||||
$year = $all['year'] ?? date('Y');
|
||||
$startDate = $year . '-01-01';
|
||||
$endDate = $year . '-12-31';
|
||||
|
||||
$list = $this->model->whereBetween('stock_date', [$startDate, $endDate])
|
||||
->orderBy('stock_date', 'desc')
|
||||
->get();
|
||||
|
||||
return $this->success([
|
||||
'year' => $year,
|
||||
'total' => $list->count(),
|
||||
'list' => $list
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* @OA\Get(
|
||||
* path="/api/admin/stock-company/after-enrollment",
|
||||
* tags={"上市公司管理"},
|
||||
* summary="入学后新上市公司数据显示",
|
||||
* description="",
|
||||
* @OA\Parameter(name="token", in="query", @OA\Schema(type="string"), required=true, description="token"),
|
||||
* @OA\Response(
|
||||
* response="200",
|
||||
* description="暂无"
|
||||
* )
|
||||
* )
|
||||
*/
|
||||
public function afterEnrollment()
|
||||
{
|
||||
$list = $this->model->where('is_after_enrollment', 1)
|
||||
->orderBy('stock_date', 'desc')
|
||||
->get();
|
||||
|
||||
return $this->success([
|
||||
'total' => $list->count(),
|
||||
'list' => $list
|
||||
]);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
class StockCompany extends SoftDeletesModel
|
||||
{
|
||||
protected $fillable = [
|
||||
'admin_id',
|
||||
'department_id',
|
||||
'company_name',
|
||||
'stock_date',
|
||||
'enrollment_date',
|
||||
'is_after_enrollment',
|
||||
];
|
||||
|
||||
protected $appends = ['is_after_enrollment_text'];
|
||||
|
||||
/**
|
||||
* 获取是否入学后上市的文本
|
||||
*/
|
||||
public function getIsAfterEnrollmentTextAttribute()
|
||||
{
|
||||
$array = [
|
||||
0 => '否',
|
||||
1 => '是',
|
||||
];
|
||||
return $array[$this->is_after_enrollment] ?? '否';
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in new issue