172 lines
6.1 KiB
PHP
172 lines
6.1 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\bank\BankAccount;
|
||
use app\common\model\bid\BidBiddingDecision;
|
||
use app\common\model\bid\BidSecurityApply;
|
||
use app\common\model\bid\BidSecurityRefund;
|
||
use app\common\logic\BaseLogic;
|
||
use app\common\model\oa\FlowApprove;
|
||
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
|
||
{
|
||
$bid_security_apply = BidSecurityApply::field('project_id')->where('id',$params['bid_security_apply_id'])->findOrEmpty();
|
||
Db::startTrans();
|
||
try {
|
||
BidSecurityRefund::create([
|
||
'project_id' => $bid_security_apply['project_id'],
|
||
'bid_security_apply_id' => $params['bid_security_apply_id'],
|
||
'refund_amount' => $params['refund_amount'],
|
||
'refund_date' => strtotime($params['refund_date']),
|
||
'remark' => $params['remark'] ?? '',
|
||
'annex' => $params['annex']? json_encode($params['annex']) : null,
|
||
'bank_account_id' => $params['bank_account_id'] ?? 0,
|
||
]);
|
||
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
|
||
{
|
||
$bid_security_apply = BidSecurityApply::field('project_id')->where('id',$params['bid_security_apply_id'])->findOrEmpty();
|
||
Db::startTrans();
|
||
try {
|
||
BidSecurityRefund::where('id', $params['id'])->update([
|
||
'project_id' => $bid_security_apply['project_id'],
|
||
'bid_security_apply_id' => $params['bid_security_apply_id'],
|
||
'refund_amount' => $params['refund_amount'],
|
||
'refund_date' => strtotime($params['refund_date']),
|
||
'remark' => $params['remark'] ?? '',
|
||
'annex' => $params['annex']? json_encode($params['annex']) : null,
|
||
'bank_account_id' => $params['bank_account_id'] ?? 0,
|
||
]);
|
||
|
||
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
|
||
{
|
||
$data = BidSecurityRefund::field('id,project_id,bid_security_apply_id,refund_amount,refund_date,remark,annex,bank_account_id,approve_id')->findOrEmpty($params['id']);
|
||
$project = Project::field('custom_id,name,project_code')->where('id',$data['project_id'])->findOrEmpty();
|
||
$custom = Custom::field('name')->where('id',$project['custom_id'])->findOrEmpty();
|
||
$bid_security_apply = BidSecurityApply::field('bidding_decision_id,deposit_bank,account_name,account')->where('id',$data['bid_security_apply_id'])->findOrEmpty();
|
||
$bidding_decision = BidBiddingDecision::field('code,bidding_time')->where('id',$bid_security_apply['bidding_decision_id'])->findOrEmpty();
|
||
$data['bidding_decision_code'] = $bidding_decision['code'];
|
||
$data['custom_name'] = $custom['name'];
|
||
$data['project_name'] = $project['name'];
|
||
$data['project_code'] = $project['project_code'];
|
||
$data['bidding_time'] = $bidding_decision['bidding_time'];
|
||
$data['deposit_bank'] = $bid_security_apply['deposit_bank'];
|
||
$data['account_name'] = $bid_security_apply['account_name'];
|
||
$data['account'] = $bid_security_apply['account'];
|
||
$data['bank_account_info'] = BankAccount::field('account_sn,deposit_bank,account_name,account')->where('id',$data['bank_account_id'])->findOrEmpty();
|
||
$approve_data = FlowApprove::where('id',$data['approve_id'])->findOrEmpty();
|
||
$data['approve_check_status'] = $approve_data['check_status'];
|
||
return $data->toArray();
|
||
}
|
||
|
||
public static function approve($params,$admin_id): bool{
|
||
$data = BidSecurityRefund::where('id',$params['id'])->findOrEmpty();
|
||
$approve_data = FlowApprove::where('id',$data['approve_id'])->findOrEmpty();
|
||
if(!empty($data['approve_id']) && $approve_data['check_status'] != 3){
|
||
self::setError('当前内容存在审核信息,请勿重复提交');
|
||
return false;
|
||
}
|
||
Db::startTrans();
|
||
try {
|
||
$res = addApprove(
|
||
'退投标保证金',
|
||
$params['id'],
|
||
'app\common\model\bid\BidSecurityRefund',
|
||
$params['path'],
|
||
$params['flow_id'],
|
||
$admin_id
|
||
);
|
||
if($res){
|
||
BidSecurityRefund::where('id',$params['id'])->update([
|
||
'approve_id' => $res,
|
||
]);
|
||
}
|
||
Db::commit();
|
||
return true;
|
||
} catch (\Exception $e) {
|
||
Db::rollback();
|
||
self::setError($e->getMessage());
|
||
return false;
|
||
}
|
||
}
|
||
} |