1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2024-11-26 18:37:12 +00:00

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

View File

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