summaryrefslogtreecommitdiff
path: root/httemplate/elements
diff options
context:
space:
mode:
authorMitch Jackson <mitch@freeside.biz>2017-11-27 19:13:40 +0000
committerMitch Jackson <mitch@freeside.biz>2017-12-07 21:57:48 +0000
commitffac6901129413984e23e53efb97d2c536481d42 (patch)
treeef14fa62d456564b6fc5673412956300b2778a47 /httemplate/elements
parent3e5c16b4dcd1121cbac397463164299e248ed48c (diff)
Added option for Credit Report to include Voided Credits RT#73200
Diffstat (limited to 'httemplate/elements')
-rw-r--r--httemplate/elements/tr-select-show_voided_credits.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/httemplate/elements/tr-select-show_voided_credits.html b/httemplate/elements/tr-select-show_voided_credits.html
new file mode 100644
index 000000000..35c0cf401
--- /dev/null
+++ b/httemplate/elements/tr-select-show_voided_credits.html
@@ -0,0 +1,15 @@
+ <TR>
+ <TD ALIGN="right"><% $opt{'label'} || 'Show Voided Credits' %></TD>
+ <TD>
+ <select name='show_voided_credits'>
+ <option value=""></option>
+ <option value="0">no</option>
+ <option value="1">yes</option>
+ </select>
+ </TD>
+ </TR>
+<%init>
+
+my %opt = @_;
+
+</%init>