X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FTax.pm;h=c29a455816aa67979447f1e9a578db317edbc0f1;hb=97a6f6d623a9810e1d324f44a5f8bcd12294f5d3;hp=dcc0d11e6c29272785caded083551a1a1e71c4e7;hpb=e42233910a57d39f3ccef150db1212f7ecb7fb30;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/Tax.pm b/SL/DB/MetaSetup/Tax.pm index dcc0d11e6..c29a45581 100644 --- a/SL/DB/MetaSetup/Tax.pm +++ b/SL/DB/MetaSetup/Tax.pm @@ -4,20 +4,22 @@ package SL::DB::Tax; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('tax'); __PACKAGE__->meta->columns( - chart_categories => { type => 'text', not_null => 1 }, - chart_id => { type => 'integer' }, - id => { type => 'integer', not_null => 1, sequence => 'id' }, - itime => { type => 'timestamp', default => 'now()' }, - mtime => { type => 'timestamp' }, - rate => { type => 'numeric', default => '0', not_null => 1, precision => 15, scale => 5 }, - taxdescription => { type => 'text', not_null => 1 }, - taxkey => { type => 'integer', not_null => 1 }, - taxnumber => { type => 'text' }, + chart_categories => { type => 'text', not_null => 1 }, + chart_id => { type => 'integer' }, + id => { type => 'integer', not_null => 1, sequence => 'id' }, + itime => { type => 'timestamp', default => 'now()' }, + mtime => { type => 'timestamp' }, + rate => { type => 'numeric', default => '0', not_null => 1, precision => 15, scale => 5 }, + reverse_charge_chart_id => { type => 'integer' }, + skonto_purchase_chart_id => { type => 'integer' }, + skonto_sales_chart_id => { type => 'integer' }, + taxdescription => { type => 'text', not_null => 1 }, + taxkey => { type => 'integer', not_null => 1 }, ); __PACKAGE__->meta->primary_key_columns([ 'id' ]); @@ -29,6 +31,16 @@ __PACKAGE__->meta->foreign_keys( class => 'SL::DB::Chart', key_columns => { chart_id => 'id' }, }, + + skonto_purchase_chart => { + class => 'SL::DB::Chart', + key_columns => { skonto_purchase_chart_id => 'id' }, + }, + + skonto_sales_chart => { + class => 'SL::DB::Chart', + key_columns => { skonto_sales_chart_id => 'id' }, + }, ); 1;