X-Git-Url: http://wagnertech.de/git?p=kivitendo-erp.git;a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FBankAccount.pm;fp=SL%2FDB%2FMetaSetup%2FBankAccount.pm;h=d8367789fa96259cbee0b0eccc37a295be5ffade;hp=5589ee43d38694b3048179f1a50df2eb0287aea3;hb=b293ff8ad52fc76ba0c44783e3982418114d6b08;hpb=d4925a8b60f04674885e30d9316dc0263f8b9a84 diff --git a/SL/DB/MetaSetup/BankAccount.pm b/SL/DB/MetaSetup/BankAccount.pm index 5589ee43d..d8367789f 100644 --- a/SL/DB/MetaSetup/BankAccount.pm +++ b/SL/DB/MetaSetup/BankAccount.pm @@ -11,6 +11,7 @@ __PACKAGE__->meta->table('bank_accounts'); __PACKAGE__->meta->columns( account_number => { type => 'varchar', length => 100 }, bank => { type => 'text' }, + bank_account_id => { type => 'varchar' }, bank_code => { type => 'varchar', length => 100 }, bic => { type => 'varchar', length => 100 }, chart_id => { type => 'integer', not_null => 1 }, @@ -21,6 +22,7 @@ __PACKAGE__->meta->columns( reconciliation_starting_balance => { type => 'numeric', precision => 15, scale => 5 }, reconciliation_starting_date => { type => 'date' }, sortkey => { type => 'integer', not_null => 1 }, + use_for_qrbill => { type => 'boolean', default => 'false', not_null => 1 }, use_for_zugferd => { type => 'boolean', default => 'false', not_null => 1 }, );