forked from PrestaShop/loyalty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LoyaltyModule.php
273 lines (238 loc) · 9.57 KB
/
LoyaltyModule.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
<?php
/*
* 2007-2016 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <[email protected]>
* @copyright 2007-2016 PrestaShop SA
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
if (!defined('_PS_VERSION_'))
exit;
class LoyaltyModule extends ObjectModel
{
public $id_loyalty_state;
public $id_customer;
public $id_order;
public $id_cart_rule;
public $points;
public $date_add;
public $date_upd;
/**
* @see ObjectModel::$definition
*/
public static $definition = array(
'table' => 'loyalty',
'primary' => 'id_loyalty',
'fields' => array(
'id_loyalty_state' => array('type' => self::TYPE_INT, 'validate' => 'isInt'),
'id_customer' => array('type' => self::TYPE_INT, 'validate' => 'isInt', 'required' => true),
'id_order' => array('type' => self::TYPE_INT, 'validate' => 'isInt'),
'id_cart_rule' => array('type' => self::TYPE_INT, 'validate' => 'isInt'),
'points' => array('type' => self::TYPE_INT, 'validate' => 'isInt', 'required' => true),
'date_add' => array('type' => self::TYPE_DATE, 'validate' => 'isDate'),
'date_upd' => array('type' => self::TYPE_DATE, 'validate' => 'isDate'),
)
);
public function save($nullValues = false, $autodate = true)
{
parent::save($nullValues, $autodate);
$this->historize();
}
public static function getByOrderId($id_order)
{
if (!Validate::isUnsignedId($id_order))
return false;
$result = Db::getInstance()->getRow('
SELECT f.id_loyalty
FROM `'._DB_PREFIX_.'loyalty` f
WHERE f.id_order = '.(int)($id_order));
return isset($result['id_loyalty']) ? $result['id_loyalty'] : false;
}
public static function getOrderNbPoints($order)
{
if (!Validate::isLoadedObject($order))
return false;
return self::getCartNbPoints(new Cart((int)$order->id_cart));
}
public static function getCartNbPoints($cart, $newProduct = NULL)
{
$total = 0;
if (Validate::isLoadedObject($cart))
{
$currentContext = Context::getContext();
$context = clone $currentContext;
$context->cart = $cart;
// if customer is logged we do not recreate it
if(!$context->customer->isLogged(true))
$context->customer = new Customer($context->cart->id_customer);
$context->language = new Language($context->cart->id_lang);
$context->shop = new Shop($context->cart->id_shop);
$context->currency = new Currency($context->cart->id_currency, null, $context->shop->id);
$cartProducts = $cart->getProducts();
$taxesEnabled = Product::getTaxCalculationMethod();
if (isset($newProduct) AND !empty($newProduct))
{
$cartProductsNew['id_product'] = (int)$newProduct->id;
if ($taxesEnabled == PS_TAX_EXC)
$cartProductsNew['price'] = number_format($newProduct->getPrice(false, (int)$newProduct->getIdProductAttributeMostExpensive()), 2, '.', '');
else
$cartProductsNew['price_wt'] = number_format($newProduct->getPrice(true, (int)$newProduct->getIdProductAttributeMostExpensive()), 2, '.', '');
$cartProductsNew['cart_quantity'] = 1;
$cartProducts[] = $cartProductsNew;
}
foreach ($cartProducts AS $product)
{
if (!(int)(Configuration::get('PS_LOYALTY_NONE_AWARD')) AND Product::isDiscounted((int)$product['id_product']))
{
if (isset(Context::getContext()->smarty) AND is_object($newProduct) AND $product['id_product'] == $newProduct->id)
Context::getContext()->smarty->assign('no_pts_discounted', 1);
continue;
}
$total += ($taxesEnabled == PS_TAX_EXC ? $product['price'] : $product['price_wt'])* (int)($product['cart_quantity']);
}
foreach ($cart->getCartRules(false) AS $cart_rule)
if ($taxesEnabled == PS_TAX_EXC)
$total -= $cart_rule['value_tax_exc'];
else
$total -= $cart_rule['value_real'];
}
return self::getNbPointsByPrice($total);
}
public static function getVoucherValue($nbPoints, $id_currency = NULL)
{
$currency = $id_currency ? new Currency($id_currency) : Context::getContext()->currency->id;
return (int)$nbPoints * (float)Tools::convertPrice(Configuration::get('PS_LOYALTY_POINT_VALUE'), $currency);
}
public static function getNbPointsByPrice($price)
{
if (Configuration::get('PS_CURRENCY_DEFAULT') != Context::getContext()->currency->id)
{
if (Context::getContext()->currency->conversion_rate)
$price = $price / Context::getContext()->currency->conversion_rate;
}
/* Prevent division by zero */
$points = 0;
if ($pointRate = (float)(Configuration::get('PS_LOYALTY_POINT_RATE')))
$points = floor(number_format($price, 2, '.', '') / $pointRate);
return (int)$points;
}
public static function getPointsByCustomer($id_customer)
{
$validity_period = Configuration::get('PS_LOYALTY_VALIDITY_PERIOD');
$sql_period = '';
if ((int)$validity_period > 0)
$sql_period = ' AND datediff(NOW(),f.date_add) <= '.$validity_period;
return
Db::getInstance()->getValue('
SELECT SUM(f.points) points
FROM `'._DB_PREFIX_.'loyalty` f
WHERE f.id_customer = '.(int)($id_customer).'
AND f.id_loyalty_state IN ('.(int)(LoyaltyStateModule::getValidationId()).', '.(int)(LoyaltyStateModule::getNoneAwardId()).')
'.$sql_period)
+
Db::getInstance()->getValue('
SELECT SUM(f.points) points
FROM `'._DB_PREFIX_.'loyalty` f
WHERE f.id_customer = '.(int)($id_customer).'
AND f.id_loyalty_state = '.(int)LoyaltyStateModule::getCancelId().'
AND points < 0
'.$sql_period);
}
public static function getAllByIdCustomer($id_customer, $id_lang, $onlyValidate = false, $pagination = false, $nb = 10, $page = 1)
{
$validity_period = Configuration::get('PS_LOYALTY_VALIDITY_PERIOD');
$sql_period = '';
if ((int)$validity_period > 0)
$sql_period = ' AND datediff(NOW(),f.date_add) <= '.$validity_period;
$query = '
SELECT f.id_order AS id, f.date_add AS date, (o.total_paid - o.total_shipping) total_without_shipping, f.points, f.id_loyalty, f.id_loyalty_state, fsl.name state
FROM `'._DB_PREFIX_.'loyalty` f
LEFT JOIN `'._DB_PREFIX_.'orders` o ON (f.id_order = o.id_order)
LEFT JOIN `'._DB_PREFIX_.'loyalty_state_lang` fsl ON (f.id_loyalty_state = fsl.id_loyalty_state AND fsl.id_lang = '.(int)($id_lang).')
WHERE f.id_customer = '.(int)($id_customer).$sql_period;
if ($onlyValidate === true)
$query .= ' AND f.id_loyalty_state = '.(int)LoyaltyStateModule::getValidationId();
$query .= ' GROUP BY f.id_loyalty '.
($pagination ? 'LIMIT '.(((int)($page) - 1) * (int)($nb)).', '.(int)($nb) : '');
return Db::getInstance()->executeS($query);
}
public static function getDiscountByIdCustomer($id_customer, $last = false)
{
$query = '
SELECT f.id_cart_rule AS id_cart_rule, f.date_upd AS date_add
FROM `'._DB_PREFIX_.'loyalty` f
LEFT JOIN `'._DB_PREFIX_.'orders` o ON (f.`id_order` = o.`id_order`)
INNER JOIN `'._DB_PREFIX_.'cart_rule` cr ON (cr.`id_cart_rule` = f.`id_cart_rule`)
WHERE f.`id_customer` = '.(int)($id_customer).'
AND f.`id_cart_rule` > 0
AND o.`valid` = 1
GROUP BY f.id_cart_rule';
if ($last)
$query.= ' ORDER BY f.id_loyalty DESC LIMIT 0,1';
return Db::getInstance()->executeS($query);
}
public static function registerDiscount($cartRule)
{
if (!Validate::isLoadedObject($cartRule))
die(Tools::displayError('Incorrect object CartRule.'));
$items = self::getAllByIdCustomer((int)$cartRule->id_customer, NULL, true);
$associated = false;
foreach ($items AS $item)
{
$lm = new LoyaltyModule((int)$item['id_loyalty']);
/* Check for negative points for this order */
$negativePoints = (int)Db::getInstance()->getValue('SELECT SUM(points) points FROM '._DB_PREFIX_.'loyalty WHERE id_order = '.(int)$item['id'].' AND id_loyalty_state = '.(int)LoyaltyStateModule::getCancelId().' AND points < 0');
if ($lm->points + $negativePoints <= 0)
continue;
$lm->id_cart_rule = (int)$cartRule->id;
$lm->id_loyalty_state = (int)LoyaltyStateModule::getConvertId();
$lm->save();
$associated = true;
}
return $associated;
}
public static function getOrdersByIdDiscount($id_cart_rule)
{
$items = Db::getInstance()->executeS('
SELECT f.id_order AS id_order, f.points AS points, f.date_upd AS date
FROM `'._DB_PREFIX_.'loyalty` f
WHERE f.id_cart_rule = '.(int)$id_cart_rule.' AND f.id_loyalty_state = '.(int)LoyaltyStateModule::getConvertId());
if (!empty($items) AND is_array($items))
{
foreach ($items AS $key => $item)
{
$order = new Order((int)$item['id_order']);
$items[$key]['id_currency'] = (int)$order->id_currency;
$items[$key]['id_lang'] = (int)$order->id_lang;
$items[$key]['total_paid'] = $order->total_paid;
$items[$key]['total_shipping'] = $order->total_shipping;
}
return $items;
}
return false;
}
/* Register all transaction in a specific history table */
private function historize()
{
Db::getInstance()->execute('
INSERT INTO `'._DB_PREFIX_.'loyalty_history` (`id_loyalty`, `id_loyalty_state`, `points`, `date_add`)
VALUES ('.(int)($this->id).', '.(int)($this->id_loyalty_state).', '.(int)($this->points).', NOW())');
}
}