mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-05 06:45:32 +08:00
50 lines
1.7 KiB
PHP
50 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* Copyright 2026 ShopeX (https://www.shopex.cn)
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: yaokangming
|
|
* Date: 2019/3/19
|
|
* Time: 18:04
|
|
*/
|
|
class crm_gift_buyernick
|
|
{
|
|
|
|
/**
|
|
* 处理
|
|
* @param mixed $ruleBase ruleBase
|
|
* @param mixed $sdf sdf
|
|
* @return mixed 返回值
|
|
*/
|
|
|
|
public function process($ruleBase, $sdf) {
|
|
#会员是否已经购买过了
|
|
if($ruleBase['filter_arr']['buyer_nick'] == '1' ){
|
|
#查询会员已经送出的订单数,针对当前规则
|
|
$sql = "select count(distinct order_bn) as total_orders from sdb_ome_gift_logs where gift_rule_id =".$ruleBase['rule_id']." and buyer_account='".$sdf['buyer_nick']."'";
|
|
$_rs = kernel::database()->selectRow($sql);
|
|
if($_rs['total_orders'] > 0) {
|
|
return array(false, '每ID只第一次购买赠送');
|
|
}
|
|
}
|
|
if ($ruleBase['filter_arr']['member_uname']) {
|
|
if (!$sdf['buyer_nick'] or !in_array(trim($sdf['buyer_nick']), explode(',', $ruleBase['filter_arr']['member_uname']))) {
|
|
return array(false, '不符合指定会员');
|
|
}
|
|
}
|
|
return array(true);
|
|
}
|
|
} |