1 # This file has been auto-generated. Do not modify it; it will be overwritten
2 # by rose_auto_create_model.pl automatically.
3 package SL::DB::DunningConfig;
7 use parent qw(SL::DB::Object);
9 __PACKAGE__->meta->table('dunning_config');
11 __PACKAGE__->meta->columns(
12 active => { type => 'boolean' },
13 auto => { type => 'boolean' },
14 create_invoices_for_fees => { type => 'boolean', default => 'true' },
15 dunning_description => { type => 'text' },
16 dunning_level => { type => 'integer' },
17 email => { type => 'boolean' },
18 email_attachment => { type => 'boolean' },
19 email_body => { type => 'text' },
20 email_subject => { type => 'text' },
21 fee => { type => 'numeric', precision => 15, scale => 5 },
22 id => { type => 'integer', not_null => 1, sequence => 'id' },
23 interest_rate => { type => 'numeric', precision => 15, scale => 5 },
24 payment_terms => { type => 'integer' },
25 template => { type => 'text' },
26 terms => { type => 'integer' },
29 __PACKAGE__->meta->primary_key_columns([ 'id' ]);