X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpart_pkg%2Fagent.pm;h=4a87728280d52f5cc6afaa7c105847a04c727d46;hb=a0e00fa0547e99893c735ab3dbdacdb2bb054f5a;hp=d41978cf5da443cbcef88f707ec6761662eb5df9;hpb=63a268637b2d51a8766412617724b9436439deb6;p=freeside.git diff --git a/FS/FS/part_pkg/agent.pm b/FS/FS/part_pkg/agent.pm index d41978cf5..4a8772828 100644 --- a/FS/FS/part_pkg/agent.pm +++ b/FS/FS/part_pkg/agent.pm @@ -1,17 +1,14 @@ package FS::part_pkg::agent; +#use base qw(FS::part_pkg::recur_Common); +use base qw(FS::part_pkg::prorate); use strict; -use vars qw(@ISA $DEBUG $me %info); +use vars qw($DEBUG $me %info); use Date::Format; use FS::Record qw( qsearch ); use FS::agent; use FS::cust_main; -#use FS::part_pkg::recur_Common;; -#@ISA = qw(FS::part_pkg::recur_Common); -use FS::part_pkg::prorate; -@ISA = qw(FS::part_pkg::prorate); - $DEBUG = 0; $me = '[FS::part_pkg::agent]'; @@ -19,16 +16,8 @@ $me = '[FS::part_pkg::agent]'; %info = ( 'name' => 'Wholesale bulk billing, for master customers of an agent.', 'shortname' => 'Wholesale bulk billing for agent.', - + 'inherit_fields' => [qw( prorate global_Mixin)], 'fields' => { - 'setup_fee' => { 'name' => 'Setup fee for this package', - 'default' => 0, - }, - 'recur_fee' => { 'name' => 'Base recurring fee for this package', - 'default' => 0, - }, - - #'recur_method' => { 'name' => 'Recurring fee method', # #'type' => 'radio', # #'options' => \%recur_method, @@ -38,6 +27,10 @@ $me = '[FS::part_pkg::agent]'; 'cutoff_day' => { 'name' => 'Billing Day (1 - 28)', 'default' => '1', }, + 'add_full_period'=> { 'name' => 'When prorating first month, also bill '. + 'for one full period after that', + 'type' => 'checkbox', + }, 'no_pkg_prorate' => { 'name' => 'Disable prorating bulk packages (charge full price for packages active only a portion of the month)', 'type' => 'checkbox', @@ -45,8 +38,7 @@ $me = '[FS::part_pkg::agent]'; }, - #'fieldorder' => [qw( setup_fee recur_fee recur_method cutoff_day ) ], - 'fieldorder' => [qw( setup_fee recur_fee cutoff_day no_pkg_prorate ) ], + 'fieldorder' => [qw( cutoff_day add_full_period no_pkg_prorate ) ], 'weight' => 51, @@ -163,13 +155,13 @@ sub calc_recur { } -sub hide_svc_detail { - 1; -} +sub can_discount { 0; } -sub is_free { - 0; -} +sub hide_svc_detail { 1; } + +sub is_free { 0; } + +sub can_usageprice { 0; } 1;