summaryrefslogtreecommitdiff
path: root/httemplate/edit/cust_main_county-add.cgi
blob: 7821bd8d2d622eaa6e94c7608b2c6121a1f9baf0 (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
40
41
42
43
44
45
46
47
48
49
50
<% include('/elements/header-popup.html', "Enter additional $title") %>

<% include('/elements/error.html') %>

<FORM ACTION="<% $p1 %>process/cust_main_county-add.cgi" METHOD=POST>

<INPUT TYPE="hidden" NAME="taxnum"  VALUE="<% $taxnum %>">
<INPUT TYPE="hidden" NAME="what"  VALUE="<% $what %>">

<TEXTAREA NAME="expansion" COLS="50" ROWS="16"><% $expansion |h %></TEXTAREA>

<BR>
<INPUT TYPE="submit" VALUE="Add <% $title %>">

</FORM>
</BODY>
</HTML>

<%init>

die "access denied"
  unless $FS::CurrentUser::CurrentUser->access_right('Configuration');

$cgi->param('taxnum') =~ /^(\d+)$/ or die "Illegal taxnum";
my $taxnum = $1;

my $expansion = '';
if ( $cgi->param('error') ) {
  $expansion = $cgi->param('expansion');
}

my $cust_main_county = qsearchs('cust_main_county',{'taxnum'=>$taxnum})
  or die "cust_main_county.taxnum $taxnum not found";

$cgi->param('what') =~ /^(\w+)$/ or die "Illegal what";
my $what = $1;

my $title;
if ( $what eq 'city' ) {
  $title = 'Cities';
} elsif ( $what eq 'county' ) {
  $title = 'Counties';
} else { #???
  die "unknown what $what";
  #$title = 'States/Provinces';
}

my $p1 = popurl(1);

</%init>