update 修复关联风险判断严格问题

This commit is contained in:
彭森 2022-01-13 14:27:48 +08:00
parent 265121720c
commit 5e70e4bcfc
3 changed files with 3 additions and 3 deletions

View File

@ -101,7 +101,7 @@ def associated_risk(param):
part_01['will'] = ''
def risk_level():
if num > 50 or part_01['include'] == '包括':
if num > 50 and part_01['include'] == '包括':
part_01['risk_level'] = '较高'
elif 20 < num < 50 and part_01['include'] == '不包括':
part_01['risk_level'] = '适中'