Merge branch 'master' of git.freeside.biz:/home/git/freeside
[freeside.git] / httemplate / edit / process / quick-cust_pkg.cgi
1 %if ($error) {
2 %  $cgi->param('error', $error);
3 <% $cgi->redirect(popurl(3). 'misc/order_pkg.html?'. $cgi->query_string ) %>
4 %} else {
5 %  my $show = $curuser->default_customer_view =~ /^(jumbo|packages)$/
6 %               ? ''
7 %               : ';show=packages';
8 %
9 %  my $redir_url = popurl(3);
10 %  if ( $svcpart ) { # for going straight to service provisining after ordering
11 %    $redir_url .= 'edit/'.$part_svc->svcdb.'.cgi?'.
12 %                    'pkgnum='.$cust_pkg->pkgnum. ";svcpart=$svcpart";
13 %    $redir_url .= ";qualnum=$qualnum" if $qualnum;
14 %  } elsif ( $quotationnum ) {
15 %    $redir_url .= "view/quotation.html?quotationnum=$quotationnum";
16 %  } else {
17 %    my $custnum = $cust_main->custnum;
18 %    my $frag = "cust_pkg". $cust_pkg->pkgnum;
19 %    $redir_url .=
20 %      "view/cust_main.cgi?custnum=$custnum$show;fragment=$frag#$frag";
21 %  }
22
23 <% header('Package ordered') %>
24   <SCRIPT TYPE="text/javascript">
25     // XXX fancy ajax rebuild table at some point, but a page reload will do for now
26
27     // XXX chop off trailing #target and replace... ?
28     window.top.location = '<% $redir_url %>';
29
30   </SCRIPT>
31
32   </BODY></HTML>
33 %}
34 <%init>
35
36 my $curuser = $FS::CurrentUser::CurrentUser;
37
38 die "access denied"
39   unless $curuser->access_right('Order customer package');
40
41 my $cust_main;
42 if ( $cgi->param('custnum') =~ /^(\d+)$/ ) {
43   my $custnum = $1;
44   $cust_main = qsearchs({
45     'table'     => 'cust_main',
46     'hashref'   => { 'custnum' => $custnum },
47     'extra_sql' => ' AND '. $FS::CurrentUser::CurrentUser->agentnums_sql,
48   });
49 }
50
51 my $prospect_main;
52 if ( $cgi->param('prospectnum') =~ /^(\d+)$/ ) {
53   my $prospectnum = $1;
54   $prospect_main = qsearchs({
55     'table'     => 'prospect_main',
56     'hashref'   => { 'prospectnum' => $prospectnum },
57     'extra_sql' => ' AND '. $FS::CurrentUser::CurrentUser->agentnums_sql,
58   });
59 }
60
61 die 'no custnum or prospectnum' unless $cust_main || $prospect_main;
62
63 #probably not necessary, taken care of by cust_pkg::check
64 $cgi->param('pkgpart') =~ /^(\d+)$/
65   or die 'illegal pkgpart '. $cgi->param('pkgpart');
66 my $pkgpart = $1;
67 $cgi->param('quantity') =~ /^(\d*)$/
68   or die 'illegal quantity '. $cgi->param('quantity');
69 my $quantity = $1 || 1;
70 $cgi->param('refnum') =~ /^(\d*)$/
71   or die 'illegal refnum '. $cgi->param('refnum');
72 my $refnum = $1;
73 $cgi->param('contactnum') =~ /^(\-?\d*)$/
74   or die 'illegal contactnum '. $cgi->param('contactnum');
75 my $contactnum = $1;
76 $cgi->param('locationnum') =~ /^(\-?\d*)$/
77   or die 'illegal locationnum '. $cgi->param('locationnum');
78 my $locationnum = $1;
79 $cgi->param('discountnum') =~ /^(\-?\d*)$/
80   or die 'illegal discountnum '. $cgi->param('discountnum');
81 my $discountnum = $1;
82
83 # for going right to a provision service after ordering a package
84 my( $svcpart, $part_svc ) = ( '', '' );
85 if ( $cgi->param('svcpart') ) {
86   $cgi->param('svcpart') =~ /^(\-?\d*)$/
87      or die 'illegal svcpart '. $cgi->param('svcpart');
88   $svcpart = $1;
89   $part_svc = qsearchs('part_svc', { 'svcpart' => $svcpart } )
90     or die "unknown svcpart $svcpart";
91 }
92
93 my $qualnum = '';
94 if ( $cgi->param('qualnum') =~ /^(\d+)$/ ) {
95   $qualnum = $1;
96 }
97 my $quotationnum = '';
98 if ( $cgi->param('quotationnum') =~ /^(\d+)$/ ) {
99   $quotationnum = $1;
100 }
101 # verify this quotation is visible to this user
102
103 my $cust_pkg = '';
104 my $quotation_pkg = '';
105 my $error = '';
106
107 my %hash = (
108     'pkgpart'              => $pkgpart,
109     'quantity'             => $quantity,
110     'start_date'           => ( scalar($cgi->param('start_date'))
111                                   ? parse_datetime($cgi->param('start_date'))
112                                   : ''
113                               ),
114     'refnum'               => $refnum,
115     'contactnum'           => $contactnum,
116     'locationnum'          => $locationnum,
117     'discountnum'          => $discountnum,
118     #for the create a new discount case
119     'discountnum__type'    => scalar($cgi->param('discountnum__type')),
120     'discountnum_amount'   => scalar($cgi->param('discountnum_amount')),
121     'discountnum_percent'  => scalar($cgi->param('discountnum_percent')),
122     'discountnum_months'   => scalar($cgi->param('discountnum_months')),
123     'discountnum_setup'    => scalar($cgi->param('discountnum_setup')),
124     'contract_end'         => ( scalar($cgi->param('contract_end'))
125                                   ? parse_datetime($cgi->param('contract_end'))
126                                   : ''
127                               ),
128      'waive_setup'         => ( $cgi->param('waive_setup') eq 'Y' ? 'Y' : '' ),
129 );
130 $hash{'custnum'} = $cust_main->custnum if $cust_main;
131
132 if ( $quotationnum ) {
133
134   $quotation_pkg = new FS::quotation_pkg \%hash;
135   $quotation_pkg->quotationnum($quotationnum);
136   $quotation_pkg->prospectnum($prospect_main->prospectnum) if $prospect_main;
137
138   #XXX handle new location
139   $error = $quotation_pkg->insert;
140
141 } else {
142
143   $cust_pkg = new FS::cust_pkg \%hash;
144
145   $cust_pkg->no_auto( scalar($cgi->param('no_auto')) );
146
147   my %opt = ( 'cust_pkg' => $cust_pkg );
148
149   if ( $contactnum == -1 ) {
150     my $contact = FS::contact->new({
151       'custnum' => scalar($cgi->param('custnum')),
152       map { $_ => scalar($cgi->param("contactnum_$_")) } qw( first last )
153     });
154     $opt{'contact'} = $contact;
155   }
156
157   if ( $locationnum == -1 ) {
158     my $cust_location = FS::cust_location->new({
159       map { $_ => scalar($cgi->param($_)) }
160           ('custnum', FS::cust_main->location_fields)
161     });
162     $opt{'cust_location'} = $cust_location;
163   } else {
164     $opt{'locationnum'} = $locationnum;
165   }
166
167   $error = $cust_main->order_pkg( \%opt );
168
169 }
170
171 </%init>