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('locationnum') =~ /^(\-?\d*)$/
74   or die 'illegal locationnum '. $cgi->param('locationnum');
75 my $locationnum = $1;
76 $cgi->param('discountnum') =~ /^(\-?\d*)$/
77   or die 'illegal discountnum '. $cgi->param('discountnum');
78 my $discountnum = $1;
79
80 # for going right to a provision service after ordering a package
81 my( $svcpart, $part_svc ) = ( '', '' );
82 if ( $cgi->param('svcpart') ) {
83   $cgi->param('svcpart') =~ /^(\-?\d*)$/
84      or die 'illegal svcpart '. $cgi->param('svcpart');
85   $svcpart = $1;
86   $part_svc = qsearchs('part_svc', { 'svcpart' => $svcpart } )
87     or die "unknown svcpart $svcpart";
88 }
89
90 my $qualnum = '';
91 if ( $cgi->param('qualnum') =~ /^(\d+)$/ ) {
92   $qualnum = $1;
93 }
94 my $quotationnum = '';
95 if ( $cgi->param('quotationnum') =~ /^(\d+)$/ ) {
96   $quotationnum = $1;
97 }
98 # verify this quotation is visible to this user
99
100 my $cust_pkg = '';
101 my $quotation_pkg = '';
102 my $error = '';
103
104 my %hash = (
105     'pkgpart'              => $pkgpart,
106     'quantity'             => $quantity,
107     'start_date'           => ( scalar($cgi->param('start_date'))
108                                   ? parse_datetime($cgi->param('start_date'))
109                                   : ''
110                               ),
111     'refnum'               => $refnum,
112     'locationnum'          => $locationnum,
113     'discountnum'          => $discountnum,
114     #for the create a new discount case
115     'discountnum__type'    => scalar($cgi->param('discountnum__type')),
116     'discountnum_amount'   => scalar($cgi->param('discountnum_amount')),
117     'discountnum_percent'  => scalar($cgi->param('discountnum_percent')),
118     'discountnum_months'   => scalar($cgi->param('discountnum_months')),
119     'discountnum_setup'    => scalar($cgi->param('discountnum_setup')),
120     'contract_end'         => ( scalar($cgi->param('contract_end'))
121                                   ? parse_datetime($cgi->param('contract_end'))
122                                   : ''
123                               ),
124      'waive_setup'         => ( $cgi->param('waive_setup') eq 'Y' ? 'Y' : '' ),
125 );
126 $hash{'custnum'} = $cust_main->custnum if $cust_main;
127
128 if ( $quotationnum ) {
129
130   $quotation_pkg = new FS::quotation_pkg \%hash;
131   $quotation_pkg->quotationnum($quotationnum);
132   $quotation_pkg->prospectnum($prospect_main->prospectnum) if $prospect_main;
133
134   #XXX handle new location
135   $error = $quotation_pkg->insert;
136
137 } else {
138
139   $cust_pkg = new FS::cust_pkg \%hash;
140
141   $cust_pkg->no_auto( scalar($cgi->param('no_auto')) );
142
143   my %opt = ( 'cust_pkg' => $cust_pkg );
144
145   if ( $locationnum == -1 ) {
146     my $cust_location = new FS::cust_location {
147       map { $_ => scalar($cgi->param($_)) }
148           qw( custnum address1 address2 city county state zip country geocode )
149     };
150     $opt{'cust_location'} = $cust_location;
151   }
152
153   $error = $cust_main->order_pkg( \%opt );
154
155 }
156
157 </%init>