add 项目进度款明细
This commit is contained in:
parent
9611b29dc2
commit
48e75aae46
@ -0,0 +1,108 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||||
// +----------------------------------------------------------------------
|
||||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||||
// | 开源版本可自由商用,可去除界面版权logo
|
||||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||||
// | 访问官网:https://www.likeadmin.cn
|
||||
// | likeadmin团队 版权所有 拥有最终解释权
|
||||
// +----------------------------------------------------------------------
|
||||
// | author: likeadminTeam
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
|
||||
namespace app\adminapi\controller\project_process_management;
|
||||
|
||||
|
||||
use app\adminapi\controller\BaseAdminController;
|
||||
use app\adminapi\lists\project_process_management\ProjectProgressPaymentDetailLists;
|
||||
use app\adminapi\logic\project_process_management\ProjectProgressPaymentDetailLogic;
|
||||
use app\adminapi\validate\project_process_management\ProjectProgressPaymentDetailValidate;
|
||||
|
||||
|
||||
/**
|
||||
* ProjectProgressPaymentDetail控制器
|
||||
* Class ProjectProgressPaymentDetailController
|
||||
* @package app\adminapi\controller\project_process_management
|
||||
*/
|
||||
class ProjectProgressPaymentDetailController extends BaseAdminController
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取列表
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2024/02/23 14:17
|
||||
*/
|
||||
public function lists()
|
||||
{
|
||||
return $this->dataLists(new ProjectProgressPaymentDetailLists());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2024/02/23 14:17
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
$params = (new ProjectProgressPaymentDetailValidate())->post()->goCheck('add');
|
||||
$result = ProjectProgressPaymentDetailLogic::add($params);
|
||||
if (true === $result) {
|
||||
return $this->success('添加成功', [], 1, 1);
|
||||
}
|
||||
return $this->fail(ProjectProgressPaymentDetailLogic::getError());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 编辑
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2024/02/23 14:17
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
$params = (new ProjectProgressPaymentDetailValidate())->post()->goCheck('edit');
|
||||
$result = ProjectProgressPaymentDetailLogic::edit($params);
|
||||
if (true === $result) {
|
||||
return $this->success('编辑成功', [], 1, 1);
|
||||
}
|
||||
return $this->fail(ProjectProgressPaymentDetailLogic::getError());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 删除
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2024/02/23 14:17
|
||||
*/
|
||||
public function delete()
|
||||
{
|
||||
$params = (new ProjectProgressPaymentDetailValidate())->post()->goCheck('delete');
|
||||
ProjectProgressPaymentDetailLogic::delete($params);
|
||||
return $this->success('删除成功', [], 1, 1);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取详情
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2024/02/23 14:17
|
||||
*/
|
||||
public function detail()
|
||||
{
|
||||
$params = (new ProjectProgressPaymentDetailValidate())->goCheck('detail');
|
||||
$result = ProjectProgressPaymentDetailLogic::detail($params);
|
||||
return $this->data($result);
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,77 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||||
// +----------------------------------------------------------------------
|
||||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||||
// | 开源版本可自由商用,可去除界面版权logo
|
||||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||||
// | 访问官网:https://www.likeadmin.cn
|
||||
// | likeadmin团队 版权所有 拥有最终解释权
|
||||
// +----------------------------------------------------------------------
|
||||
// | author: likeadminTeam
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\adminapi\lists\project_process_management;
|
||||
|
||||
|
||||
use app\adminapi\lists\BaseAdminDataLists;
|
||||
use app\common\model\project_process_management\ProjectProgressPaymentDetail;
|
||||
use app\common\lists\ListsSearchInterface;
|
||||
|
||||
|
||||
/**
|
||||
* ProjectProgressPaymentDetail列表
|
||||
* Class ProjectProgressPaymentDetailLists
|
||||
* @package app\adminapi\listsproject_process_management
|
||||
*/
|
||||
class ProjectProgressPaymentDetailLists extends BaseAdminDataLists implements ListsSearchInterface
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 设置搜索条件
|
||||
* @return \string[][]
|
||||
* @author likeadmin
|
||||
* @date 2024/02/23 14:17
|
||||
*/
|
||||
public function setSearch(): array
|
||||
{
|
||||
return [
|
||||
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取列表
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @author likeadmin
|
||||
* @date 2024/02/23 14:17
|
||||
*/
|
||||
public function lists(): array
|
||||
{
|
||||
return ProjectProgressPaymentDetail::where($this->searchWhere)
|
||||
->field(['id', 'project_progress_payment_id', 'directory', 'unit_project_name', 'time', 'image_progress', 'declared_cost_tj', 'declared_cost_az', 'declared_cost_other', 'jdsbzj_xiaoji', 'audit_cost_tj', 'audit_cost_az', 'audit_cost_other', 'jdshzj_xiaoji', 'deduction_amount', 'completed_rate', 'contract_total_amount', 'ljwc_funds', 'current_payable_funds', 'payment_rate', 'dcntract_payment_rate', 'remark'])
|
||||
->limit($this->limitOffset, $this->limitLength)
|
||||
->order(['id' => 'desc'])
|
||||
->select()
|
||||
->toArray();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取数量
|
||||
* @return int
|
||||
* @author likeadmin
|
||||
* @date 2024/02/23 14:17
|
||||
*/
|
||||
public function count(): int
|
||||
{
|
||||
return ProjectProgressPaymentDetail::where($this->searchWhere)->count();
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,146 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||||
// +----------------------------------------------------------------------
|
||||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||||
// | 开源版本可自由商用,可去除界面版权logo
|
||||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||||
// | 访问官网:https://www.likeadmin.cn
|
||||
// | likeadmin团队 版权所有 拥有最终解释权
|
||||
// +----------------------------------------------------------------------
|
||||
// | author: likeadminTeam
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\adminapi\logic\project_process_management;
|
||||
|
||||
|
||||
use app\common\model\project_process_management\ProjectProgressPaymentDetail;
|
||||
use app\common\logic\BaseLogic;
|
||||
use think\facade\Db;
|
||||
|
||||
|
||||
/**
|
||||
* ProjectProgressPaymentDetail逻辑
|
||||
* Class ProjectProgressPaymentDetailLogic
|
||||
* @package app\adminapi\logic\project_process_management
|
||||
*/
|
||||
class ProjectProgressPaymentDetailLogic extends BaseLogic
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加
|
||||
* @param array $params
|
||||
* @return bool
|
||||
* @author likeadmin
|
||||
* @date 2024/02/23 14:17
|
||||
*/
|
||||
public static function add(array $params): bool
|
||||
{
|
||||
Db::startTrans();
|
||||
try {
|
||||
ProjectProgressPaymentDetail::create([
|
||||
'project_progress_payment_id' => $params['project_progress_payment_id'],
|
||||
'directory' => $params['directory'],
|
||||
'unit_project_name' => $params['unit_project_name'],
|
||||
'time' => $params['time'],
|
||||
'image_progress' => $params['image_progress'],
|
||||
'declared_cost_tj' => $params['declared_cost_tj'],
|
||||
'declared_cost_az' => $params['declared_cost_az'],
|
||||
'declared_cost_other' => $params['declared_cost_other'],
|
||||
'jdsbzj_xiaoji' => $params['jdsbzj_xiaoji'],
|
||||
'audit_cost_tj' => $params['audit_cost_tj'],
|
||||
'audit_cost_az' => $params['audit_cost_az'],
|
||||
'audit_cost_other' => $params['audit_cost_other'],
|
||||
'jdshzj_xiaoji' => $params['jdshzj_xiaoji'],
|
||||
'deduction_amount' => $params['deduction_amount'],
|
||||
'completed_rate' => $params['completed_rate'],
|
||||
'contract_total_amount' => $params['contract_total_amount'],
|
||||
'ljwc_funds' => $params['ljwc_funds'],
|
||||
'current_payable_funds' => $params['current_payable_funds'],
|
||||
'payment_rate' => $params['payment_rate'],
|
||||
'dcntract_payment_rate' => $params['dcntract_payment_rate'],
|
||||
'remark' => $params['remark'],
|
||||
]);
|
||||
|
||||
Db::commit();
|
||||
return true;
|
||||
} catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
self::setError($e->getMessage());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 编辑
|
||||
* @param array $params
|
||||
* @return bool
|
||||
* @author likeadmin
|
||||
* @date 2024/02/23 14:17
|
||||
*/
|
||||
public static function edit(array $params): bool
|
||||
{
|
||||
Db::startTrans();
|
||||
try {
|
||||
ProjectProgressPaymentDetail::where('id', $params['id'])->update([
|
||||
'project_progress_payment_id' => $params['project_progress_payment_id'],
|
||||
'directory' => $params['directory'],
|
||||
'unit_project_name' => $params['unit_project_name'],
|
||||
'time' => $params['time'],
|
||||
'image_progress' => $params['image_progress'],
|
||||
'declared_cost_tj' => $params['declared_cost_tj'],
|
||||
'declared_cost_az' => $params['declared_cost_az'],
|
||||
'declared_cost_other' => $params['declared_cost_other'],
|
||||
'jdsbzj_xiaoji' => $params['jdsbzj_xiaoji'],
|
||||
'audit_cost_tj' => $params['audit_cost_tj'],
|
||||
'audit_cost_az' => $params['audit_cost_az'],
|
||||
'audit_cost_other' => $params['audit_cost_other'],
|
||||
'jdshzj_xiaoji' => $params['jdshzj_xiaoji'],
|
||||
'deduction_amount' => $params['deduction_amount'],
|
||||
'completed_rate' => $params['completed_rate'],
|
||||
'contract_total_amount' => $params['contract_total_amount'],
|
||||
'ljwc_funds' => $params['ljwc_funds'],
|
||||
'current_payable_funds' => $params['current_payable_funds'],
|
||||
'payment_rate' => $params['payment_rate'],
|
||||
'dcntract_payment_rate' => $params['dcntract_payment_rate'],
|
||||
'remark' => $params['remark'],
|
||||
]);
|
||||
|
||||
Db::commit();
|
||||
return true;
|
||||
} catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
self::setError($e->getMessage());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 删除
|
||||
* @param array $params
|
||||
* @return bool
|
||||
* @author likeadmin
|
||||
* @date 2024/02/23 14:17
|
||||
*/
|
||||
public static function delete(array $params): bool
|
||||
{
|
||||
return ProjectProgressPaymentDetail::destroy($params['id']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取详情
|
||||
* @param $params
|
||||
* @return array
|
||||
* @author likeadmin
|
||||
* @date 2024/02/23 14:17
|
||||
*/
|
||||
public static function detail($params): array
|
||||
{
|
||||
return ProjectProgressPaymentDetail::findOrEmpty($params['id'])->toArray();
|
||||
}
|
||||
}
|
@ -0,0 +1,94 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||||
// +----------------------------------------------------------------------
|
||||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||||
// | 开源版本可自由商用,可去除界面版权logo
|
||||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||||
// | 访问官网:https://www.likeadmin.cn
|
||||
// | likeadmin团队 版权所有 拥有最终解释权
|
||||
// +----------------------------------------------------------------------
|
||||
// | author: likeadminTeam
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\adminapi\validate\project_process_management;
|
||||
|
||||
|
||||
use app\common\validate\BaseValidate;
|
||||
|
||||
|
||||
/**
|
||||
* ProjectProgressPaymentDetail验证器
|
||||
* Class ProjectProgressPaymentDetailValidate
|
||||
* @package app\adminapi\validate\project_process_management
|
||||
*/
|
||||
class ProjectProgressPaymentDetailValidate extends BaseValidate
|
||||
{
|
||||
|
||||
/**
|
||||
* 设置校验规则
|
||||
* @var string[]
|
||||
*/
|
||||
protected $rule = [
|
||||
'id' => 'require',
|
||||
];
|
||||
|
||||
|
||||
/**
|
||||
* 参数描述
|
||||
* @var string[]
|
||||
*/
|
||||
protected $field = [
|
||||
'id' => 'id',
|
||||
];
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加场景
|
||||
* @return ProjectProgressPaymentDetailValidate
|
||||
* @author likeadmin
|
||||
* @date 2024/02/23 14:17
|
||||
*/
|
||||
public function sceneAdd()
|
||||
{
|
||||
return $this->remove('id', true);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 编辑场景
|
||||
* @return ProjectProgressPaymentDetailValidate
|
||||
* @author likeadmin
|
||||
* @date 2024/02/23 14:17
|
||||
*/
|
||||
public function sceneEdit()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 删除场景
|
||||
* @return ProjectProgressPaymentDetailValidate
|
||||
* @author likeadmin
|
||||
* @date 2024/02/23 14:17
|
||||
*/
|
||||
public function sceneDelete()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 详情场景
|
||||
* @return ProjectProgressPaymentDetailValidate
|
||||
* @author likeadmin
|
||||
* @date 2024/02/23 14:17
|
||||
*/
|
||||
public function sceneDetail()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||||
// +----------------------------------------------------------------------
|
||||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||||
// | 开源版本可自由商用,可去除界面版权logo
|
||||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||||
// | 访问官网:https://www.likeadmin.cn
|
||||
// | likeadmin团队 版权所有 拥有最终解释权
|
||||
// +----------------------------------------------------------------------
|
||||
// | author: likeadminTeam
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\common\model\project_process_management;
|
||||
|
||||
|
||||
use app\common\model\BaseModel;
|
||||
use think\model\concern\SoftDelete;
|
||||
|
||||
|
||||
/**
|
||||
* ProjectProgressPaymentDetail模型
|
||||
* Class ProjectProgressPaymentDetail
|
||||
* @package app\common\model\project_process_management
|
||||
*/
|
||||
class ProjectProgressPaymentDetail extends BaseModel
|
||||
{
|
||||
use SoftDelete;
|
||||
protected $name = 'project_progress_payment_detail';
|
||||
protected $deleteTime = 'delete_time';
|
||||
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user