You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

200 lines
5.0 KiB
PHTML

2 years ago
<?php
namespace Mobile\Model;
use Think\Model;
/**
* 订单模型
*/
class OrderModel extends Model{
/* 自动验证规则 */
protected $_validate = array(
);
/* 自动完成规则 */
protected $_auto = array(
array('create_time', 'getCreateTime', self::MODEL_INSERT, 'callback'),
);
/**
* 构造函数
* @param string $name 模型名称
* @param string $tablePrefix 表前缀
* @param mixed $connection 数据库连接信息
*/
public function __construct($name = '', $tablePrefix = '', $connection = '') {
/* 设置默认的表前缀 */
$this->tablePrefix ='tab_';
/* 执行构造方法 */
parent::__construct($name, $tablePrefix, $connection);
}
/**
* 订单列表
* @param integer $p 页码
* @param array $map 条件数组
* @param string $fields 字段列表
* @param string $order 排序
* @param integer $row 每页数量
* @return array 结果数据集
* @author 鹿文学
*/
public function lists($p=1,$map=array(),$fields=true,$order='online_time desc',$row=10) {
$page = intval($p);
$page = $page ? $page : 1; //默认显示第一页数据
$lists = $this->alias('m')->field($fields)
->where($map)->page($page,$row)->order($order)->select();
$count = $this->alias('m')->where($map)->count();
if(is_array($lists)) {
$data['lists'] = $lists;$data['status']=1;
if($count > $row){
$data['total'] = ceil($count/$row);
} else {
$data['total']=1;
}
} else {
$data['lists']='';$data['total'] = 1;$data['status'] = 0;
}
$data['current'] = $page;
return $data;
}
/**
* 新增或更新一个商品
* @param array $data 手动传入的数据
* @return boolean fasle 失败 int 成功 返回完整的数据
* @author 王贺
*/
public function update($data = null){
/* 获取数据对象 */
$data = $this->token(false)->create($data);
if(empty($data)){
return false;
}
/* 添加或新增基础内容 */
if(empty($data['id'])){ //新增数据
$id = $this->add($data); //添加基础内容
if(!$id){
$this->error = '新增基础内容出错!';
return false;
}else{
if(!isset($data['relation_game_id'])){
$relation=M('Game','tab_')->where(array('id'=>$id))->save(array('relation_game_id'=>$id));
if(!$relation){
$this->error('关联id添加失败');//游戏添加完成
}
}
}
} else { //更新数据
$status = $this->save(); //更新基础内容
if(false === $status){
$this->error = '更新基础内容出错!';
return false;
}
}
// 添加或新增扩展内容
$logic = $this->logic('Set');
$logic->checkModelAttr(5);
if(!$logic->update($id)){
if(isset($id)){ //新增失败,删除基础数据
$this->delete($id);
}
$this->error = $logic->getError();
return false;
}
return $data;
}
/**
* 创建时间不写则取当前时间
* @return int 时间戳
* @author huajie <banhuajie@163.com>
*/
protected function getCreateTime(){
$create_time = I('post.create_time');
return $create_time?strtotime($create_time):NOW_TIME;
}
protected function ratio_c(){
$ratio=I('post.ratio');
if((0<=$ratio)&&(100>=$ratio)){
return true;
}else{
return false;
}
}
/**
* 获取订单总数
* @param array $map 条件数组
* @return integer 总数
* @author 鹿文学
*/
public function total($map) {
return $this->where($map)->count();
}
/**
* 订单详情
* @param integer $id 商品编号
* @return array 结果数据集
* @author 鹿文学
*/
public function get_info_by_good($id=0) {
if(is_numeric($id) && $id > 0) {
$map['merchandise_id'] = $id;
$map['_string'] = ' pay_status=1 ';
$data = $this->where($map)->find();
}
return $data;
}
/**
* 获取订单信息
* @param string $orderno 订单号
* @return array
* @author 鹿文学
*/
public function info_by_orderno($orderno) {
$res = $this->where(['order_number|trade_no'=>$orderno])->find();
return $res;
}
/**
* 获取商品号
* @param string $orderno 订单号
* @return integer 商品编号
* @author 鹿文学
*/
public function get_mid_by_orderno($orderno) {
$res = $this->field('merchandise_id')->where(['order_number'=>$orderno])->find();
return $res['merchandise_id'];
}
}