Dialogbuchungsvorlagen um 'Details anzeigen' erweitert
[kivitendo-erp.git] / SL / DB / MetaSetup / RecordTemplate.pm
1 # This file has been auto-generated. Do not modify it; it will be overwritten
2 # by rose_auto_create_model.pl automatically.
3 package SL::DB::RecordTemplate;
4
5 use strict;
6
7 use parent qw(SL::DB::Object);
8
9 __PACKAGE__->meta->table('record_templates');
10
11 __PACKAGE__->meta->columns(
12   ar_ap_chart_id => { type => 'integer' },
13   cb_transaction => { type => 'boolean', default => 'false', not_null => 1 },
14   currency_id    => { type => 'integer', not_null => 1 },
15   customer_id    => { type => 'integer' },
16   department_id  => { type => 'integer' },
17   description    => { type => 'text' },
18   direct_debit   => { type => 'boolean', default => 'false', not_null => 1 },
19   employee_id    => { type => 'integer' },
20   id             => { type => 'serial', not_null => 1 },
21   itime          => { type => 'timestamp', default => 'now()', not_null => 1 },
22   mtime          => { type => 'timestamp', default => 'now()', not_null => 1 },
23   notes          => { type => 'text' },
24   ob_transaction => { type => 'boolean', default => 'false', not_null => 1 },
25   ordnumber      => { type => 'text' },
26   project_id     => { type => 'integer' },
27   reference      => { type => 'text' },
28   show_details   => { type => 'boolean', default => 'false', not_null => 1 },
29   taxincluded    => { type => 'boolean', default => 'false', not_null => 1 },
30   template_name  => { type => 'text', not_null => 1 },
31   template_type  => { type => 'enum', check_in => [ 'ar_transaction', 'ap_transaction', 'gl_transaction' ], db_type => 'record_template_type', not_null => 1 },
32   vendor_id      => { type => 'integer' },
33 );
34
35 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
36
37 __PACKAGE__->meta->allow_inline_column_values(1);
38
39 __PACKAGE__->meta->foreign_keys(
40   ar_ap_chart => {
41     class       => 'SL::DB::Chart',
42     key_columns => { ar_ap_chart_id => 'id' },
43   },
44
45   currency => {
46     class       => 'SL::DB::Currency',
47     key_columns => { currency_id => 'id' },
48   },
49
50   customer => {
51     class       => 'SL::DB::Customer',
52     key_columns => { customer_id => 'id' },
53   },
54
55   department => {
56     class       => 'SL::DB::Department',
57     key_columns => { department_id => 'id' },
58   },
59
60   employee => {
61     class       => 'SL::DB::Employee',
62     key_columns => { employee_id => 'id' },
63   },
64
65   project => {
66     class       => 'SL::DB::Project',
67     key_columns => { project_id => 'id' },
68   },
69
70   vendor => {
71     class       => 'SL::DB::Vendor',
72     key_columns => { vendor_id => 'id' },
73   },
74 );
75
76 1;
77 ;