X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fmisc%2Fcancel_pkg.html;h=3c186221224542991f11f066a7dfc924afa9e07a;hb=2dca91166a0fe163a51741b37edc812c7a32b9a9;hp=d3ca9964f422476320602c0d04cf9d25e558e39d;hpb=4b05b20576ddb14577d59c87c8257c6804449410;p=freeside.git diff --git a/httemplate/misc/cancel_pkg.html b/httemplate/misc/cancel_pkg.html index d3ca9964f..3c1862212 100755 --- a/httemplate/misc/cancel_pkg.html +++ b/httemplate/misc/cancel_pkg.html @@ -8,6 +8,12 @@
<% emt(ucfirst($method)." [_1]", $part_pkg->pkg_comment(cust_pkg=>$cust_pkg) ) %> +
+ +% for ( @unprovision_warning ) { +<% $_ |h %>
+% } +
% my $date_init = 0; @@ -191,6 +197,27 @@ 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 ) { + push( @unprovision_warning, 'NOTE: This package has ' + . @services_w_export . ' ' . PL( "service", @services_w_export ) + . ' that will be unprovisioned', ); + if ( @services_w_export < 10 ) { + $unprovision_warning[0] .= ':'; + push( @unprovision_warning, @services_w_export, ); + } + else { + $unprovision_warning[0] .= '.'; + } + } +} + $date ||= $cust_pkg->get($method); $date ||= time;