xo_kf/application/admin/model/JunkaPurchcardLog.php

81 lines
1.8 KiB
PHP

<?php
namespace app\admin\model;
use think\Model;
class JunkaPurchcardLog extends Model
{
// 表名
protected $name = 'junka_purchcard_log';
// 自动写入时间戳字段
protected $autoWriteTimestamp = 'integer';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
protected $deleteTime = false;
// 追加属性
protected $append = [
'bill_time_text',
'status_text'
];
public function getStatusList()
{
return [
1 => __('购买成功'),
0 => __('购买失败'),
2 => __('退货中'),
3 => __('已退货'),
4 => __('拒绝退货'),
5 => __('已锁定'),
];
}
public function getBillTimeTextAttr($value, $data)
{
$value = $value ? $value : (isset($data['bill_time']) ? $data['bill_time'] : '');
return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value;
}
public function getStatusTextAttr($value, $data)
{
$value = $value ? $value : (isset($data['status']) ? $data['status'] : '');
$list = $this->getStatusList();
return isset($list[$value]) ? $list[$value] : '';
}
protected function setBillTimeAttr($value)
{
return $value === '' ? null : ($value && !is_numeric($value) ? strtotime($value) : $value);
}
public function store()
{
return $this->hasOne('junkaStore', 'id', 'store_id')->setEagerlyType(0);
}
public function code()
{
return $this->hasOne('junkaCode', 'code', 'product_code')->setEagerlyType(0);
}
public function reject()
{
return $this->hasOne('junkaReject', 'purchcard_log_id', 'id')->setEagerlyType(1);
}
}