Whitespace
authorG. Richardson <information@kivitendo-premium.de>
Fri, 11 Aug 2017 10:07:50 +0000 (12:07 +0200)
committerG. Richardson <information@kivitendo-premium.de>
Fri, 11 Aug 2017 10:12:20 +0000 (12:12 +0200)
SL/Dev/Payment.pm

index 2d1846e..d932013 100644 (file)
@@ -42,10 +42,10 @@ sub create_bank_account {
 sub create_sepa_export {
   my (%params) = @_;
   my $sepa_export = SL::DB::SepaExport->new(
-    closed      => 0,
+    closed       => 0,
     employee_id  => $params{employee_id} // SL::DB::Manager::Employee->current->id,
-    executed    => 0,
-    vc          => 'customer',
+    executed     => 0,
+    vc           => 'customer',
   );
   $sepa_export->assign_attributes(%params) if %params;
   $sepa_export->save;
@@ -54,10 +54,10 @@ sub create_sepa_export {
 sub create_sepa_export_item {
   my (%params) = @_;
   my $sepa_exportitem = SL::DB::SepaExportItem->new(
-    chart_id       => delete $params{chart_id}       // $::instance_conf->get_ar_paid_accno_id,
-    payment_type   => 'without_skonto',
-    our_bic        => 'BANK1234',
-    our_iban       => 'DE12500105170648489890',
+    chart_id     => delete $params{chart_id} // $::instance_conf->get_ar_paid_accno_id,
+    payment_type => 'without_skonto',
+    our_bic      => 'BANK1234',
+    our_iban     => 'DE12500105170648489890',
   );
   $sepa_exportitem->assign_attributes(%params) if %params;
   $sepa_exportitem->save;