X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FDunningConfig.pm;h=e7378646fafca6be8534253ae455d639045c3489;hb=a805ddafe2970ba5c07a59d90749fa0c7e24f903;hp=61e2db30f6151481c5de5fc2b97813ae6aa3df8d;hpb=3eb3d1b144adb92e62de08e67dc6ff3d39bf7483;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/DunningConfig.pm b/SL/DB/MetaSetup/DunningConfig.pm index 61e2db30f..e7378646f 100644 --- a/SL/DB/MetaSetup/DunningConfig.pm +++ b/SL/DB/MetaSetup/DunningConfig.pm @@ -4,7 +4,7 @@ package SL::DB::DunningConfig; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('dunning_config'); @@ -18,10 +18,11 @@ __PACKAGE__->meta->columns( email_attachment => { type => 'boolean' }, email_body => { type => 'text' }, email_subject => { type => 'text' }, - fee => { type => 'numeric', precision => 5, scale => 15 }, + fee => { type => 'numeric', precision => 15, scale => 5 }, id => { type => 'integer', not_null => 1, sequence => 'id' }, - interest_rate => { type => 'numeric', precision => 5, scale => 15 }, + interest_rate => { type => 'numeric', precision => 15, scale => 5 }, payment_terms => { type => 'integer' }, + print_original_invoice => { type => 'boolean' }, template => { type => 'text' }, terms => { type => 'integer' }, );