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

209 lines
3.7 KiB
PHP

<?php
namespace App\Models;
use Phalcon\Mvc\Model\Behavior\SoftDelete;
class Order extends Model
{
/**
* 条目类型
*/
const ITEM_COURSE = 1; // 课程
const ITEM_PACKAGE = 2; // 套餐
const ITEM_REWARD = 3; // 赞赏
const ITEM_VIP = 4; // 会员
const ITEM_TEST = 99; // 测试
/**
* 状态类型
*/
const STATUS_PENDING = 1; // 待支付
const STATUS_SHIPPING = 2; // 发货中
const STATUS_FINISHED = 3; // 已完成
const STATUS_CLOSED = 4; // 已关闭
const STATUS_REFUNDED = 5; // 已退款
/**
* 主键编号
*
* @var int
*/
public $id;
/**
* 序号
*
* @var string
*/
public $sn;
/**
* 主题
*
* @var string
*/
public $subject;
/**
* 金额
*
* @var float
*/
public $amount;
/**
* 状态类型
*
* @var string
*/
public $status;
/**
* 删除标识
*
* @var int
*/
public $deleted;
/**
* 用户编号
*
* @var int
*/
public $owner_id;
/**
* 条目编号
*
* @var int
*/
public $item_id;
/**
* 条目类型
*
* @var int
*/
public $item_type;
/**
* 条目信息
*
* @var string|array
*/
public $item_info;
/**
* 终端类型
*
* @var int
*/
public $client_type;
/**
* 终端IP
*
* @var string
*/
public $client_ip;
/**
* 创建时间
*
* @var int
*/
public $create_time;
/**
* 更新时间
*
* @var int
*/
public $update_time;
public function getSource(): string
{
return 'kg_order';
}
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);
if (is_array($this->item_info) && !empty($this->item_info)) {
$this->item_info = kg_json_encode($this->item_info);
}
$this->create_time = time();
}
public function beforeUpdate()
{
if (is_array($this->item_info) && !empty($this->item_info)) {
$this->item_info = kg_json_encode($this->item_info);
}
$this->update_time = time();
}
public function afterSave()
{
if ($this->hasUpdated('status')) {
$orderStatus = new OrderStatus();
$orderStatus->order_id = $this->id;
$orderStatus->status = $this->getSnapshotData()['status'];
$orderStatus->create();
}
}
public function afterFetch()
{
$this->amount = (float)$this->amount;
if (is_string($this->item_info) && !empty($this->item_info)) {
$this->item_info = json_decode($this->item_info, true);
}
}
public static function itemTypes()
{
return [
self::ITEM_COURSE => '课程',
self::ITEM_PACKAGE => '套餐',
self::ITEM_REWARD => '赞赏',
self::ITEM_VIP => '会员',
self::ITEM_TEST => '测试',
];
}
public static function statusTypes()
{
return [
self::STATUS_PENDING => '待支付',
self::STATUS_SHIPPING => '发货中',
self::STATUS_FINISHED => '已完成',
self::STATUS_CLOSED => '已关闭',
self::STATUS_REFUNDED => '已退款',
];
}
}