From: Sven Schöling Date: Wed, 28 Sep 2011 11:28:32 +0000 (+0200) Subject: Rose Update zu commit 2c447b2fb419b504c90322b8d714360a174f8fa7 X-Git-Tag: release-2.7.0beta1~255 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=03e74af156fa66e1ad1485e975e38a1e18e5c96a;p=kivitendo-erp.git Rose Update zu commit 2c447b2fb419b504c90322b8d714360a174f8fa7 --- diff --git a/SL/DB/MetaSetup/Invoice.pm b/SL/DB/MetaSetup/Invoice.pm index be3466d60..d300a7e6a 100644 --- a/SL/DB/MetaSetup/Invoice.pm +++ b/SL/DB/MetaSetup/Invoice.pm @@ -10,51 +10,52 @@ __PACKAGE__->meta->setup( table => 'ar', 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' }, - customer_id => { type => 'integer' }, - taxincluded => { type => 'boolean' }, - 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' }, - deliverydate => { type => 'date' }, - invoice => { type => 'boolean', default => 'false' }, - shippingpoint => { type => 'text' }, - terms => { type => 'integer', default => '0' }, - notes => { type => 'text' }, - curr => { type => 'character', length => 3 }, - ordnumber => { type => 'text' }, - employee_id => { type => 'integer' }, - quonumber => { type => 'text' }, - cusordnumber => { type => 'text' }, - intnotes => { type => 'text' }, - department_id => { type => 'integer', default => '0' }, - shipvia => { type => 'text' }, - itime => { type => 'timestamp', default => 'now()' }, - mtime => { type => 'timestamp' }, - cp_id => { type => 'integer' }, - language_id => { type => 'integer' }, - payment_id => { type => 'integer' }, - delivery_customer_id => { type => 'integer' }, - delivery_vendor_id => { type => 'integer' }, - storno => { type => 'boolean', default => 'false' }, - taxzone_id => { type => 'integer' }, - shipto_id => { type => 'integer' }, - type => { type => 'text' }, - dunning_config_id => { type => 'integer' }, - orddate => { type => 'date' }, - quodate => { type => 'date' }, - globalproject_id => { type => 'integer' }, - salesman_id => { type => 'integer' }, - transaction_description => { type => 'text' }, - storno_id => { type => 'integer' }, - marge_total => { type => 'numeric', precision => 5, scale => 15 }, - marge_percent => { type => 'numeric', precision => 5, scale => 15 }, - donumber => { type => 'text' }, + id => { type => 'integer', not_null => 1, sequence => 'glid' }, + invnumber => { type => 'text', not_null => 1 }, + transdate => { type => 'date', default => 'now' }, + gldate => { type => 'date', default => 'now' }, + customer_id => { type => 'integer' }, + taxincluded => { type => 'boolean' }, + 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' }, + deliverydate => { type => 'date' }, + invoice => { type => 'boolean', default => 'false' }, + shippingpoint => { type => 'text' }, + terms => { type => 'integer', default => '0' }, + notes => { type => 'text' }, + curr => { type => 'character', length => 3 }, + ordnumber => { type => 'text' }, + employee_id => { type => 'integer' }, + quonumber => { type => 'text' }, + cusordnumber => { type => 'text' }, + intnotes => { type => 'text' }, + department_id => { type => 'integer', default => '0' }, + shipvia => { type => 'text' }, + itime => { type => 'timestamp', default => 'now()' }, + mtime => { type => 'timestamp' }, + cp_id => { type => 'integer' }, + language_id => { type => 'integer' }, + payment_id => { type => 'integer' }, + delivery_customer_id => { type => 'integer' }, + delivery_vendor_id => { type => 'integer' }, + storno => { type => 'boolean', default => 'false' }, + taxzone_id => { type => 'integer' }, + shipto_id => { type => 'integer' }, + type => { type => 'text' }, + dunning_config_id => { type => 'integer' }, + orddate => { type => 'date' }, + quodate => { type => 'date' }, + globalproject_id => { type => 'integer' }, + salesman_id => { type => 'integer' }, + transaction_description => { type => 'text' }, + storno_id => { type => 'integer' }, + marge_total => { type => 'numeric', precision => 5, scale => 15 }, + marge_percent => { type => 'numeric', precision => 5, scale => 15 }, + donumber => { type => 'text' }, + invnumber_for_credit_note => { type => 'text' }, ], primary_key_columns => [ 'id' ],