d777e17da1c4a79ba54948f371b636c1f5ae9b50
[freeside.git] / httemplate / misc / order_pkg.html
1 <& /elements/header-popup.html, {
2      'title' =>  $quotationnum ? mt('Add package to quotation')
3                                : mt('Order new package'),
4      'nobr'  => 1,
5    }
6 &>
7
8 <LINK REL="stylesheet" TYPE="text/css" HREF="../elements/calendar-win2k-2.css" TITLE="win2k-2">
9 <SCRIPT TYPE="text/javascript" SRC="../elements/calendar_stripped.js"></SCRIPT>
10 <SCRIPT TYPE="text/javascript" SRC="../elements/calendar-en.js"></SCRIPT>
11 <SCRIPT TYPE="text/javascript" SRC="../elements/calendar-setup.js"></SCRIPT>
12
13 <SCRIPT TYPE="text/javascript" SRC="../elements/order_pkg.js"></SCRIPT>
14
15 <& /elements/error.html &>
16
17 <FORM NAME="OrderPkgForm" ACTION="<% $p %>edit/process/quick-cust_pkg.cgi" METHOD="POST">
18
19 <INPUT TYPE="hidden" NAME="custnum" VALUE="<% $cust_main ? $cust_main->custnum : '' %>">
20 <INPUT TYPE="hidden" NAME="prospectnum" VALUE="<% $prospect_main ? $prospect_main->prospectnum : '' %>">
21 <INPUT TYPE="hidden" NAME="qualnum" VALUE="<% scalar($cgi->param('qualnum')) |h %>">
22 <INPUT TYPE="hidden" NAME="quotationnum" VALUE="<% $quotationnum %>">
23 % if ( $svcpart ) {
24     <INPUT TYPE="hidden" NAME="svcpart" VALUE="<% $svcpart %>">
25 % }
26
27 % my $num_sales = $agent->num_sales;
28 % my $conf_pkg_referral = $conf->exists('pkg_referral');
29 % my $show_sales = $num_sales && $conf_pkg_referral;
30 % my $show_sales_table = $num_sales || $conf_pkg_referral;
31
32 % if ( $show_sales ) {
33   <FONT CLASS="fsinnerbox-title"><% mt('Sales') |h %></FONT>
34 % }
35 % if ( $show_sales_table ) {
36   <% ntable("#cccccc") %>
37 % }
38
39 <& /elements/tr-select-sales.html,
40      'curr_value' => scalar($cgi->param('salesnum')),
41      'agentnum'   => $agent->agentnum,
42      'th'         => 1,
43 &>
44
45 % if ( $conf->exists('pkg_referral') ) {
46   <& /elements/tr-select-part_referral.html,
47                'curr_value'    => scalar( $cgi->param('refnum') ), #get rid of empty_label first# || $cust_main->refnum,
48                'disable_empty' => 1,
49                'multiple'      => $conf->exists('pkg_referral-multiple'),
50                'colspan'       => 7,
51   &>
52 % }
53
54 % if ( $show_sales_table ) {
55   </TABLE><BR>
56 % }
57
58 <FONT CLASS="fsinnerbox-title"><% mt('Package') |h %></FONT>
59 <% ntable("#cccccc") %>
60
61 % if ( $part_pkg ) {
62     <INPUT TYPE="hidden" NAME="pkgpart" VALUE="<% $part_pkg->pkgpart %>">
63     <TR>
64       <TH ALIGN="right"><% mt('Package') |h %></TH>
65       <TD COLSPAN=6><% $part_pkg->pkg_comment |h %></TD>
66     </TR>
67 % } else {
68     <& /elements/tr-select-cust-part_pkg.html,
69                  'curr_value'    => $pkgpart,
70                  'classnum'      => -1,
71                  'cust_main'     => $cust_main,
72                  'prospect_main' => $prospect_main,
73     &>
74 % }
75
76 <& /elements/tr-input-pkg-quantity.html, curr_value => $quantity &>
77
78 % if ( $cust_main && $cust_main->payby =~ /^(CARD|CHEK)$/ ) {
79 %   my $what = lc(FS::payby->shortname($cust_main->payby));
80     <TR>
81       <TH ALIGN="right"><% mt("Disable automatic $what charge") |h %> </TH>
82       <TD COLSPAN=6><INPUT TYPE="checkbox" NAME="no_auto" VALUE="Y"></TD>
83     </TR>
84 % }
85
86 <TR>
87   <TH ALIGN="right"><% mt('Start') |h %> </TD>
88   <TD COLSPAN=6>
89     <INPUT TYPE="radio" NAME="start" ID="start_now" VALUE="" <% $cgi->param('start') eq '' ? 'CHECKED' : ''%>>Now
90     &emsp;
91     <INPUT TYPE="radio" NAME="start" ID="start_on_hold" VALUE="on_hold" <% $cgi->param('start') eq 'on_hold' ? 'CHECKED' : ''%>>On hold
92     &emsp;
93     <INPUT TYPE="radio" NAME="start" ID="start_on_date" VALUE="on_date" <% $cgi->param('start') eq 'date' ? 'CHECKED' : ''%>>On date
94
95     <& /elements/input-date-field.html,{
96                 'name'      => 'start_date',
97                 'format'    => $date_format,
98                 'value'     => '',
99                 'noinit'    => 1,
100               } &>
101   </TD>
102 </TR>
103
104 <TR>
105   <TH ALIGN="right"><% mt('Contract end date') |h %> </TD>
106   <TD COLSPAN=6>
107     <& /elements/input-date-field.html,{
108                 'name'      => 'contract_end',
109                 'format'    => $date_format,
110                 'value'     => '',
111                 'noinit'    => 1,
112                 } &>
113   </TD>
114 </TR>
115
116 </TABLE><BR>
117
118 % my $discount_cust_pkg = $curuser->access_right('Discount customer package');
119 % my $waive_setup_fee   = $curuser->access_right('Waive setup fee');
120 %
121 % if ( $discount_cust_pkg || $waive_setup_fee ) {
122   <FONT CLASS="fsinnerbox-title"><% mt('Discounting') |h %></FONT>
123   <% ntable("#cccccc") %>
124
125 %   if ( $waive_setup_fee ) {
126       <TR>
127         <TH ALIGN="right"><% mt('Waive setup fee') |h %> </TH>
128         <TD COLSPAN=6><INPUT TYPE="checkbox" NAME="waive_setup" VALUE="Y"></TD>
129       </TR>
130 %   }
131
132 %   if ( $discount_cust_pkg ) {
133       <& /elements/tr-select-discount.html,
134                'element_etc' => 'DISABLED',
135                'colspan'     => 7,
136                'cgi'         => $cgi,
137       &>
138 %   }
139
140   </TABLE><BR>
141
142 % }
143
144
145 % my $lock_locationnum = scalar($cgi->param('lock_locationnum'));
146 % my $contact_title = $lock_locationnum ? 'Contact'
147 %                                       : 'Contact and Location';
148 <FONT CLASS="fsinnerbox-title"><% mt($contact_title) |h %></FONT>
149 <% ntable("#cccccc") %>
150
151 <& /elements/tr-select-contact.html,
152              'cgi'           => $cgi,
153              'cust_main'     => $cust_main,
154              'prospect_main' => $prospect_main,
155 &>
156
157 % if ( $cgi->param('lock_locationnum') ) {
158
159     <INPUT TYPE  = "hidden"
160            NAME  = "locationnum"
161            ID    = "locationnum"
162            VALUE = "<% scalar($cgi->param('lock_locationnum')) |h %>"
163     >
164
165 % } else {
166
167     <& /elements/tr-select-cust_location.html,
168                  'cgi'           => $cgi,
169                  'cust_main'     => $cust_main,
170                  'prospect_main' => $prospect_main,
171     &>
172
173 % }
174
175 </TABLE>
176
177 % unless ( $cgi->param('lock_locationnum') ) {
178
179   <& /elements/standardize_locations.html,
180                 'form'        => "OrderPkgForm",
181                 'callback'    => 'document.OrderPkgForm.submit()',
182                 'with_census' => 1,
183                 'with_census_functions' => 1,
184   &>
185
186 % }
187
188 <BR>
189 % my $onclick = $cgi->param('lock_locationnum')
190 %                 ? 'document.OrderPkgForm.submit()'
191 %                 : 'standardize_new_location()';
192 <INPUT NAME    = "submitButton"
193        TYPE    = "button"
194        VALUE   = "<% mt("Order Package") |h %>"
195        onClick = "this.disabled=true; <% $onclick %>;"
196        <% $pkgpart ? '' : 'DISABLED' %>
197 >
198
199 </FORM>
200 </BODY>
201 </HTML>
202 <%init>
203
204 my $curuser = $FS::CurrentUser::CurrentUser;
205
206 die "access denied"
207   unless $curuser->access_right('Order customer package');
208
209 my $conf = new FS::Conf;
210 my $date_format = $conf->config('date_format') || '%m/%d/%Y';
211
212 my $cust_main = '';
213 if ( $cgi->param('custnum') =~ /^(\d+)$/ ) {
214   my $custnum = $1;
215   $cust_main = qsearchs({
216     'table'     => 'cust_main',
217     'hashref'   => { 'custnum' => $custnum },
218     'extra_sql' => ' AND '. $curuser->agentnums_sql,
219   });
220 }
221
222 my $prospect_main = '';
223 if ( $cgi->param('prospectnum') =~ /^(\d+)$/ ) {
224   my $prospectnum = $1;
225   $prospect_main = qsearchs({
226     'table'     => 'prospect_main',
227     'hashref'   => { 'prospectnum' => $prospectnum },
228     'extra_sql' => ' AND '. $curuser->agentnums_sql,
229   });
230 }
231
232 my $quotationnum = '';
233 if ( $cgi->param('quotationnum') =~ /^(\d+)$/ ) {
234   $quotationnum = $1;
235 }
236
237 die 'no custnum or prospectnum' unless $cust_main || $prospect_main;
238
239 my $agent =  $cust_main ? $cust_main->agent
240                         : $prospect_main->agent;
241
242 my $part_pkg = '';
243 if ( $cgi->param('lock_pkgpart') ) {
244   $part_pkg = qsearchs({
245     'table'     => 'part_pkg',
246     'hashref'   => { 'pkgpart' => scalar($cgi->param('lock_pkgpart')) },
247     'extra_sql' => ' AND '. FS::part_pkg->agent_pkgs_sql($agent),
248   })
249     or die "unknown pkgpart ". $cgi->param('lock_pkgpart');
250 }
251
252 my $pkgpart = $part_pkg ? $part_pkg->pkgpart : scalar($cgi->param('pkgpart'));
253
254 my $quantity = 1;
255 if ( $cgi->param('quantity') =~ /^\s*(\d+)\s*$/ ) {
256   $quantity = $1;
257 }
258
259 my $format = $date_format. ' %T %z (%Z)'; #false laziness w/REAL_cust_pkg.cgi?
260
261 my $svcpart = scalar($cgi->param('svcpart'));
262
263 </%init>