### 用参与门店、会员级别和会员优先等信息过滤活动
**位置:**
Common\Lib\EventLib.class.php
**参数:**
* @param $types int 活动类型 1为限时折扣,2为满减,3为满折
* @param $use int 获取价格的用途,1为展示用, 2为POS结算,3为小程序结算
* @param $vip_type int 会员类别ID
* @return $event_result mixed 符合条件的活动
**调用:**
//组件内部调用
$event_result = $this->getTimeEvent($types, $use, $vip_type);
**完整代码:**
~~~
/**
*
* 用参与门店、会员级别和会员优先等信息过滤活动
* @param $types int 活动类型 1为限时折扣,2为满减,3为满折
* @param $vip_type int 会员类别ID
* @param $use int 获取价格的用途,1为展示用, 2为POS结算,3为小程序结算
* @return $event_result mixed 符合条件的活动
*/
public function getTimeEvent($types, $use, $vip_type) {
$time = time();
// 展示用
if ($use == 1) {
// 查询所有正在进行的限时折扣活动
$map['start_time'] = array('elt', $time); // 活动开始时间
$map['end_time'] = array('egt', $time); // 活动结束时间
$map['types'] = array('eq', $types); // 活动类型 1为限时折扣,2为满减,3为满折
$map['status'] = 1; // 审批状态(0为未审批;1为审批通过;2为终止或审批不通过)
$event_result = M('event_basic')->where($map)->select();
return $event_result;
}
// POS结算
if ($use == 2) {
// 调用获取操作门店方法
$max_shop_id = $this->getShopsId();
// POS结算需要考虑门店查询本门店的活动
$event_result = M('event_basic as b')
->field("b.*,s.shops_id")
->join("coscia_event_shop as s on s.event_id = b.id", "left")
->where("b.status = '1' AND b.types = '{$types}' AND (s.shops_id = '1' OR s.shops_id = '{$max_shop_id}') AND b.end_time >= '{$time}'
AND b.start_time <= {$time}")
->select();
// 小程序结算
} elseif ($use == 3) {
// 小程序结算不用考虑门店,查询所有正在进行的限时折扣活动
$map['start_time'] = array('elt', $time); // 活动开始时间
$map['end_time'] = array('egt', $time); // 活动结束时间
$map['types'] = array('eq', $types); // 活动类型 1为限时折扣,2为满减,3为满折
$map['status'] = 1; // 审批状态(0为未审批;1为审批通过;2为终止或审批不通过)
$event_result = M('event_basic')->where($map)->select();
}
// 顾客身份判断是否符合条件
foreach ($event_result as $key => $value) {
if (!empty($value['actor'])) {
$actor = explode(',', $value['actor']);
if (!in_array($vip_type, $actor)) {
unset($event_result[$key]);
continue;
}
}
}
// 判断是否有会员优先,1代表会员优先
foreach ($event_result as $k => $v) {
if ($v['prior'] == 1) {
if (empty($vip_type)) {
$nvip_start = $v['start_time'] + $v['prior_days'] * 86400; // 非会员活动开始时间
// 如果非会员活动时间还没到,则删除活动
if ($time < $nvip_start) {
unset($event_result[$k]);
}
}
}
}
return $event_result;
}
~~~
- 模版
- 前言
- 项目架构
- 项目规范
- HTML
- CSS
- Javascript
- PHP
- MySQL
- 注意规范
- 开发版本管理
- 开发流程
- 系统配置
- 阿里云服务器配置
- 计划任务配置说明
- 开发示例
- Page分页
- Search_param搜索结果赋值
- Add新增
- Edit编辑
- Ajax表单验证
- Ajax二级联动
- Excel 导出数据首位不去0的方法
- POS总部控制
- 下载CSV格式的模板
- 订单唯一码表和订单SKU表实收金额生成
- 快捷日期选择
- JS函数
- ajax_send
- ajax_result
- createQrCodes
- createBarCodes
- printTpl
- JS插件
- BootstrapValidator表单验证插件
- Address省市区插件
- Bootstrap-datepicker日期插件
- Bootstrap-select多选框插件
- Toastr消息提示插件
- PalyAudit扫描声音提示插件
- WebUploader多图片上传插件
- Ueditor富文本编辑器插件
- Function
- alert
- object_to_array
- array_to_object
- get_address
- set_param_url
- get_shops_name
- get_user_name
- get_warehouse
- get_cheapest_sku
- print_attr(新)
- print_img(新)
- get_spu_no(新)
- get_type_name(新)
- get_brand_en(新)
- get_cat_name(新)
- get_attr_name(新)
- spu_cat_info(新)
- get_time_event_price
- get_vendors
- check_total_reduce
- check_total_discount
- get_inventory
- get_delivery
- get_sale_inventory
- get_customer_name
- phone_protection
- get_order_no
- get_event_name
- get_order_status
- get_item_status
- get_ditch_name
- get_card_no
- get_shop_sales
- get_pay_name
- get_season
- amt_format
- get_cat_parent
- print_attr_id
- round_bcadd
- round_bcsub
- round_bcmul
- round_bcdiv
- get_account_name
- Controller
- Common_BaseController
- check_membership_card
- get_menu_list
- importErrorMassage
- Wpos_IndexController
- get_customer_vip_card
- get_shops_id
- calculate_active_integral
- check_numbers_active
- check_goods_active
- Woms_IndexController
- Model
- View
- category
- cycle_date.html
- shop_select门店多选搜索框
- 品牌A-Z排序多选brand_mc.html
- 供应商代码A-Z排序vendor_no_mc.html
- Lib
- BuyerLib
- WarehouseLib
- EventLib
- getTimeEventPrice
- getVipType
- getEvent
- orderTotalEvent
- orderTimeEvent
- getTotalReduce
- getTotalDiscount
- SaleLib
- CustomerLib
- addCustomerService
- GiftcardLib
- WechatLib
- wxRefund
- OrdersLib
- orderLog
- calculatePayinAmount
- calculateSubtotal
- correctPayinAmount
- saveOrderAddress
- getOrderAddress
- setDeliveryNo
- SyncLib
- updateOuterStock
- UserLib
- createCommission
- FlowLib
- orderList
- addOrder
- addLog
- orderInfo
- checkSku
- orderSave
- orderStop
- orderExecute
- skuEdit
- orderPrinta
- scanGoods
- boxClose
- orderOut
- take
- bview
- check
- deliveryStatus
- checkGoods
- GoodsLib
- createGoodsNo
- createNewGoodsNo
- getSystemStyleNo
- getDim
- MallLib
- smsLog
- GoodsBaseLib
- getBrandInfo
- getBrandsInfo
- getAttrIdArray
- getPrintAttr
- getMustAttr
- getCatIdInfo
- valTypeId
- valsTypeId
- getCatNoInfo
- getCatInfo
- getAttrArr
- getAttrInfo
- getValInfo
- getAttrId
- getValId
- getAttrSeaon
- getValueId
- PointsLog
- pointsIn
- pointsUp
- EcGoodsLib
- getSkuInventory
- Tools
- CsvTools
- csvImport
- csvExport
- ExcelTools
- importExcel
- exportExcel
- exportHeadExcel
- MailTools
- SmsTools
- sendMessage
- UploadTools
- ExportTools
- exportData
- TaobaoTools
- getOnsaleItems
- getSkusItems
- PicturesTools
- uploadPicture
- Plugins
- WxBase
- Taobao
- 问题反馈