summaryrefslogtreecommitdiff
path: root/httemplate/elements/select-cust-fields.html
diff options
context:
space:
mode:
authorC.J. Adams-Collier <cjac@colliertech.org>2014-09-09 13:16:21 -0700
committerC.J. Adams-Collier <cjac@colliertech.org>2014-09-16 17:19:37 -0700
commit47697b2c3988393de996dca3889a24c480c586b5 (patch)
tree08165e884556872f8608d6df53f1c8ab4aa6ad52 /httemplate/elements/select-cust-fields.html
parent9d96031e79187a549c2c150e96363d421e59efc5 (diff)
have expanded the AR aging summary to include other fields. Have not yet populated the fields. FS RT #27208
Diffstat (limited to 'httemplate/elements/select-cust-fields.html')
-rw-r--r--httemplate/elements/select-cust-fields.html22
1 files changed, 9 insertions, 13 deletions
diff --git a/httemplate/elements/select-cust-fields.html b/httemplate/elements/select-cust-fields.html
index 98feaf85c..5e3063877 100644
--- a/httemplate/elements/select-cust-fields.html
+++ b/httemplate/elements/select-cust-fields.html
@@ -1,22 +1,18 @@
-%
-% my( $cust_fields, %opt ) = @_;
-%
-% use FS::ConfDefaults;
-% $opt{'avail_fields'} ||= [ FS::ConfDefaults->cust_fields_avail() ];
-%
-% tie my %hash, 'Tie::IxHash', @{ $opt{'avail_fields'} };
-%
-%
+<%init>
+ my( $cust_fields, %opt ) = @_;
+ use FS::ConfDefaults;
+ $opt{'avail_fields'} ||= [ FS::ConfDefaults->cust_fields_avail() ];
+
+ tie my %hash, 'Tie::IxHash', @{ $opt{'avail_fields'} };
+</%init>
<SELECT NAME="cust_fields">
<OPTION VALUE="">(configured default)
-%
-% foreach my $value ( keys %hash ) {
-
- <OPTION VALUE="<% $value %>"><% $hash{$value} %>
+% foreach my $value ( keys %hash ) {
+ <OPTION VALUE="<% $value %>"><% $hash{$value} %>
% }