X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FTax.pm;h=c29a455816aa67979447f1e9a578db317edbc0f1;hb=97a6f6d623a9810e1d324f44a5f8bcd12294f5d3;hp=9903067e3ed7008352b2d4f10ace4e467711bff3;hpb=b8b112a39bd601b0bc717646d78de470631da22a;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/Tax.pm b/SL/DB/MetaSetup/Tax.pm index 9903067e3..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_id => { type => 'integer' }, - rate => { type => 'numeric', default => '0', not_null => 1, precision => 5, scale => 15 }, - taxnumber => { type => 'text' }, - taxkey => { type => 'integer', not_null => 1 }, - taxdescription => { type => 'text', not_null => 1 }, - itime => { type => 'timestamp', default => 'now()' }, - mtime => { type => 'timestamp' }, - id => { type => 'integer', not_null => 1, sequence => 'id' }, - chart_categories => { type => 'text', not_null => 1 }, + 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,9 +31,17 @@ __PACKAGE__->meta->foreign_keys( class => 'SL::DB::Chart', key_columns => { chart_id => 'id' }, }, -); -# __PACKAGE__->meta->initialize; + 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; ;