X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/ff159a4d47b9a2d10744dcfc23da2c63605c8a32..eeb5375ee7727c956cc357cc8f90b19d1bfe80b9:/SL/DB/MetaSetup/PurchaseInvoice.pm diff --git a/SL/DB/MetaSetup/PurchaseInvoice.pm b/SL/DB/MetaSetup/PurchaseInvoice.pm index 4a443ac61..f16bceee3 100644 --- a/SL/DB/MetaSetup/PurchaseInvoice.pm +++ b/SL/DB/MetaSetup/PurchaseInvoice.pm @@ -19,12 +19,14 @@ __PACKAGE__->meta->columns( direct_debit => { type => 'boolean', default => 'false' }, duedate => { type => 'date' }, employee_id => { type => 'integer' }, + exchangerate => { type => 'numeric', precision => 15, scale => 5 }, gldate => { type => 'date', default => 'now' }, globalproject_id => { type => 'integer' }, id => { type => 'integer', not_null => 1, sequence => 'glid' }, intnotes => { type => 'text' }, invnumber => { type => 'text', not_null => 1 }, invoice => { type => 'boolean', default => 'false' }, + is_sepa_blocked => { type => 'boolean', default => 'false' }, itime => { type => 'timestamp', default => 'now()' }, language_id => { type => 'integer' }, mtime => { type => 'timestamp' }, @@ -34,6 +36,7 @@ __PACKAGE__->meta->columns( ordnumber => { type => 'text' }, paid => { type => 'numeric', default => '0', not_null => 1, precision => 15, scale => 5 }, payment_id => { type => 'integer' }, + qrbill_data => { type => 'text' }, quodate => { type => 'date' }, quonumber => { type => 'text' }, shipvia => { type => 'text' },