This commit is contained in:
weiz 2024-01-21 15:30:17 +08:00
parent af97d76141
commit 8953757e41
2 changed files with 4 additions and 1 deletions

View File

@ -40,7 +40,7 @@ class BidBiddingDecisionLists extends BaseAdminDataLists implements ListsSearchI
public function setSearch(): array
{
return [
'=' => ['project_id', 'bidding_project_fund_source', 'bid_type'],
'=' => ['project_id', 'bidding_project_fund_source', 'bid_type', 'is_margin'],
'%like%' => ['code']
];
}

View File

@ -112,6 +112,9 @@ class BidSecurityApplyValidate extends BaseValidate
if($data->isEmpty()){
return '投标决策信息不存在';
}
if($data['is_margin'] != 1){
return '此投标信息没有保证金';
}
return true;
}