1 <& /elements/header-popup.html, {
2 'title' => $quotationnum ? mt('Add package to quotation')
3 : mt('Order new package'),
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>
13 <SCRIPT TYPE="text/javascript" SRC="../elements/order_pkg.js"></SCRIPT>
15 <& /elements/error.html &>
17 <FORM NAME="OrderPkgForm" ACTION="<% $p %>edit/process/quick-cust_pkg.cgi" METHOD="POST">
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 %>">
24 <INPUT TYPE="hidden" NAME="svcpart" VALUE="<% $svcpart %>">
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;
32 % if ( $show_sales ) {
33 <FONT CLASS="fsinnerbox-title"><% mt('Sales') |h %></FONT>
35 % if ( $show_sales_table ) {
36 <% ntable("#cccccc") %>
39 <& /elements/tr-select-sales.html,
40 'curr_value' => scalar($cgi->param('salesnum')),
41 'agentnum' => $agent->agentnum,
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,
49 'multiple' => $conf->exists('pkg_referral-multiple'),
54 % if ( $show_sales_table ) {
58 <FONT CLASS="fsinnerbox-title"><% mt('Package') |h %></FONT>
59 <% ntable("#cccccc") %>
62 <INPUT TYPE="hidden" NAME="pkgpart" VALUE="<% $part_pkg->pkgpart %>">
64 <TH ALIGN="right"><% mt('Package') |h %></TH>
65 <TD COLSPAN=6><% $part_pkg->pkg_comment |h %></TD>
68 <& /elements/tr-select-cust-part_pkg.html,
69 'curr_value' => $pkgpart,
71 'cust_main' => $cust_main,
72 'prospect_main' => $prospect_main,
76 <& /elements/tr-input-pkg-quantity.html, curr_value => $quantity &>
78 % unless ( $quotationnum ) {
80 % if ( $cust_main && $cust_main->payby =~ /^(CARD|CHEK)$/ ) {
81 % my $what = lc(FS::payby->shortname($cust_main->payby));
83 <TH ALIGN="right"><% mt("Disable automatic $what charge") |h %> </TH>
84 <TD COLSPAN=6><INPUT TYPE="checkbox" NAME="no_auto" VALUE="Y"></TD>
89 <TH ALIGN="right"><% mt('Start') |h %> </TD>
91 <INPUT TYPE="radio" NAME="start" ID="start_now" VALUE="" <% $cgi->param('start') eq '' ? 'CHECKED' : ''%>>Now
93 <INPUT TYPE="radio" NAME="start" ID="start_on_hold" VALUE="on_hold" <% $cgi->param('start') eq 'on_hold' ? 'CHECKED' : ''%>>On hold
95 <INPUT TYPE="radio" NAME="start" ID="start_on_date" VALUE="on_date" <% $cgi->param('start') eq 'date' ? 'CHECKED' : ''%>>On date
97 <& /elements/input-date-field.html,{
98 'name' => 'start_date',
99 'format' => $date_format,
107 <TH ALIGN="right"><% mt('Contract end date') |h %> </TD>
109 <& /elements/input-date-field.html,{
110 'name' => 'contract_end',
111 'format' => $date_format,
122 % my $discount_cust_pkg = $curuser->access_right('Discount customer package');
123 % my $waive_setup_fee = $curuser->access_right('Waive setup fee');
125 % if ( $discount_cust_pkg || $waive_setup_fee ) {
126 <FONT CLASS="fsinnerbox-title"><% mt('Discounting') |h %></FONT>
127 <% ntable("#cccccc") %>
129 % if ( $waive_setup_fee ) {
131 <TH ALIGN="right"><% mt('Waive setup fee') |h %> </TH>
132 <TD COLSPAN=6><INPUT TYPE="checkbox" NAME="waive_setup" VALUE="Y"></TD>
136 % if ( $discount_cust_pkg ) {
137 <& /elements/tr-select-discount.html,
138 'element_etc' => 'DISABLED',
149 % my $lock_locationnum = scalar($cgi->param('lock_locationnum'));
150 % my $contact_title = $lock_locationnum ? 'Contact'
151 % : 'Contact and Location';
152 <FONT CLASS="fsinnerbox-title"><% mt($contact_title) |h %></FONT>
153 <% ntable("#cccccc") %>
155 <& /elements/tr-select-contact.html,
157 'cust_main' => $cust_main,
158 'prospect_main' => $prospect_main,
161 % if ( $cgi->param('lock_locationnum') ) {
163 <INPUT TYPE = "hidden"
166 VALUE = "<% scalar($cgi->param('lock_locationnum')) |h %>"
171 <& /elements/tr-select-cust_location.html,
173 'cust_main' => $cust_main,
174 'prospect_main' => $prospect_main,
181 % unless ( $cgi->param('lock_locationnum') ) {
183 <& /elements/standardize_locations.html,
184 'form' => "OrderPkgForm",
185 'callback' => 'document.OrderPkgForm.submit()',
187 'with_census_functions' => 1,
193 % my $onclick = $cgi->param('lock_locationnum')
194 % ? 'document.OrderPkgForm.submit()'
195 % : 'standardize_new_location()';
196 <INPUT NAME = "submitButton"
198 VALUE = "<% mt("Order Package") |h %>"
199 onClick = "this.disabled=true; <% $onclick %>;"
200 <% $pkgpart ? '' : 'DISABLED' %>
208 my $curuser = $FS::CurrentUser::CurrentUser;
211 unless $curuser->access_right('Order customer package');
213 my $conf = new FS::Conf;
214 my $date_format = $conf->config('date_format') || '%m/%d/%Y';
217 if ( $cgi->param('custnum') =~ /^(\d+)$/ ) {
219 $cust_main = qsearchs({
220 'table' => 'cust_main',
221 'hashref' => { 'custnum' => $custnum },
222 'extra_sql' => ' AND '. $curuser->agentnums_sql,
226 my $prospect_main = '';
227 if ( $cgi->param('prospectnum') =~ /^(\d+)$/ ) {
228 my $prospectnum = $1;
229 $prospect_main = qsearchs({
230 'table' => 'prospect_main',
231 'hashref' => { 'prospectnum' => $prospectnum },
232 'extra_sql' => ' AND '. $curuser->agentnums_sql,
236 my $quotationnum = '';
237 if ( $cgi->param('quotationnum') =~ /^(\d+)$/ ) {
241 die 'no custnum or prospectnum' unless $cust_main || $prospect_main;
243 my $agent = $cust_main ? $cust_main->agent
244 : $prospect_main->agent;
247 if ( $cgi->param('lock_pkgpart') ) {
248 $part_pkg = qsearchs({
249 'table' => 'part_pkg',
250 'hashref' => { 'pkgpart' => scalar($cgi->param('lock_pkgpart')) },
251 'extra_sql' => ' AND '. FS::part_pkg->agent_pkgs_sql($agent),
253 or die "unknown pkgpart ". $cgi->param('lock_pkgpart');
256 my $pkgpart = $part_pkg ? $part_pkg->pkgpart : scalar($cgi->param('pkgpart'));
259 if ( $cgi->param('quantity') =~ /^\s*(\d+)\s*$/ ) {
263 my $format = $date_format. ' %T %z (%Z)'; #false laziness w/REAL_cust_pkg.cgi?
265 my $svcpart = scalar($cgi->param('svcpart'));