12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?php
- /**
- * 满即送活动规则模型
- *
- */
- namespace app\common\model;
- use think\facade\Db;
- /**
-
- *
-
- *
- * ----------------------------------------------------------------------------
- *
-
- * 数据层模型
- */
- class Pmansongrule extends BaseModel
- {
- /**
- * 读取满即送规则列表
- * @access public
- * @author csdeshang
- * @param type $mansong_id 满即送ID
- * @return type
- */
- public function getMansongruleListByID($mansong_id)
- {
- $mansong_rule_list = Db::name('pmansongrule')->where('mansong_id', $mansong_id)->order('mansongrule_price desc')->select()->toArray();
- if (!empty($mansong_rule_list)) {
- $goods_model = model('goods');
- for ($i = 0, $j = count($mansong_rule_list); $i < $j; $i++) {
- $goods_id = intval($mansong_rule_list[$i]['goods_id']);
- if (!empty($goods_id)) {
- $goods_info = $goods_model->getGoodsOnlineInfoByID($goods_id);
- if (!empty($goods_info)) {
- if (empty($mansong_rule_list[$i]['mansong_goods_name'])) {
- $mansong_rule_list[$i]['mansong_goods_name'] = $goods_info['goods_name'];
- }
- $mansong_rule_list[$i]['goods_image'] = $goods_info['goods_image'];
- $mansong_rule_list[$i]['goods_image_url'] = goods_cthumb($goods_info['goods_image'], $goods_info['store_id']);
- $mansong_rule_list[$i]['goods_storage'] = $goods_info['goods_storage'];
- $mansong_rule_list[$i]['goods_id'] = $goods_id;
- $mansong_rule_list[$i]['goods_url'] = (string)url('Goods/index', array('goods_id' => $goods_id));
- } else {
- $mansong_rule_list[$i]['goods_id'] = 0;
- }
- }
- }
- }
- return $mansong_rule_list;
- }
- /**
- * 增加
- * @access public
- * @author csdeshang
- * @param array $data 数据
- * @return bool
- */
- public function addMansongrule($data)
- {
- return Db::name('pmansongrule')->insertGetId($data);
- }
- /**
- * 批量增加
- * @access public
- * @author csdeshang
- * @param array $array 参数内容
- * @return bool
- */
- public function addMansongruleArray($array)
- {
- return Db::name('pmansongrule')->insertAll($array);
- }
- /**
- * 删除
- * @access public
- * @author csdeshang
- * @param array $condition 条件
- * @return bool
- */
- public function delMansongrule($condition)
- {
- return Db::name('pmansongrule')->where($condition)->delete();
- }
- }
|