kivitendo/SL/DB/MetaSetup/PurchaseInvoice.pm @ 2d7e4203
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::PurchaseInvoice;
|
||||
use strict;
|
||||
use base qw(SL::DB::Object);
|
||||
b8b112a3 | Sven Schöling | __PACKAGE__->meta->table('ap');
|
||
__PACKAGE__->meta->columns(
|
||||
id => { type => 'integer', not_null => 1, sequence => 'glid' },
|
||||
invnumber => { type => 'text', not_null => 1 },
|
||||
transdate => { type => 'date', default => 'now' },
|
||||
gldate => { type => 'date', default => 'now' },
|
||||
vendor_id => { type => 'integer' },
|
||||
taxincluded => { type => 'boolean', default => 'false' },
|
||||
amount => { type => 'numeric', precision => 5, scale => 15 },
|
||||
netamount => { type => 'numeric', precision => 5, scale => 15 },
|
||||
paid => { type => 'numeric', precision => 5, scale => 15 },
|
||||
datepaid => { type => 'date' },
|
||||
duedate => { type => 'date' },
|
||||
invoice => { type => 'boolean', default => 'false' },
|
||||
ordnumber => { type => 'text' },
|
||||
notes => { type => 'text' },
|
||||
employee_id => { type => 'integer' },
|
||||
quonumber => { type => 'text' },
|
||||
intnotes => { type => 'text' },
|
||||
department_id => { type => 'integer' },
|
||||
itime => { type => 'timestamp', default => 'now()' },
|
||||
mtime => { type => 'timestamp' },
|
||||
shipvia => { type => 'text' },
|
||||
cp_id => { type => 'integer' },
|
||||
language_id => { type => 'integer' },
|
||||
payment_id => { type => 'integer' },
|
||||
storno => { type => 'boolean', default => 'false' },
|
||||
taxzone_id => { type => 'integer' },
|
||||
type => { type => 'text' },
|
||||
orddate => { type => 'date' },
|
||||
quodate => { type => 'date' },
|
||||
globalproject_id => { type => 'integer' },
|
||||
transaction_description => { type => 'text' },
|
||||
storno_id => { type => 'integer' },
|
||||
direct_debit => { type => 'boolean', default => 'false' },
|
||||
deliverydate => { type => 'date' },
|
||||
currency_id => { type => 'integer', not_null => 1 },
|
||||
);
|
||||
91bd08d8 | Moritz Bunkus | |||
b8b112a3 | Sven Schöling | __PACKAGE__->meta->primary_key_columns([ 'id' ]);
|
||
91bd08d8 | Moritz Bunkus | |||
b8b112a3 | Sven Schöling | __PACKAGE__->meta->allow_inline_column_values(1);
|
||
82515b2d | Sven Schöling | |||
b8b112a3 | Sven Schöling | __PACKAGE__->meta->foreign_keys(
|
||
contact => {
|
||||
class => 'SL::DB::Contact',
|
||||
key_columns => { cp_id => 'cp_id' },
|
||||
},
|
||||
91bd08d8 | Moritz Bunkus | |||
b8b112a3 | Sven Schöling | globalproject => {
|
||
class => 'SL::DB::Project',
|
||||
key_columns => { globalproject_id => 'id' },
|
||||
},
|
||||
91bd08d8 | Moritz Bunkus | |||
b8b112a3 | Sven Schöling | storno_obj => {
|
||
class => 'SL::DB::PurchaseInvoice',
|
||||
key_columns => { storno_id => 'id' },
|
||||
},
|
||||
82515b2d | Sven Schöling | |||
b8b112a3 | Sven Schöling | vendor => {
|
||
class => 'SL::DB::Vendor',
|
||||
key_columns => { vendor_id => 'id' },
|
||||
},
|
||||
82515b2d | Sven Schöling | );
|
||
b8b112a3 | Sven Schöling | # __PACKAGE__->meta->initialize;
|
||
82515b2d | Sven Schöling | 1;
|
||
;
|