summaryrefslogtreecommitdiff
path: root/FS/FS/invoice_conf.pm
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2015-06-22 13:26:02 -0700
committerMark Wells <mark@freeside.biz>2015-06-22 13:26:02 -0700
commitfddc31615c85f335de0369d7f4d1b8a92187a46b (patch)
tree227aa425b7ad0841d92e1a60e6dc8d26d3dfa4a3 /FS/FS/invoice_conf.pm
parentfd8602cfbc04ed8fae5b84e726187721542662c6 (diff)
invoice watermarks, #24665
Diffstat (limited to 'FS/FS/invoice_conf.pm')
-rw-r--r--FS/FS/invoice_conf.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/FS/FS/invoice_conf.pm b/FS/FS/invoice_conf.pm
index da448b8..d88c89a 100644
--- a/FS/FS/invoice_conf.pm
+++ b/FS/FS/invoice_conf.pm
@@ -49,6 +49,8 @@ and supports the FS::Conf interface. The following fields are supported:
=item htmlreturnaddress - return address (HTML)
+=item htmlwatermark - watermark to show in background (HTML)
+
=item latexnotes - "notes" section (LaTeX)
=item latexfooter - footer (LaTeX)
@@ -59,6 +61,8 @@ and supports the FS::Conf interface. The following fields are supported:
=item latexsmallfooter - footer for pages after the first (LaTeX)
+=item latexwatermark - watermark to show in background (LaTeX)
+
=item with_latexcoupon - 'Y' to print the payment coupon (LaTeX)
=item lpr - command to print the invoice (passed on stdin as a PDF)
@@ -185,11 +189,13 @@ sub check {
|| $self->ut_anything('htmlfooter')
|| $self->ut_anything('htmlsummary')
|| $self->ut_anything('htmlreturnaddress')
+ || $self->ut_anything('htmlwatermark')
|| $self->ut_anything('latexnotes')
|| $self->ut_anything('latexfooter')
|| $self->ut_anything('latexsummary')
|| $self->ut_anything('latexsmallfooter')
|| $self->ut_anything('latexreturnaddress')
+ || $self->ut_anything('latexwatermark')
# flags
|| $self->ut_flag('with_latexcoupon')
;