152 lines
5.9 KiB
PHP
152 lines
5.9 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\auth\Admin;
|
||
use app\common\model\bid\BidBiddingDecision;
|
||
use app\common\model\bid\BidBuyBiddingDocument;
|
||
use app\common\model\bid\BidDocumentExamination;
|
||
use app\common\model\bid\BidResult;
|
||
use app\common\model\custom\Custom;
|
||
use app\common\logic\BaseLogic;
|
||
use app\common\model\dept\Dept;
|
||
use app\common\model\dept\Orgs;
|
||
use app\common\model\project\Project;
|
||
use think\facade\Db;
|
||
|
||
|
||
/**
|
||
* 投标结果逻辑
|
||
* Class BidResultLogic
|
||
* @package app\adminapi\logic\bid
|
||
*/
|
||
class BidResultLogic extends BaseLogic
|
||
{
|
||
|
||
|
||
/**
|
||
* @notes 添加投标结果
|
||
* @param array $params
|
||
* @return bool
|
||
* @author likeadmin
|
||
* @date 2023/12/02 14:54
|
||
*/
|
||
public static function add(array $params,$admin_id): bool
|
||
{
|
||
$bid_document_examination = BidDocumentExamination::field('project_id')->where('id',$params['bid_document_examination_id'])->findOrEmpty();
|
||
Db::startTrans();
|
||
try {
|
||
BidResult::create([
|
||
'org_id' => $params['org_id'],
|
||
'dept_id' => $params['dept_id'],
|
||
'bid_document_examination_id' => $params['bid_document_examination_id'],
|
||
'project_id' => $bid_document_examination['project_id'],
|
||
'is_successful' => $params['is_successful'],
|
||
'bidder_company' => $params['bidder_company'],
|
||
'bidder_amount' => $params['bidder_amount'],
|
||
'bid_summary' => $params['bid_summary'] ?? '',
|
||
'annex' => $params['annex']? json_encode($params['annex']) : null,
|
||
'add_user' => $admin_id,
|
||
'update_user' => $admin_id,
|
||
]);
|
||
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/02 14:54
|
||
*/
|
||
public static function edit(array $params,$admin_id): bool
|
||
{
|
||
Db::startTrans();
|
||
try {
|
||
BidResult::where('id', $params['id'])->update([
|
||
'org_id' => $params['org_id'],
|
||
'dept_id' => $params['dept_id'],
|
||
'bid_document_examination_id' => $params['bid_document_examination_id'],
|
||
'is_successful' => $params['is_successful'],
|
||
'bidder_company' => $params['bidder_company'],
|
||
'bidder_amount' => $params['bidder_amount'],
|
||
'bid_summary' => $params['bid_summary'] ?? '',
|
||
'annex' => $params['annex']? json_encode($params['annex']) : null,
|
||
'update_user' => $admin_id,
|
||
'update_time' => time(),
|
||
]);
|
||
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/02 14:54
|
||
*/
|
||
public static function delete(array $params): bool
|
||
{
|
||
return BidResult::destroy($params['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取投标结果详情
|
||
* @param $params
|
||
* @return array
|
||
* @author likeadmin
|
||
* @date 2023/12/02 14:54
|
||
*/
|
||
public static function detail($params): array
|
||
{
|
||
$data = BidResult::field('id,org_id,dept_id,bid_document_examination_id,project_id,is_successful,bidder_company,bidder_amount,bid_summary,annex,add_user,update_user,create_time,update_time')->findOrEmpty($params['id']);
|
||
$org = Orgs::field('name')->where('id',$data['org_id'])->findOrEmpty();
|
||
$dept = Dept::field('name')->where('id',$data['dept_id'])->findOrEmpty();
|
||
$project = Project::field('name,project_code,custom_id')->where('id',$data['project_id'])->findOrEmpty();
|
||
$custom = Custom::field('name')->where('id',$project['custom_id'])->findOrEmpty();
|
||
$bid_document_examination = BidDocumentExamination::field('code,buy_bidding_document_id')->where('id',$data['bid_document_examination_id'])->findOrEmpty();
|
||
$buy_bidding_document = BidBuyBiddingDocument::field('bid_decision_id')->where('id',$bid_document_examination['buy_bidding_document_id'])->findOrEmpty();
|
||
$bid_decision = BidBiddingDecision::field('bidding_time,bid_opening_date')->where('id',$buy_bidding_document['bid_decision_id'])->findOrEmpty();
|
||
$admin = Admin::where('id','in',[$data['add_user'],$data['update_user']])->column('name','id');
|
||
$data['org_name'] = $org['name'];
|
||
$data['dept_name'] = $dept['name'];
|
||
$data['project_name'] = $project['name'];
|
||
$data['project_code'] = $project['project_code'];
|
||
$data['custom_name'] = $custom['name'];
|
||
$data['bid_document_examination_code'] = $bid_document_examination['code'];
|
||
$data['bidding_time'] = $bid_decision['bidding_time'];
|
||
$data['bid_opening_date'] = $bid_decision['bid_opening_date'];
|
||
$data['is_successful_text'] = $data->is_successful_text;
|
||
$data['add_user_name'] = $admin[$data['add_user']];
|
||
$data['update_user_name'] = $admin[$data['update_user']];
|
||
return $data->toArray();
|
||
}
|
||
} |