minor fix in get_current_risk

This commit is contained in:
Elvis 2023-09-01 10:05:56 -05:00
parent 2dfe50b199
commit 39aa53ee63
1 changed files with 2 additions and 2 deletions

View File

@ -405,9 +405,9 @@ class CustomerService(metaclass=PoolMeta):
if days_diference.days >= 1:
return 'Higher'
if self.classification == 'reclamo_riesgo_simple' and self.state == 'open':
if days_diference.days >= 3:
return 'Higher'
if days_diference.days >= 2:
return 'Higher'
if days_diference.days >= 1:
return 'Medium'
return 'low'