1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-22 19:44:02 +08:00
2020-08-26 20:02:34 +08:00

175 lines
2.8 KiB
PHP

<?php
namespace App\Models;
use Phalcon\Mvc\Model\Behavior\SoftDelete;
class Trade extends Model
{
/**
* 平台类型
*/
const CHANNEL_ALIPAY = 1; // 支付宝
const CHANNEL_WXPAY = 2; // 微信
/**
* 状态类型
*/
const STATUS_PENDING = 1; // 待支付
const STATUS_FINISHED = 2; // 已完成
const STATUS_CLOSED = 3; // 已关闭
const STATUS_REFUNDED = 4; // 已退款
/**
* 主键编号
*
* @var int
*/
public $id;
/**
* 用户编号
*
* @var int
*/
public $owner_id;
/**
* 订单编号
*
* @var int
*/
public $order_id;
/**
* 商户流水号
*
* @var string
*/
public $sn;
/**
* 主题
*
* @var string
*/
public $subject;
/**
* 金额
*
* @var float
*/
public $amount;
/**
* 平台类型
*
* @var int
*/
public $channel;
/**
* 平台流水号
*
* @var string
*/
public $channel_sn;
/**
* 状态类型
*
* @var int
*/
public $status;
/**
* 删除标识
*
* @var int
*/
public $deleted;
/**
* 创建时间
*
* @var int
*/
public $create_time;
/**
* 更新时间
*
* @var int
*/
public $update_time;
public function getSource(): string
{
return 'kg_trade';
}
public function initialize()
{
parent::initialize();
$this->keepSnapshots(true);
$this->addBehavior(
new SoftDelete([
'field' => 'deleted',
'value' => 1,
])
);
}
public function beforeCreate()
{
$this->status = self::STATUS_PENDING;
$this->sn = date('YmdHis') . rand(1000, 9999);
$this->create_time = time();
}
public function beforeUpdate()
{
$this->update_time = time();
}
public function afterSave()
{
if ($this->hasUpdated('status')) {
$tradeStatus = new TradeStatus();
$tradeStatus->trade_id = $this->id;
$tradeStatus->status = $this->getSnapshotData()['status'];
$tradeStatus->create();
}
}
public function afterFetch()
{
$this->amount = (float)$this->amount;
}
public static function channelTypes()
{
return [
self::CHANNEL_ALIPAY => '支付宝',
self::CHANNEL_WXPAY => '微信',
];
}
public static function statusTypes()
{
return [
self::STATUS_PENDING => '待支付',
self::STATUS_FINISHED => '已完成',
self::STATUS_CLOSED => '已关闭',
self::STATUS_REFUNDED => '已退款',
];
}
}