]> wagnertech.de Git - kivitendo-erp.git/blobdiff - SL/DB/MetaSetup/SepaExportItem.pm
Merge branch 'b-3.6.1' of ../kivitendo-erp_20220811
[kivitendo-erp.git] / SL / DB / MetaSetup / SepaExportItem.pm
index f2b325d8509f0cdada765dd268e3e6ebc93bd46e..b24588af7552cbddcf49325b71594f6f570fe61c 100644 (file)
@@ -4,12 +4,12 @@ package SL::DB::SepaExportItem;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('sepa_export_items');
 
 __PACKAGE__->meta->columns(
-  amount                       => { type => 'numeric', precision => 5, scale => 25 },
+  amount                       => { type => 'numeric', precision => 25, scale => 5 },
   ap_id                        => { type => 'integer' },
   ar_id                        => { type => 'integer' },
   chart_id                     => { type => 'integer', not_null => 1 },
@@ -20,9 +20,11 @@ __PACKAGE__->meta->columns(
   our_bic                      => { type => 'varchar', length => 100 },
   our_depositor                => { type => 'text' },
   our_iban                     => { type => 'varchar', length => 100 },
-  reference                    => { type => 'varchar', length => 35 },
+  payment_type                 => { type => 'text', default => 'without_skonto' },
+  reference                    => { type => 'varchar', length => 140 },
   requested_execution_date     => { type => 'date' },
   sepa_export_id               => { type => 'integer', not_null => 1 },
+  skonto_amount                => { type => 'numeric', precision => 25, scale => 5 },
   vc_bic                       => { type => 'varchar', length => 100 },
   vc_depositor                 => { type => 'text' },
   vc_iban                      => { type => 'varchar', length => 100 },