summaryrefslogtreecommitdiff
path: root/httemplate/misc/cancel_pkg.html
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2017-03-06 09:27:01 -0800
committerIvan Kohler <ivan@freeside.biz>2017-03-06 09:27:01 -0800
commit9e878943532b9ecb84bac1db76c05cf9bc09d2cc (patch)
treec45e4d3c7949b9a8896be7dac0783d5517d9aa81 /httemplate/misc/cancel_pkg.html
parentee5061a32e7b9054a982f3ed5260a5946e6b65a6 (diff)
parentc56b3fce5486b08d986743d1c2a9cc2e6aafa5bc (diff)
Merge branch 'master' of git.freeside.biz:/home/git/freeside
Diffstat (limited to 'httemplate/misc/cancel_pkg.html')
-rwxr-xr-xhttemplate/misc/cancel_pkg.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/httemplate/misc/cancel_pkg.html b/httemplate/misc/cancel_pkg.html
index d3ca9964f..7af106d85 100755
--- a/httemplate/misc/cancel_pkg.html
+++ b/httemplate/misc/cancel_pkg.html
@@ -8,6 +8,8 @@
<BR>
<% emt(ucfirst($method)." [_1]", $part_pkg->pkg_comment(cust_pkg=>$cust_pkg) ) %>
+<BR>
+<font color="red"><% $unprovision_warning |h %></font>
<table style="background-color: #cccccc; border-spacing: 2; width: 100%">
% my $date_init = 0;
@@ -191,6 +193,23 @@ my $cust_pkg = qsearchs('cust_pkg', {'pkgnum' => $pkgnum})
my $part_pkg = $cust_pkg->part_pkg;
+my $unprovision_warning = '';
+{
+ my @services_w_export;
+ for ( $cust_pkg->cust_svc ) {
+ push( @services_w_export, ($_->label)[0] . ': ' . ($_->label)[1], )
+ if $_->part_svc->export_svc;
+ }
+ if ( @services_w_export ) {
+ $unprovision_warning = 'NOTE: This package has ' . @services_w_export
+ . ' ' . PL( "service", @services_w_export )
+ . ' that will be unprovisioned';
+ $unprovision_warning .= ' (' . join( ', ', @services_w_export, ) . ')'
+ if @services_w_export < 10;
+ $unprovision_warning .= '.';
+ }
+}
+
$date ||= $cust_pkg->get($method);
$date ||= time;