blob: 2655f51427532ffe4e7a1b0391cd05886077a6bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
% if ( $conf->exists('show_stateid') ) {
<TR>
<TD ALIGN="right"><% $stateid_label %></TD>
<TD><INPUT TYPE="text" NAME="stateid" VALUE="<% $stateid %>" SIZE=12></TD>
<TD><& /elements/select-state.html,
state => $cust_main->stateid_state,
country => $cust_main->country, # how does this work on new customer?
prefix => 'stateid_',
disable_countyupdate => 1,
&></TD>
</TR>
% } else {
<INPUT TYPE="hidden" NAME="stateid" VALUE="<% $stateid %>">
<INPUT TYPE="hidden" NAME="stateid_state" VALUE="<% $cust_main->stateid_state %>">
% }
<%init>
my $cust_main = shift;
my $conf = FS::Conf->new;
my $stateid;
if ( $cgi->param('error') ) {
$stateid = $cust_main->stateid;
} elsif ( $cust_main->custnum ) {
$stateid = $cust_main->masked('stateid');
} else {
$stateid = '';
}
$cust_main->set('stateid_state' => $cust_main->state)
unless $cust_main->stateid_state;
my $stateid_label = FS::Msgcat::_gettext('stateid') =~ /^(stateid)?$/
? 'Driver’s License'
: FS::Msgcat::_gettext('stateid') || 'Driver’s License';
my $stateid_state_label =
FS::Msgcat::_gettext('stateid_state') =~ /^(stateid_state)?$/
? 'Driver’s License State'
: FS::Msgcat::_gettext('stateid') || 'Driver’s License State';
</%init>
|