01 2020
This commit is contained in:
parent
f117f79bb9
commit
3711fcc8d0
101 changed files with 4027 additions and 918 deletions
|
|
@ -66,19 +66,22 @@ class ShoppingPayment extends Model
|
|||
|
||||
public function getPaymentType(){
|
||||
|
||||
if($this->clearingtype == 'wlt') {
|
||||
if ($this->wallettype == 'PPE') {
|
||||
if($this->clearingtype === 'wlt') {
|
||||
if ($this->wallettype === 'PPE') {
|
||||
return 'PayPal';
|
||||
}
|
||||
}
|
||||
if($this->clearingtype == 'cc') {
|
||||
if($this->clearingtype === 'cc') {
|
||||
return 'Kreditkarte';
|
||||
}
|
||||
if($this->clearingtype == 'vor') {
|
||||
if($this->clearingtype === 'vor') {
|
||||
return 'Vorkasse';
|
||||
}
|
||||
if($this->clearingtype == 'sb') {
|
||||
if ($this->onlinebanktransfertype == 'PNT') {
|
||||
if($this->clearingtype === 'elv') {
|
||||
return 'SEPA Lastschrift';
|
||||
}
|
||||
if($this->clearingtype === 'sb') {
|
||||
if ($this->onlinebanktransfertype === 'PNT') {
|
||||
return 'Sofort Überweisung';
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue