mirror of https://gitlab.crans.org/bde/nk20
Use neg for negative numbers in invoices
This commit is contained in:
parent
c859fc7821
commit
f47a0b8c9d
|
@ -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()
|
||||||
|
|
Loading…
Reference in New Issue