HP files TOTAL col can contain thousand separators
This commit is contained in:
parent
799d824e7d
commit
32861d10af
2 changed files with 2 additions and 2 deletions
|
|
@ -428,7 +428,7 @@ class HPImportView(ImportViewBase):
|
|||
public=line['NOMPERSO_DIP'],
|
||||
)
|
||||
|
||||
period = int(float(line['TOTAL']))
|
||||
period = int(float(line['TOTAL'].replace("'","")))
|
||||
if created:
|
||||
obj.period = period
|
||||
obj_created += 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue