kivitendo/SL/DB/MetaSetup/DeliveryOrder.pm @ 15f58ff3
82515b2d | Sven Schöling | # This file has been auto-generated. Do not modify it; it will be overwritten
|
||
# by rose_auto_create_model.pl automatically.
|
||||
package SL::DB::DeliveryOrder;
|
||||
use strict;
|
||||
use base qw(SL::DB::Object);
|
||||
b8b112a3 | Sven Schöling | __PACKAGE__->meta->table('delivery_orders');
|
||
__PACKAGE__->meta->columns(
|
||||
closed => { type => 'boolean', default => 'false' },
|
||||
3eb3d1b1 | Moritz Bunkus | cp_id => { type => 'integer' },
|
||
currency_id => { type => 'integer', not_null => 1 },
|
||||
b8b112a3 | Sven Schöling | cusordnumber => { type => 'text' },
|
||
3eb3d1b1 | Moritz Bunkus | customer_id => { type => 'integer' },
|
||
delivered => { type => 'boolean', default => 'false' },
|
||||
03d3d025 | Bernd Bleßmann | delivery_term_id => { type => 'integer' },
|
||
b8b112a3 | Sven Schöling | department_id => { type => 'integer' },
|
||
3eb3d1b1 | Moritz Bunkus | donumber => { type => 'text', not_null => 1 },
|
||
employee_id => { type => 'integer' },
|
||||
b8b112a3 | Sven Schöling | globalproject_id => { type => 'integer' },
|
||
3eb3d1b1 | Moritz Bunkus | id => { type => 'integer', not_null => 1, sequence => 'id' },
|
||
intnotes => { type => 'text' },
|
||||
b8b112a3 | Sven Schöling | is_sales => { type => 'boolean' },
|
||
itime => { type => 'timestamp', default => 'now()' },
|
||||
3eb3d1b1 | Moritz Bunkus | language_id => { type => 'integer' },
|
||
b8b112a3 | Sven Schöling | mtime => { type => 'timestamp' },
|
||
3eb3d1b1 | Moritz Bunkus | notes => { type => 'text' },
|
||
ordnumber => { type => 'text' },
|
||||
oreqnumber => { type => 'text' },
|
||||
reqdate => { type => 'date' },
|
||||
salesman_id => { type => 'integer' },
|
||||
shippingpoint => { type => 'text' },
|
||||
shipto_id => { type => 'integer' },
|
||||
shipvia => { type => 'text' },
|
||||
b8b112a3 | Sven Schöling | taxincluded => { type => 'boolean' },
|
||
cc872430 | Moritz Bunkus | taxzone_id => { type => 'integer', not_null => 1 },
|
||
b8b112a3 | Sven Schöling | terms => { type => 'integer' },
|
||
3eb3d1b1 | Moritz Bunkus | transaction_description => { type => 'text' },
|
||
transdate => { type => 'date', default => 'now()' },
|
||||
vendor_id => { type => 'integer' },
|
||||
b8b112a3 | Sven Schöling | );
|
||
82515b2d | Sven Schöling | |||
b8b112a3 | Sven Schöling | __PACKAGE__->meta->primary_key_columns([ 'id' ]);
|
||
4f15333b | Moritz Bunkus | |||
b8b112a3 | Sven Schöling | __PACKAGE__->meta->allow_inline_column_values(1);
|
||
4fd22b56 | Sven Schöling | |||
b8b112a3 | Sven Schöling | __PACKAGE__->meta->foreign_keys(
|
||
contact => {
|
||||
class => 'SL::DB::Contact',
|
||||
key_columns => { cp_id => 'cp_id' },
|
||||
},
|
||||
82515b2d | Sven Schöling | |||
b8b112a3 | Sven Schöling | currency => {
|
||
class => 'SL::DB::Currency',
|
||||
key_columns => { currency_id => 'id' },
|
||||
},
|
||||
4fd22b56 | Sven Schöling | |||
b8b112a3 | Sven Schöling | customer => {
|
||
class => 'SL::DB::Customer',
|
||||
key_columns => { customer_id => 'id' },
|
||||
},
|
||||
4fd22b56 | Sven Schöling | |||
03d3d025 | Bernd Bleßmann | delivery_term => {
|
||
class => 'SL::DB::DeliveryTerm',
|
||||
key_columns => { delivery_term_id => 'id' },
|
||||
},
|
||||
4bcf8804 | Sven Schöling | department => {
|
||
class => 'SL::DB::Department',
|
||||
key_columns => { department_id => 'id' },
|
||||
},
|
||||
employee => {
|
||||
class => 'SL::DB::Employee',
|
||||
key_columns => { employee_id => 'id' },
|
||||
},
|
||||
b8b112a3 | Sven Schöling | globalproject => {
|
||
class => 'SL::DB::Project',
|
||||
key_columns => { globalproject_id => 'id' },
|
||||
},
|
||||
4f15333b | Moritz Bunkus | |||
4bcf8804 | Sven Schöling | language => {
|
||
class => 'SL::DB::Language',
|
||||
key_columns => { language_id => 'id' },
|
||||
},
|
||||
salesman => {
|
||||
class => 'SL::DB::Employee',
|
||||
key_columns => { salesman_id => 'id' },
|
||||
},
|
||||
shipto => {
|
||||
class => 'SL::DB::Shipto',
|
||||
key_columns => { shipto_id => 'shipto_id' },
|
||||
},
|
||||
cc872430 | Moritz Bunkus | taxzone => {
|
||
class => 'SL::DB::TaxZone',
|
||||
key_columns => { taxzone_id => 'id' },
|
||||
},
|
||||
b8b112a3 | Sven Schöling | vendor => {
|
||
class => 'SL::DB::Vendor',
|
||||
key_columns => { vendor_id => 'id' },
|
||||
},
|
||||
82515b2d | Sven Schöling | );
|
||
1;
|
||||
;
|