NAME

Billing::Invoice - A controller in the Billing application

SYNOPSIS

This package is meant to be used in a stand alone server/CGI script or the Perl block of an httpd.conf file.

Stand Alone Server or CGI script:

use Billing::Invoice;

my $cgi = Gantry::Engine::CGI->new( {
    config => {
        #...
    },
    locations => {
        '/someurl' => 'Billing::Invoice',
        #...
    },
} );

httpd.conf:

<Perl>
    # ...
    use Billing::Invoice;
</Perl>

<Location /someurl>
    SetHandler  perl-script
    PerlHandler Billing::Invoice
</Location>

If all went well, one of these was correctly written during app generation.

DESCRIPTION

This module was originally generated by Bigtop. But feel free to edit it. You might even want to describe the table this module controls here.

METHODS

do_pdf
get_model_name
text_descr
schema_base_class
get_orm_helper

METHODS MIXED IN FROM Billing::GEN::Invoice

do_main
form

DEPENDENCIES

Billing
Billing::GEN::Invoice
Billing::Model::invoice
Gantry::Plugins::Calendar
Gantry::Plugins::AutoCRUD

AUTHOR

Phil Crow

Tim Keefer

COPYRIGHT AND LICENSE

Copyright (C) 2006 Phil Crow

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.