X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=FS%2FFS%2Fpart_pkg%2Fsql_external.pm;h=8d430867606e5922b5b7e7ef695d3b967f873ae2;hb=74e058c8a010ef6feb539248a550d0bb169c1e94;hp=688f9188709f8f2cd136c56a7f15b0dfe8fec550;hpb=5fc8c5edf574ab024d4646914b6432d458e2ffbd;p=freeside.git diff --git a/FS/FS/part_pkg/sql_external.pm b/FS/FS/part_pkg/sql_external.pm index 688f91887..8d4308676 100644 --- a/FS/FS/part_pkg/sql_external.pm +++ b/FS/FS/part_pkg/sql_external.pm @@ -1,48 +1,55 @@ package FS::part_pkg::sql_external; use strict; -use vars qw(@ISA %info); +use base qw( FS::part_pkg::recur_Common ); +use vars qw( %info ); use DBI; #use FS::Record qw(qsearch qsearchs); -use FS::part_pkg; - -@ISA = qw(FS::part_pkg); %info = ( - 'name' => 'Base charge plus additional fees for external services from a configurable SQL query', - 'fields' => { - 'setup_fee' => { 'name' => 'Setup fee for this package', - 'default' => 0, - }, - 'recur_flat' => { 'name' => 'Base monthly charge for this package', - 'default' => 0, - }, - 'datasrc' => { 'name' => 'DBI data source', - 'default' => '', - }, - 'db_username' => { 'name' => 'Database username', - 'default' => '', + 'name' => 'Base charge plus additional fees for external services from a configurable SQL query', + 'shortname' => 'External SQL query', + 'inherit_fields' => [ 'global_Mixin' ], + 'fields' => { + 'cutoff_day' => { 'name' => 'Billing Day (1 - 28) for prorating or '. + 'subscription', + 'default' => '1', + }, + 'add_full_period'=> { 'name' => 'When prorating first month, also bill '. + 'for one full period after that', + 'type' => 'checkbox', }, - 'db_password' => { 'name' => 'Database password', - 'default' => '', + + 'recur_method' => { 'name' => 'Recurring fee method', + #'type' => 'radio', + #'options' => \%recur_method, + 'type' => 'select', + 'select_options' => \%FS::part_pkg::recur_Common::recur_method, }, - 'query' => { 'name' => 'SQL query', + 'datasrc' => { 'name' => 'DBI data source', 'default' => '', }, - }, - 'fieldorder' => [qw( setup_fee recur_flat datasrc db_username db_password query )], - #'setup' => 'what.setup_fee.value', - #'recur' => q!'my $dbh = DBI->connect("' + what.datasrc.value + '", "' + what.db_username.value + '", "' + what.db_password.value + '" ) or die $DBI::errstr; my $sth = $dbh->prepare("' + what.query.value + '") or die $dbh->errstr; my $price = ' + what.recur_flat.value + '; foreach my $cust_svc ( grep { $_->part_svc->svcdb eq "svc_external" } $cust_pkg->cust_svc ){ my $id = $cust_svc->svc_x->id; $sth->execute($id) or die $sth->errstr; $price += $sth->fetchrow_arrayref->[0]; } $price;'!, - 'weight' => '72', + 'db_username' => { 'name' => 'Database username', + 'default' => '', + }, + 'db_password' => { 'name' => 'Database password', + 'default' => '', + }, + 'query' => { 'name' => 'SQL query', + 'default' => '', + }, + }, + 'fieldorder' => [qw( recur_method cutoff_day + add_full_period datasrc db_username db_password query + )], + 'weight' => '58', ); -sub calc_setup { - my($self, $cust_pkg ) = @_; - $self->option('setup_fee'); -} - sub calc_recur { - my($self, $cust_pkg ) = @_; + my $self = shift; + my($cust_pkg) = @_; #, $sdate, $details, $param ) = @_; + + my $price = $self->calc_recur_Common(@_); my $dbh = DBI->connect( map { $self->option($_) } qw( datasrc db_username db_password ) @@ -52,8 +59,6 @@ sub calc_recur { my $sth = $dbh->prepare( $self->option('query') ) or die $dbh->errstr; - my $price = $self->option('recur_flat'); - foreach my $cust_svc ( grep { $_->part_svc->svcdb eq "svc_external" } $cust_pkg->cust_svc ) { @@ -65,4 +70,8 @@ sub calc_recur { $price; } +sub can_discount { 0; } + +sub is_free { 0; } + 1;