[freeside-commits] freeside/FS/FS/part_event/Action writeoff.pm, NONE, 1.1
Ivan,,,
ivan at wavetail.420.am
Sat Apr 11 14:42:54 PDT 2009
Update of /home/cvs/cvsroot/freeside/FS/FS/part_event/Action
In directory wavetail.420.am:/tmp/cvs-serv23697/FS/FS/part_event/Action
Added Files:
writeoff.pm
Log Message:
migrate send_email, suspend_if_balance and credit events, RT#3905
--- NEW FILE: writeoff.pm ---
package FS::part_event::Action::writeoff;
use strict;
use base qw( FS::part_event::Action );
sub description { 'Write off bad debt with a credit entry.'; }
sub option_fields {
(
#'charge' => { label=>'Amount', type=>'money', }, # size=>7, },
'reasonnum' => { 'label' => 'Reason',
'type' => 'select-reason',
'reason_class' => 'R',
},
);
}
sub default_weight { 65; }
sub do_action {
my( $self, $cust_object ) = @_;
my $cust_main = $self->cust_main($cust_object);
my $error = $cust_main->credit( $cust_main->balance,
$self->option('reasonnum'),
);
die $error if $error;
'';
}
1;
More information about the freeside-commits
mailing list