merge NG auth, RT#21563
[freeside.git] / httemplate / edit / process / detach-cust_pkg.html
1 % if ($error) {
2 %   $cgi->param('error', $error);
3 %   $cgi->redirect(popurl(3). 'misc/detach_pkg.html?'. $cgi->query_string );
4 % } else {
5
6     <% header(emt("Package detached")) %>
7       <SCRIPT TYPE="text/javascript">
8         window.top.location.reload();
9       </SCRIPT>
10     </BODY>
11     </HTML>
12
13 % }
14 <%init>
15
16 my $curuser = $FS::CurrentUser::CurrentUser;
17
18 die "access denied"
19   unless $curuser->access_right('Change customer package');
20
21 my $cust_pkg = qsearchs({
22   'table'     => 'cust_pkg',
23   'addl_from' => 'LEFT JOIN cust_main USING ( custnum )',
24   'hashref'   => { 'pkgnum' => scalar($cgi->param('pkgnum')), },
25   'extra_sql' => ' AND '. $curuser->agentnums_sql,
26 });
27 die 'unknown pkgnum' unless $cust_pkg;
28
29 my $cust_location = new FS::cust_location {
30   map { $_ => scalar($cgi->param($_)) } FS::cust_main->location_fields
31 };
32
33 my $cust_main = new FS::cust_main {
34   ( map { ( $_, scalar($cgi->param($_)) ) } fields('cust_main') ),
35   ( map { ( "ship_$_", '' ) } FS::cust_main->location_fields ),
36   'bill_location' => $cust_location,
37   'ship_location' => $cust_location,
38 };
39
40 my $pkg_or_error = $cust_pkg->change( {
41   'keep_dates' => 1,
42   'cust_main'  => $cust_main,
43 } );
44
45 my $error = ref($pkg_or_error) ? '' : $pkg_or_error;
46
47 </%init>