123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <?php
- /**
- * 常用商品分类模型
- *
- *
- *
- *
-
- */
- defined ( 'InShopNC' ) or exit ( 'Access Invalid!' );
- class goods_class_stapleModel extends Model {
- public function __construct(){
- parent::__construct('goods_class_staple');
- }
- /**
- * 常用分类列表
- *
- * @param array $condition 条件
- * @param string $order 排序
- * @param string $field 字段
- * @param int $limit 限制
- * @return array 二维数组
- */
- public function getStapleList($condition, $field = '*', $order = 'counter desc', $limit = 20) {
- $result = $this->field($field)->where($condition)->order($order)->limit($limit)->select();
- return $result;
- }
-
- /**
- * 一条记录
- *
- * @param array $condition 检索条件
- * @param object $page
- * @return array 一维数组结构的返回结果
- */
- public function getStapleInfo($condition, $field = '*') {
- $result = $this->field($field)->where($condition)->find();
- return $result;
- }
-
- /**
- * 添加常用分类,如果已存在计数器+1
- *
- * $param array $patam 参数
- * $param int $member_id 成员id
- */
- public function autoIncrementStaple($param, $member_id) {
- $where = array(
- 'gc_id_1' => intval($param['gc_id_1']),
- 'gc_id_2' => intval($param['gc_id_2']),
- 'gc_id_3' => intval($param['gc_id_3']),
- 'member_id' => $member_id
- );
- $staple_info = $this->getStapleInfo($where);
- if (empty($staple_info)) {
- $insert = array(
- 'staple_name' => $param['gc_tag_name'],
- 'gc_id_1' => intval($param['gc_id_1']),
- 'gc_id_2' => intval($param['gc_id_2']),
- 'gc_id_3' => intval($param['gc_id_3']),
- 'type_id' => $param['type_id'],
- 'member_id' => $member_id
- );
- $this->addStaple($insert);
- } else {
- $update = array('counter' => array('exp', 'counter + 1'));
- $where = array('staple_id' => $staple_info['staple_id']);
- $this->updateStaple($update, $where);
- }
- return true;
- }
-
- /**
- * 新增
- *
- * @param array $param 参数内容
- * @return boolean 布尔类型的返回结果
- */
- public function addStaple($param) {
- $result = $this->insert($param);
- return $result;
- }
-
- /**
- * 更新
- *
- * @param array $update 更新内容
- * @param array $where 条件
- * @return boolean
- */
- public function updateStaple($update, $where) {
- $result = $this->where($where)->update($update);
- return $result;
- }
-
- /**
- * 删除常用分类
- *
- * @param array $condtion 条件
- * @return boolean
- */
- public function delStaple($condtion) {
- $result = $this->where($condtion)->delete();
- return $result;
- }
- }
|