kivitendo/SL/DB/MetaSetup/DunningConfig.pm @ 0882a283
4fd22b56 | Sven Schöling | # This file has been auto-generated. Do not modify it; it will be overwritten
|
||
# by rose_auto_create_model.pl automatically.
|
||||
package SL::DB::DunningConfig;
|
||||
use strict;
|
||||
2ea07c13 | Sven Schöling | use parent qw(SL::DB::Object);
|
||
4fd22b56 | Sven Schöling | |||
b8b112a3 | Sven Schöling | __PACKAGE__->meta->table('dunning_config');
|
||
__PACKAGE__->meta->columns(
|
||||
active => { type => 'boolean' },
|
||||
auto => { type => 'boolean' },
|
||||
3eb3d1b1 | Moritz Bunkus | create_invoices_for_fees => { type => 'boolean', default => 'true' },
|
||
dunning_description => { type => 'text' },
|
||||
dunning_level => { type => 'integer' },
|
||||
b8b112a3 | Sven Schöling | email => { type => 'boolean' },
|
||
3eb3d1b1 | Moritz Bunkus | email_attachment => { type => 'boolean' },
|
||
b8b112a3 | Sven Schöling | email_body => { type => 'text' },
|
||
email_subject => { type => 'text' },
|
||||
a3511b2d | Moritz Bunkus | fee => { type => 'numeric', precision => 15, scale => 5 },
|
||
3eb3d1b1 | Moritz Bunkus | id => { type => 'integer', not_null => 1, sequence => 'id' },
|
||
a3511b2d | Moritz Bunkus | interest_rate => { type => 'numeric', precision => 15, scale => 5 },
|
||
3eb3d1b1 | Moritz Bunkus | payment_terms => { type => 'integer' },
|
||
16583fc6 | Jan Büren | print_original_invoice => { type => 'boolean' },
|
||
b8b112a3 | Sven Schöling | template => { type => 'text' },
|
||
3eb3d1b1 | Moritz Bunkus | terms => { type => 'integer' },
|
||
b8b112a3 | Sven Schöling | );
|
||
__PACKAGE__->meta->primary_key_columns([ 'id' ]);
|
||||
4fd22b56 | Sven Schöling | 1;
|
||
;
|