merge NG auth, RT#21563
[freeside.git] / httemplate / edit / process / part_pkg.cgi
1 <% include( 'elements/process.html',
2               #'debug'             => 1,
3               'table'             => 'part_pkg',
4               'agent_virt'        => 1,
5               'agent_null_right'  => \@agent_null_right,
6               'redirect'          => $redirect_callback,
7               'viewall_dir'       => 'browse',
8               'viewall_ext'       => 'cgi',
9               'edit_ext'          => 'cgi',
10               'precheck_callback' => $precheck_callback,
11               'args_callback'     => $args_callback,
12               'process_m2m'       => \@process_m2m,
13               'process_o2m'       => \@process_o2m,
14           )
15 %>
16 <%init>
17
18 my $customizing = ( ! $cgi->param('pkgpart') && $cgi->param('pkgnum') );
19
20 my $curuser = $FS::CurrentUser::CurrentUser;
21
22 my $edit_global = 'Edit global package definitions';
23 my $customize   = 'Customize customer package';
24
25 die "access denied"
26   unless $curuser->access_right('Edit package definitions')
27       || $curuser->access_right($edit_global)
28       || ( $customizing && $curuser->access_right($customize) );
29
30 my @agent_null_right = ( $edit_global );
31 push @agent_null_right, $customize if $customizing;
32
33
34 my $precheck_callback = sub {
35   my( $cgi ) = @_;
36
37   my $conf = new FS::Conf;
38
39   foreach (qw( setuptax recurtax disabled )) {
40     $cgi->param($_, '') unless defined $cgi->param($_);
41   }
42
43   return 'Must select a tax class'
44     if $cgi->param('taxclass') eq '(select)';
45
46   my @agents = ();
47   foreach ($cgi->param('agent_type')) {
48     /^(\d+)$/;
49     push @agents, $1 if $1;
50   }
51   return "At least one agent type must be specified."
52     unless scalar(@agents)
53            || ( $cgi->param('clone') && $cgi->param('clone') =~ /^\d+$/ )
54            || ( !$cgi->param('pkgpart') && $conf->exists('agent-defaultpkg') )
55            || $cgi->param('disabled')
56            || $cgi->param('agentnum');
57
58   return '';
59
60 };
61
62 my $custnum = '';
63
64 my $args_callback = sub {
65   my( $cgi, $new ) = @_;
66   
67   my @args = ( 'primary_svc' => scalar($cgi->param('pkg_svc_primary')) );
68
69   ##
70   #options
71   ##
72   
73   $cgi->param('plan') =~ /^(\w+)$/ or die 'unparsable plan';
74   my $plan = $1;
75   
76   tie my %plans, 'Tie::IxHash', %{ FS::part_pkg::plan_info() };
77   my $href = $plans{$plan}->{'fields'};
78   
79   my $error = '';
80   my $options = $cgi->param($plan."__OPTIONS");
81   my @options = split(',', $options);
82   my %options =
83     map { my $optionname = $_;
84           my $param = $plan."__$optionname";
85           my $parser = exists($href->{$optionname}{parse})
86                          ? $href->{$optionname}{parse}
87                          : sub { shift };
88           my $value = join(', ', &$parser($cgi->param($param)));
89           my $check = $href->{$optionname}{check};
90           if ( $check && ! &$check($value) ) {
91             $value = join(', ', $cgi->param($param));
92             $error ||= "Illegal ".
93                          ($href->{$optionname}{name}||$optionname). ": $value";
94           }
95           ( $optionname => $value );
96         }
97         grep { $_ !~ /^report_option_/ }
98         @options;
99
100   foreach ( split(',', $cgi->param('taxproductnums') ) ) {
101     my $value = $cgi->param("taxproductnum_$_");
102     $error ||= "Illegal taxproductnum_$_: $value"
103       unless ( $value =~ /^\d*$/  );
104     $options{"usage_taxproductnum_$_"} = $value;
105   }
106
107   foreach ( grep $_, $cgi->param('report_option') ) {
108     $error ||= "Illegal optional report class: $_" unless ( $_ =~ /^\d*$/  );
109     $options{"report_option_$_"} = 1;
110   }
111
112   $options{$_} = scalar( $cgi->param($_) )
113     for (qw( setup_fee recur_fee disable_line_item_date_ranges ));
114   
115   push @args, 'options' => \%options;
116
117   ###
118   #pkg_svc
119   ###
120
121   my @svcparts = map { $_->svcpart } qsearch('part_svc', {});
122   my %pkg_svc = map { $_ => scalar($cgi->param("pkg_svc$_")) } @svcparts;
123   my %hidden_svc = map { $_ => scalar($cgi->param("hidden$_")) } @svcparts;
124
125   push @args, 'pkg_svc' => \%pkg_svc, 'hidden_svc' => \%hidden_svc;
126
127   ###
128   # cust_pkg and custnum_ref (inserts only)
129   ###
130   unless ( $cgi->param('pkgpart') ) {
131     push @args, 'cust_pkg'    => scalar($cgi->param('pkgnum')),
132                 'custnum_ref' => \$custnum;
133   }
134
135   my %part_pkg_vendor;
136   foreach my $param ( $cgi->param ) {
137     if ( $param =~ /^export(\d+)$/ && length($cgi->param($param)) > 0 ) {
138         $part_pkg_vendor{$1} = $cgi->param($param);
139     }
140   }
141   if ( keys %part_pkg_vendor > 0 ) {
142     push @args, 'part_pkg_vendor' => \%part_pkg_vendor;
143   }
144
145   #warn "args: ".join('/', @args). "\n";
146
147   @args;
148
149 };
150
151 my $redirect_callback = sub {
152   #my( $cgi, $new ) = @_;
153   return '' unless $custnum;
154   my $show = $curuser->default_customer_view =~ /^(jumbo|packages)$/
155                ? ''
156                : ';show=packages';
157   #my $frag = "cust_pkg$pkgnum"; #hack for IE ignoring real #fragment
158  
159   #can we link back to the specific customized package?  it would be nice...
160   popurl(3). "view/cust_main.cgi?custnum=$custnum$show;dummy=";
161 };
162
163 #these should probably move to @args above and be processed by part_pkg.pm...
164
165 $cgi->param('tax_override') =~ /^([\d,]+)$/;
166 my (@tax_overrides) = (grep "$_", split (",", $1));
167
168 my @process_m2m = (
169   {
170     'link_table'   => 'part_pkg_taxoverride',
171     'target_table' => 'tax_class',
172     'params'       => \@tax_overrides,
173   },
174   { 'link_table'   => 'part_pkg_discount',
175     'target_table' => 'discount',
176     'params'       => [ map $cgi->param($_),
177                         grep /^discountnum/, $cgi->param
178                       ],
179   },
180   { 'link_table'   => 'part_pkg_link',
181     'target_table' => 'part_pkg',
182     'base_field'   => 'src_pkgpart',
183     'target_field' => 'dst_pkgpart',
184     'hashref'      => { 'link_type' => 'svc', 'hidden' => '' },
185     'params'       => [ map $cgi->param($_),
186                         grep /^svc_dst_pkgpart/, $cgi->param
187                       ],
188   },
189   { 'link_table'   => 'part_pkg_link',
190     'target_table' => 'part_pkg',
191     'base_field'   => 'src_pkgpart',
192     'target_field' => 'dst_pkgpart',
193     'hashref'      => { 'link_type' => 'supp', 'hidden' => '' },
194     'params'       => [ map $cgi->param($_),
195                         grep /^supp_dst_pkgpart/, $cgi->param
196                       ],
197   },
198   map { 
199     my $hidden = $_;
200     { 'link_table'   => 'part_pkg_link',
201       'target_table' => 'part_pkg',
202       'base_field'   => 'src_pkgpart',
203       'target_field' => 'dst_pkgpart',
204       'hashref'      => { 'link_type' => 'bill', 'hidden' => $hidden },
205       'params'       => [ map { $cgi->param($_) }
206                           grep { my $param = "bill_dst_pkgpart__hidden";
207                                  my $digit = '';
208                                  (($digit) = /^bill_dst_pkgpart(\d+)/ ) &&
209                                  $cgi->param("$param$digit") eq $hidden;
210                                }
211                           $cgi->param
212                         ],
213     },
214   } ( '', 'Y' ),
215 );
216
217 foreach my $override_class ($cgi->param) {
218   next unless $override_class =~ /^tax_override_(\w+)$/;
219   my $class = $1;
220
221   my (@tax_overrides) = (grep "$_", split (",", $1))
222     if $cgi->param($override_class) =~ /^([\d,]+)$/;
223
224   push @process_m2m, {
225     'link_table'   => 'part_pkg_taxoverride',
226     'target_table' => 'tax_class',
227     'hashref'      => { 'usage_class' => $class },
228     'params'       => [ @tax_overrides ],
229   };
230
231 }
232
233 my $conf = new FS::Conf;
234
235 if ( $cgi->param('pkgpart') || ! $conf->exists('agent_defaultpkg') ) {
236   my @agents = ();
237   foreach ($cgi->param('agent_type')) {
238     /^(\d+)$/;
239     push @agents, $1 if $1;
240   }
241   push @process_m2m, {
242     'link_table'   => 'type_pkgs',
243     'target_table' => 'agent_type',
244     'params'       => \@agents,
245   };
246 }
247
248 my @process_o2m = (
249   {
250     'table'  => 'part_pkg_msgcat',
251     'fields' => [qw( locale pkg )],
252   },
253 );
254
255 </%init>