no need for a one-choice "Add new location" location dropdown on prospect add, RT...
authorIvan Kohler <ivan@freeside.biz>
Mon, 15 May 2017 23:18:19 +0000 (16:18 -0700)
committerIvan Kohler <ivan@freeside.biz>
Mon, 15 May 2017 23:18:19 +0000 (16:18 -0700)
httemplate/elements/select-cust_location.html

index 29563c5..24df352 100644 (file)
@@ -1,3 +1,13 @@
+% my @pre_options  = $opt{pre_options}  ? @{ $opt{pre_options} } : ();
+% if (     ! @pre_options
+%       && ! $cust_main
+%       && ! $opt{is_optional}
+%       && ! @{ $opt{cust_location} }
+%       && $addnew
+% ) {
+    <INPUT NAME="locationnum" ID="locationnum" TYPE="hidden" VALUE="-1">
+% } else {
+
 <SELECT NAME     = "locationnum"
         ID       = "locationnum"
 %     if ( $opt{onchange} ) {
@@ -6,7 +16,6 @@
     >
 
 % #false laziness w/select-table.html
-% my @pre_options  = $opt{pre_options}  ? @{ $opt{pre_options} } : ();
 % while ( @pre_options ) { 
 %   my $pre_opt   = shift(@pre_options);
 %   my $pre_label = shift(@pre_options);
@@ -48,6 +57,7 @@
 % }
 
 </SELECT>
+% }
 <%init>
 
 my $conf = new FS::Conf;