119 lines
No EOL
4.7 KiB
PHP
119 lines
No EOL
4.7 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Services\Util;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* App\Models\ShoppingPayment
|
|
*
|
|
* @property int $id
|
|
* @property int $shopping_order_id
|
|
* @property string $clearingtype
|
|
* @property string|null $wallettype
|
|
* @property string|null $onlinebanktransfertype
|
|
* @property string $reference
|
|
* @property int $amount
|
|
* @property string $currency
|
|
* @property string|null $status
|
|
* @property string|null $txaction
|
|
* @property \Illuminate\Support\Carbon|null $created_at
|
|
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\PaymentTransaction[] $payment_transactions
|
|
* @property-read int|null $payment_transactions_count
|
|
* @property-read \App\Models\ShoppingOrder $shopping_order
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ShoppingPayment newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ShoppingPayment newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ShoppingPayment query()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ShoppingPayment whereAmount($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ShoppingPayment whereClearingtype($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ShoppingPayment whereCreatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ShoppingPayment whereCurrency($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ShoppingPayment whereId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ShoppingPayment whereOnlinebanktransfertype($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ShoppingPayment whereReference($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ShoppingPayment whereShoppingOrderId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ShoppingPayment whereStatus($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ShoppingPayment whereTxaction($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ShoppingPayment whereUpdatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ShoppingPayment whereWallettype($value)
|
|
* @property string|null $mode
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ShoppingPayment whereMode($value)
|
|
* @property array|null $carddata
|
|
* @property int|null $is_abo
|
|
* @property int|null $abo_interval
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ShoppingPayment whereAboInterval($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ShoppingPayment whereCarddata($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|ShoppingPayment whereIsAbo($value)
|
|
* @property string|null $identifier
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ShoppingPayment whereIdentifier($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class ShoppingPayment extends Model
|
|
{
|
|
protected $table = 'shopping_payments';
|
|
|
|
protected $casts = [
|
|
'carddata' => 'array',
|
|
];
|
|
|
|
protected $fillable = [
|
|
'shopping_order_id',
|
|
'clearingtype',
|
|
'wallettype',
|
|
'onlinebanktransfertype',
|
|
'carddata',
|
|
'reference',
|
|
'amount',
|
|
'currency',
|
|
'mode',
|
|
'is_abo',
|
|
'abo_interval',
|
|
'identifier',
|
|
];
|
|
|
|
|
|
public function shopping_order()
|
|
{
|
|
return $this->belongsTo('App\Models\ShoppingOrder','shopping_order_id');
|
|
}
|
|
|
|
public function payment_transactions()
|
|
{
|
|
return $this->hasMany('App\Models\PaymentTransaction','shopping_payment_id');
|
|
}
|
|
|
|
public function getPaymentType(){
|
|
|
|
if($this->clearingtype === 'wlt') {
|
|
if ($this->wallettype === 'PPE') {
|
|
return __('payment.paypal');
|
|
}
|
|
}
|
|
if($this->clearingtype === 'cc') {
|
|
return __('payment.credit_card');
|
|
}
|
|
if($this->clearingtype === 'vor') {
|
|
return __('payment.prepayment');
|
|
}
|
|
if($this->clearingtype === 'elv') {
|
|
return __('payment.sepa_direct_debit');
|
|
}
|
|
if($this->clearingtype === 'sb') {
|
|
if ($this->onlinebanktransfertype === 'PNT') {
|
|
return __('payment.sofort_bank_transfer');
|
|
}
|
|
}
|
|
if($this->clearingtype === 'fnc') {
|
|
if ($this->onlinebanktransfertype === 'MIV') {
|
|
return __('payment.purchase_on_account');
|
|
}
|
|
}
|
|
return __('payment.unknown');
|
|
}
|
|
|
|
public function getPaymentAmount(){
|
|
return Util::formatNumber($this->amount/100)." ".$this->currency;
|
|
}
|
|
} |