This commit is contained in:
weiz 2024-01-22 13:40:54 +08:00
parent 4156fd1b63
commit 37f56f0e0a

View File

@ -210,10 +210,11 @@ class ContractLogic extends BaseLogic
{
$data = Contract::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();
$custom = Custom::field('id,name')->where('id',$project['custom_id'])->findOrEmpty();
$buy_bidding_document = BidBuyBiddingDocument::field('bid_document_no')->where('id',$data['buy_bidding_document_id'])->findOrEmpty();
$business_director = Admin::field('name')->where('id',$data['business_director'])->findOrEmpty();
$data['custom_name'] = $custom['name'];
$data['custom_id'] = $custom['id'];
$data['custom_name'] = $custom['name'];
$data['bid_document_no'] = $buy_bidding_document['bid_document_no'];
$data['project_name'] = $project['name'];
$data['project_code'] = $project['project_code'];