summaryrefslogtreecommitdiff
path: root/httemplate/edit/process/part_export.cgi
blob: 209419f0b029fe6da101fe8f44ce3ed5c31225da (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
%if ( $error ) {
%  $cgi->param('error', $error );
<% $cgi->redirect(popurl(2). "part_export.cgi?". $cgi->query_string ) %>
%} else {
<% $cgi->redirect(popurl(3). "browse/part_export.cgi") %>
%}
<%init>

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

my $exportnum = $cgi->param('exportnum');

my $old = qsearchs('part_export', { 'exportnum'=>$exportnum } ) if $exportnum;

#fixup options
#warn join('-', split(',',$cgi->param('options')));
my %options = map {
  my @values = $cgi->param($_);
  my $value = scalar(@values) > 1 ? join (' ', @values) : $values[0];
  $value =~ s/\r\n/\n/g; #browsers? (textarea)
  $_ => $value;
} split(',', $cgi->param('options'));

my $new = new FS::part_export ( {
  map {
    $_, scalar($cgi->param($_));
  } fields('part_export')
} );

my $error;
if ( $exportnum ) {
  #warn $old;
  #warn $exportnum;
  #warn $new->machine;
  $error = $new->replace($old,\%options);
} else {
  $error = $new->insert(\%options);
#  $exportnum = $new->exportnum;
}

</%init>