X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=bin%2Ffs-setup;h=5f8059425ad61cd4ce70b7c4674219e4e280ee5b;hb=46477667466732de54a034fae994e71f9ca62b50;hp=7e043d238b2397ff8b81ad0142aff14359ef1aa1;hpb=c5c0ba135749164ec8ba75d18f76c29625e1bc7e;p=freeside.git diff --git a/bin/fs-setup b/bin/fs-setup index 7e043d238..5f8059425 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.76 2002-02-10 18:56:49 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_event; 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"; @@ -477,7 +500,7 @@ sub tables_hash_hack { ], 'primary_key' => 'billpaynum', 'unique' => [ [] ], - 'index' => [ [ 'paynum', 'invnum' ] ], + 'index' => [ [ 'paynum' ], [ 'custnum' ], [ 'paybatch' ] ], }, 'cust_pay_batch' => { #what's this used for again? list of customers