Skip to content

Commit

Permalink
Merge pull request #251 from gisce/fix_import_decimals_whit_ajust
Browse files Browse the repository at this point in the history
Corregir importacion de decimales con ajuste
  • Loading branch information
lcbautista authored Jul 16, 2024
2 parents 03a2656 + b4010c1 commit d2ffb25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gestionatr/input/messages/F1.py
Original file line number Diff line number Diff line change
Expand Up @@ -1869,7 +1869,7 @@ def te_lectures_amb_decimals(self):
for l in c.get_lectures(force_no_transforma_no_td_a_td=True):
if isinstance(l.consumo_calculado, int):
return False
if not l.ajuste and not l.consumo_calculado.is_integer():
if not l.consumo_calculado.is_integer():
return True

return False
Expand Down

0 comments on commit d2ffb25

Please sign in to comment.