diff options
author | ivan <ivan> | 2002-02-04 17:04:33 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-02-04 17:04:33 +0000 |
commit | 79f83ad93cc6f77a155528661a4681946fdd17a6 (patch) | |
tree | cc5c379c97ba49e42758b779aa9b76ce6b27a7d5 /bin | |
parent | 8cbba53b09bb5b09355316b7ff8948500c3b4b76 (diff) |
have fs-setup create the necessary "default" billing events
documentation on necessary "default" billing events
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/fs-setup | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/bin/fs-setup b/bin/fs-setup index 7e043d238..912fc98fc 100755 --- a/bin/fs-setup +++ b/bin/fs-setup @@ -1,6 +1,6 @@ #!/usr/bin/perl -Tw # -# $Id: fs-setup,v 1.73 2002-01-29 17:42:46 ivan Exp $ +# $Id: fs-setup,v 1.74 2002-02-04 17:04:33 ivan Exp $ #to delay loading dbdef until we're ready BEGIN { $FS::Record::setup_hack = 1; } @@ -16,6 +16,7 @@ use FS::UID qw(adminsuidsetup datasrc checkeuid getsecrets); use FS::Record; use FS::cust_main_county; use FS::raddb; +use FS::part_bill_invoice; die "Not running uid freeside!" unless checkeuid(); @@ -234,6 +235,28 @@ YE YU ZR ZM ZW die $error if $error; } +#billing events +foreach my $aref ( + [ 'COMP', 'Comp invoice', '$cust_bill->comp();', 30, 'comp' ], + [ 'CARD', 'Batch card', '$cust_bill->batch_card();', 40, 'batch-card' ], + [ 'BILL', 'Send invoice', '$cust_bill->send();', 50, 'send' ], +) { + + my $part_bill_event = new FS::part_bill_event({ + 'payby' => $aref->[0], + 'event' => $aref->[1], + 'eventcode' => $aref->[2], + 'seconds' => 0, + 'weight' => $aref->[3], + 'plan' => $aref->[4], + }); + my($error); + $error=$part_bill_event->insert; + die $error if $error; + +} + + $dbh->disconnect or die $dbh->errstr; print "Freeside database initialized sucessfully\n"; |