Use neg for negative numbers in invoices

This commit is contained in:
Yohann D'ANELLO 2020-08-06 14:41:14 +02:00
parent c859fc7821
commit f47a0b8c9d
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ def do_latex_escape(value):
def fp_value(value):
return value.replace("-", "neg ")
return value.replace("-", "").replace("-", "neg")
register = template.Library()