summaryrefslogtreecommitdiff
path: root/httemplate/edit/process/cust_main_county.cgi
blob: 0800789b550d9b61b9a10c4e9fc866cb8bce9c61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<%

foreach ( $cgi->param ) {
  /^tax(\d+)$/ or die "Illegal form $_!";
  my($taxnum)=$1;
  my($old)=qsearchs('cust_main_county',{'taxnum'=>$taxnum})
    or die "Couldn't find taxnum $taxnum!";
  next unless $old->getfield('tax') ne $cgi->param("tax$taxnum");
  my(%hash)=$old->hash;
  $hash{tax}=$cgi->param("tax$taxnum");
  my($new)=new FS::cust_main_county \%hash;
  my($error)=$new->replace($old);
  if ( $error ) {
    $cgi->param('error', $error);
    print $cgi->redirect(popurl(2). "cust_main_county.cgi?". $cgi->query_string );
    myexit();
  }
}

print $cgi->redirect(popurl(3). "browse/cust_main_county.cgi");

%>