-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathapi_config.php
123 lines (103 loc) · 3.73 KB
/
api_config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?PHP
class CPS360_config{
/********************************* CPS 信息 *********************************/
//合作编号,由360CPS分配
const BID = '';
//密钥,由360CPS系统
const CP_KEY = '';
//Cookie的有效期长,由商务上确定,一般是30天
const RD = '30';
/*
* 佣金比例计算
*
* 注意:自行开发请参考下方例子
*
* $product object 商品对象
* $order object 订单对象
*
* return float 返回佣金比例
*
*/
static public function COMMRATE($product,$order){
$rate = false;
/*
注意:
1.在此处可以通过 $order->attr('extraparam') 方法调用从Plugin传递的extraparam参数
*/
/*
方法一
佣金比例按商品分类制定,注意根据时间段不同而返回比例不同,如果阶段性的调整了佣金比例,在此处分时间段返回佣金比例
if($order->attr('order_time') > '2012-01-01 00:00:00' && $order->attr('order_time') <= '2100-12-31 23:59:59'){
switch($product->attr('cateid')){
case 1:
$rate = 0.1;
break;
default:
$rate = 0.1;
}
}
elseif($order->attr('order_time') > '1998-01-01 00:00:00' && $order->attr('order_time') <= '2012-01-01 00:00:00'){
switch($product->attr('cateid')){
case 1:
$rate = 0.2;
break;
default:
$rate = 0.3;
}
}
*/
/*
方法二
佣金比例按订单总价制定,注意根据时间段不同而返回比例不同,如果阶段性的调整了佣金比例,在此处分时间段返回佣金比例
if($order->attr('order_time') > '2012-01-01 00:00:00' && $order->attr('order_time') <= '2100-12-31 23:59:59'){
if($order->attr('total_price') >= 0 && $order->attr('total_price') < 100){
$rate = 0.01;
}elseif($order->attr('total_price') >= 100 && $order->attr('total_price') < 1000){
$rate = 0.1;
}elseif($order->attr('total_price') >= 1000){
$rate = 0.2;
}
}
elseif($order->attr('order_time') > '1998-01-01 00:00:00' && $order->attr('order_time') <= '2012-01-01 00:00:00'){
if($order->attr('total_price') >= 0 && $order->attr('total_price') < 100){
$rate = 0.03;
}elseif($order->attr('total_price') >= 100 && $order->attr('total_price') < 1000){
$rate = 0.4;
}elseif($order->attr('total_price') >= 1000){
$rate = 0.5;
}
}
*/
/*
方法三
固定金额佣金,注意根据时间段不同而返回比例不同,如果阶段性的调整了佣金比例,在此处分时间段返回佣金比例
if($order->attr('order_time') > '2012-01-01 00:00:00' && $order->attr('order_time') <= '2100-12-31 23:59:59'){
$comm = 100;
$rate = CPS360_api::round($comm / $order->attr('total_price'),6);
}
elseif($order->attr('order_time') > '1998-01-01 00:00:00' && $order->attr('order_time') <= '2012-01-01 00:00:00'){
$comm = 200;
$rate = CPS360_api::round($comm / $order->attr('total_price'),6);
}
*/
//默认全站为统一佣金比例,注意根据时间段不同而返回比例不同,如果阶段性的调整了佣金比例,在此处分时间段返回佣金比例
if($order->attr('order_time') > '2012-01-01 00:00:00' && $order->attr('order_time') <= '2100-12-31 23:59:59'){
$rate = 0.1;
}
elseif($order->attr('order_time') > '1998-01-01 00:00:00' && $order->attr('order_time') <= '2012-01-01 00:00:00'){
$rate = 0.2;
}
return $rate;
}
/********************************* CPS 接口设置 *********************************/
//插件名称,路径为"plugins/{PLUGIN_NAME}",类名为"{PLUGIN_NAME}"
const PLUGIN_NAME = 'CPS360_plugin_api';
//CPS表名
const TABLE_CPS = '360cps';
//Cookie名称
const COOKIE_NAME = 'cpsinfo';
//默认跳转地址
const REDIRECT_DEFAULT = 'http://www.example.com';
//时区设置
const TIME_ZONE = 'Asia/Chongqing';
}