racourcir les libelles des actions

This commit is contained in:
2022-03-06 16:21:07 +01:00
parent 0125b73ab6
commit f97e03204f
3 changed files with 24 additions and 23 deletions

View File

@@ -24,7 +24,16 @@ class GlobalLayout(object):
return to_decimal(x)
def to_euro(self, x):
return to_euro(x)
if x == 0:
return ''
else:
return to_euro(x)
def zero2space(self, x):
if x == 0:
return ''
else:
return x
def to_usd(self, x):
return to_usd(x)