1 # This file has been auto-generated. Do not modify it; it will be overwritten
 
   2 # by rose_auto_create_model.pl automatically.
 
   7 use base qw(SL::DB::Object);
 
   9 __PACKAGE__->meta->table('oe');
 
  11 __PACKAGE__->meta->columns(
 
  12   amount                  => { type => 'numeric', precision => 5, scale => 15 },
 
  13   closed                  => { type => 'boolean', default => 'false' },
 
  14   cp_id                   => { type => 'integer' },
 
  15   currency_id             => { type => 'integer', not_null => 1 },
 
  16   cusordnumber            => { type => 'text' },
 
  17   customer_id             => { type => 'integer' },
 
  18   delivered               => { type => 'boolean', default => 'false' },
 
  19   delivery_customer_id    => { type => 'integer' },
 
  20   delivery_vendor_id      => { type => 'integer' },
 
  21   department_id           => { type => 'integer' },
 
  22   employee_id             => { type => 'integer' },
 
  23   globalproject_id        => { type => 'integer' },
 
  24   id                      => { type => 'integer', not_null => 1, sequence => 'id' },
 
  25   intnotes                => { type => 'text' },
 
  26   itime                   => { type => 'timestamp', default => 'now()' },
 
  27   language_id             => { type => 'integer' },
 
  28   marge_percent           => { type => 'numeric', precision => 5, scale => 15 },
 
  29   marge_total             => { type => 'numeric', precision => 5, scale => 15 },
 
  30   mtime                   => { type => 'timestamp' },
 
  31   netamount               => { type => 'numeric', precision => 5, scale => 15 },
 
  32   notes                   => { type => 'text' },
 
  33   ordnumber               => { type => 'text', not_null => 1 },
 
  34   payment_id              => { type => 'integer' },
 
  35   proforma                => { type => 'boolean', default => 'false' },
 
  36   quonumber               => { type => 'text' },
 
  37   quotation               => { type => 'boolean', default => 'false' },
 
  38   reqdate                 => { type => 'date' },
 
  39   salesman_id             => { type => 'integer' },
 
  40   shippingpoint           => { type => 'text' },
 
  41   shipto_id               => { type => 'integer' },
 
  42   shipvia                 => { type => 'text' },
 
  43   taxincluded             => { type => 'boolean' },
 
  44   taxzone_id              => { type => 'integer' },
 
  45   transaction_description => { type => 'text' },
 
  46   transdate               => { type => 'date', default => 'now' },
 
  47   vendor_id               => { type => 'integer' },
 
  50 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
 
  52 __PACKAGE__->meta->allow_inline_column_values(1);
 
  54 __PACKAGE__->meta->foreign_keys(
 
  56     class       => 'SL::DB::Contact',
 
  57     key_columns => { cp_id => 'cp_id' },
 
  61     class       => 'SL::DB::Currency',
 
  62     key_columns => { currency_id => 'id' },
 
  66     class       => 'SL::DB::Customer',
 
  67     key_columns => { customer_id => 'id' },
 
  70   delivery_customer => {
 
  71     class       => 'SL::DB::Customer',
 
  72     key_columns => { delivery_customer_id => 'id' },
 
  76     class       => 'SL::DB::Vendor',
 
  77     key_columns => { delivery_vendor_id => 'id' },
 
  81     class       => 'SL::DB::Department',
 
  82     key_columns => { department_id => 'id' },
 
  86     class       => 'SL::DB::Employee',
 
  87     key_columns => { employee_id => 'id' },
 
  91     class       => 'SL::DB::Project',
 
  92     key_columns => { globalproject_id => 'id' },
 
  96     class       => 'SL::DB::Language',
 
  97     key_columns => { language_id => 'id' },
 
 101     class       => 'SL::DB::PaymentTerm',
 
 102     key_columns => { payment_id => 'id' },
 
 106     class       => 'SL::DB::Employee',
 
 107     key_columns => { salesman_id => 'id' },
 
 111     class       => 'SL::DB::Shipto',
 
 112     key_columns => { shipto_id => 'shipto_id' },
 
 116     class       => 'SL::DB::Vendor',
 
 117     key_columns => { vendor_id => 'id' },