X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FPeriodicInvoicesConfig.pm;h=0c0545384140935613fa0d512414401754f34754;hb=refs%2Fheads%2Fswiss;hp=eae8481d42160b4f9a32df2160daff8b32fe0428;hpb=648c1ad77f5c9c512b89783e8c8af13b29280c63;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/PeriodicInvoicesConfig.pm b/SL/DB/MetaSetup/PeriodicInvoicesConfig.pm index eae8481d4..0c0545384 100644 --- a/SL/DB/MetaSetup/PeriodicInvoicesConfig.pm +++ b/SL/DB/MetaSetup/PeriodicInvoicesConfig.pm @@ -4,7 +4,7 @@ package SL::DB::PeriodicInvoicesConfig; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('periodic_invoices_configs'); @@ -12,12 +12,14 @@ __PACKAGE__->meta->columns( active => { type => 'boolean', default => 'true' }, ar_chart_id => { type => 'integer', not_null => 1 }, copies => { type => 'integer' }, + direct_debit => { type => 'boolean', default => 'false', not_null => 1 }, end_date => { type => 'date' }, extend_automatically_by => { type => 'integer' }, first_billing_date => { type => 'date' }, id => { type => 'integer', not_null => 1, sequence => 'id' }, oe_id => { type => 'integer', not_null => 1 }, - periodicity => { type => 'varchar', length => 10, not_null => 1 }, + order_value_periodicity => { type => 'varchar', length => 1, not_null => 1 }, + periodicity => { type => 'varchar', length => 1, not_null => 1 }, print => { type => 'boolean', default => 'false' }, printer_id => { type => 'integer' }, start_date => { type => 'date' },