X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FTax.pm;h=55aba86bc4157018f190922966fec6fcbb51b19a;hb=cbb8eb078305a3eeca9c6c192a66176676da54f8;hp=b0dc314b8df717399fdab5713b79c40276ba0d47;hpb=3eb3d1b144adb92e62de08e67dc6ff3d39bf7483;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/Tax.pm b/SL/DB/MetaSetup/Tax.pm index b0dc314b8..55aba86bc 100644 --- a/SL/DB/MetaSetup/Tax.pm +++ b/SL/DB/MetaSetup/Tax.pm @@ -4,20 +4,21 @@ 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 => 5, scale => 15 }, - 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 }, + 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 +30,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;