phpvms/app/Models/JournalTransaction.php

75 lines
1.5 KiB
PHP
Raw Normal View History

2018-03-01 08:01:32 +08:00
<?php
/**
* Based on https://github.com/scottlaurent/accounting
* With modifications for phpVMS
*/
namespace App\Models;
use App\Interfaces\Model;
use App\Models\Traits\ReferenceTrait;
2018-03-01 08:01:32 +08:00
/**
* @property string id UUID type
2018-03-02 12:00:11 +08:00
* @property string currency
* @property string memo
* @property string transaction_group
* @property string post_date
2018-03-01 08:01:32 +08:00
* @property integer credit
* @property integer debit
2018-04-02 03:32:01 +08:00
* @property string ref_model
* @property integer ref_model_id
* @property Journal journal
2018-03-01 08:01:32 +08:00
*/
class JournalTransaction extends Model
2018-03-01 08:01:32 +08:00
{
use ReferenceTrait;
2018-03-01 08:01:32 +08:00
protected $table = 'journal_transactions';
2018-03-01 08:01:32 +08:00
public $incrementing = false;
2018-03-21 08:40:19 +08:00
protected $fillable = [
2018-03-01 08:01:32 +08:00
'transaction_group',
'journal_id',
'credit',
'debit',
2018-03-01 08:01:32 +08:00
'currency',
'memo',
'tags',
2018-04-02 03:32:01 +08:00
'ref_model',
'ref_model_id',
2018-03-01 08:01:32 +08:00
'post_date'
];
protected $casts = [
'credits' => 'integer',
'debit' => 'integer',
2018-03-01 08:01:32 +08:00
'post_date' => 'datetime',
'tags' => 'array',
];
//protected $dateFormat = 'Y-m-d';
protected $dates = [
'created_at',
'updated_at',
'post_date',
];
2018-03-01 08:01:32 +08:00
/**
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function journal()
{
return $this->belongsTo(Journal::class);
}
/**
* @param string $currency
*/
public function setCurrency($currency)
{
$this->currency = $currency;
}
}