133 lines
4.4 KiB
PHP
133 lines
4.4 KiB
PHP
<?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\bid;
|
||
|
||
|
||
use app\common\model\bid\BidSecurityRefund;
|
||
use app\common\logic\BaseLogic;
|
||
use app\common\model\project\Project;
|
||
use app\common\model\custom\Custom;
|
||
use think\facade\Db;
|
||
|
||
|
||
/**
|
||
* BidSecurityRefund逻辑
|
||
* Class BidSecurityRefundLogic
|
||
* @package app\adminapi\logic\bid
|
||
*/
|
||
class BidSecurityRefundLogic extends BaseLogic
|
||
{
|
||
|
||
|
||
/**
|
||
* @notes 添加
|
||
* @param array $params
|
||
* @return bool
|
||
* @author likeadmin
|
||
* @date 2023/12/18 10:29
|
||
*/
|
||
public static function add(array $params): bool
|
||
{
|
||
Db::startTrans();
|
||
try {
|
||
BidSecurityRefund::create([
|
||
'bidding_decision_id' => $params['bidding_decision_id'] ?? 0,
|
||
'refund_amount' => $params['refund_amount'] ?? 0,
|
||
'refund_amount_daxie' => $params['refund_amount_daxie'] ?? '',
|
||
'refund_date' => $params['refund_date'] ?? '',
|
||
'remark' => $params['remark'] ?? '',
|
||
'annex' => $params['annex'] ?? '',
|
||
'bank_account_id' => $params['bank_account_id'] ?? 0,
|
||
'is_calculate_interest' => $params['is_calculate_interest'] ?? 0,
|
||
'interest_calculation_start_date' => $params['interest_calculation_start_date'] ?? '',
|
||
]);
|
||
|
||
Db::commit();
|
||
return true;
|
||
} catch (\Exception $e) {
|
||
Db::rollback();
|
||
self::setError($e->getMessage());
|
||
return false;
|
||
}
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑
|
||
* @param array $params
|
||
* @return bool
|
||
* @author likeadmin
|
||
* @date 2023/12/18 10:29
|
||
*/
|
||
public static function edit(array $params): bool
|
||
{
|
||
Db::startTrans();
|
||
try {
|
||
BidSecurityRefund::where('id', $params['id'])->update([
|
||
'bidding_decision_id' => $params['bidding_decision_id'] ?? 0,
|
||
'refund_amount' => $params['refund_amount'] ?? 0,
|
||
'refund_amount_daxie' => $params['refund_amount_daxie'] ?? '',
|
||
'refund_date' => $params['refund_date'] ?? '',
|
||
'remark' => $params['remark'] ?? '',
|
||
'annex' => $params['annex'] ?? '',
|
||
'bank_account_id' => $params['bank_account_id'] ?? 0,
|
||
'is_calculate_interest' => $params['is_calculate_interest'] ?? 0,
|
||
'interest_calculation_start_date' => $params['interest_calculation_start_date'] ?? '',
|
||
]);
|
||
|
||
Db::commit();
|
||
return true;
|
||
} catch (\Exception $e) {
|
||
Db::rollback();
|
||
self::setError($e->getMessage());
|
||
return false;
|
||
}
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 删除
|
||
* @param array $params
|
||
* @return bool
|
||
* @author likeadmin
|
||
* @date 2023/12/18 10:29
|
||
*/
|
||
public static function delete(array $params): bool
|
||
{
|
||
return BidSecurityRefund::destroy($params['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取详情
|
||
* @param $params
|
||
* @return array
|
||
* @author likeadmin
|
||
* @date 2023/12/18 10:29
|
||
*/
|
||
public static function detail($params): array
|
||
{
|
||
$bidSecurityRefund = BidSecurityRefund::findOrEmpty($params['id']);
|
||
$bidSecurityRefund->project = null;
|
||
$bidSecurityRefund->custom = null;
|
||
if (!empty($bidSecurityRefund->decision->project_id)) {
|
||
$bidSecurityRefund->project = Project::findOrEmpty($bidSecurityRefund->decision->project_id);
|
||
}
|
||
if (!empty($bidSecurityRefund->project->custom_id)) {
|
||
$bidSecurityRefund->custom = Custom::findOrEmpty($bidSecurityRefund->project->custom_id);
|
||
}
|
||
return $bidSecurityRefund->toArray();
|
||
}
|
||
} |