This commit is contained in:
Kevin Adametz 2024-08-05 12:05:24 +02:00
parent 04d677d37a
commit bfa3bb1df4
1191 changed files with 637397 additions and 10619 deletions

View file

@ -54,7 +54,9 @@ class ShoppingPayment extends Model
'reference',
'amount',
'currency',
'mode'
'mode',
'is_abo',
'abo_interval',
];
@ -72,26 +74,26 @@ class ShoppingPayment extends Model
if($this->clearingtype === 'wlt') {
if ($this->wallettype === 'PPE') {
return 'PayPal';
return __('payment.paypal');
}
}
if($this->clearingtype === 'cc') {
return 'Kreditkarte';
return __('payment.credit_card');
}
if($this->clearingtype === 'vor') {
return 'Vorkasse';
return __('payment.prepayment');
}
if($this->clearingtype === 'elv') {
return 'SEPA Lastschrift';
return __('payment.sepa_direct_debit');
}
if($this->clearingtype === 'sb') {
if ($this->onlinebanktransfertype === 'PNT') {
return 'Sofort Überweisung';
return __('payment.sofort_bank_transfer');
}
}
if($this->clearingtype === 'fnc') {
if ($this->onlinebanktransfertype === 'MIV') {
return 'Rechnung';
return __('payment.purchase_on_account');
}
}
}