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
|
|
@ -28,4 +28,4 @@ Dupond Jeanne;;Sém. enfance 2;[2ASEFE c-d E S2];8.00
|
|||
Dupond Jeanne;;Sém. enfance 2;[2ASEFE c-d E S2];8.00
|
||||
Dupond Jeanne;;Sém. enfance 2;[2ASEFE c-d E S2];8.00
|
||||
Dupond Jeanne;;Sém. enfance 2;[2ASEFE c-d E S2];8.00
|
||||
Dupond Jeanne;;Travail personnel;[2ASEFE c-d E S2];8.00
|
||||
Dupond Jeanne;;Travail personnel;[2ASEFE c-d E S2];1'054.00
|
||||
|
|
|
|||
|
|
@ -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