This commit was generated by cvs2svn to compensate for changes in r11022,
[freeside.git] / FS / FS / part_pkg / sesmon_minute.pm
index 9c8dfd1..b86cffd 100644 (file)
@@ -8,6 +8,7 @@ use FS::part_pkg::flat;
 @ISA = qw(FS::part_pkg::flat);
 
 %info = (
+  'disabled' => 1, #internal session db deprecated (or at least on hold)
   'name' => 'Base charge plus charge per-minute from the session monitor',
   'shortname' => 'Session monitor (per-minute)',
   'inherit_fields' => [ 'global_Mixin' ],
@@ -25,6 +26,12 @@ use FS::part_pkg::flat;
   'weight' => 80,
 );
 
+sub price_info {
+    my $self = shift;
+    my $str = $self->SUPER::price_info;
+    $str .= " plus usage" if $str;
+    $str;
+}
 
 sub calc_recur {
   my( $self, $cust_pkg ) = @);