Merge branch 'develop' of gitlab.antadis.net:dev-antadis/bebeboutik into develop

This commit is contained in:
root 2017-05-04 11:54:15 +02:00
commit 2d546243a4
3 changed files with 19 additions and 1 deletions

View File

@ -103,6 +103,15 @@ class Fraud extends Module {
$order = new Order($id_order);
$authorized = array('ESP','DEU','ITA','NLD','SWE','GBR','PRT','CHE','LUX','POL','AUT','BEL');
$authorized_ip = array(
'88.163.22.99',
'90.63.178.63',
'217.64.63.215'
);
if (in_array($_SERVER['REMOTE_ADDR'], $authorized_ip)) {
mail('marion@antadis.com', '[BBB] Fraud test', $id_order.' '.$ip_country); // dev
}
if(!in_array($ip_country, $authorized)) {
$total_score = 110;
$fraud_report = array();

View File

@ -272,7 +272,7 @@ class FraudCore {
WHERE cu.`firstname` = "'.pSQL($this->customer->firstname).'"
AND cu.`lastname` = "'.pSQL($this->customer->lastname).'"
AND o.`id_customer`!='.(int) $this->customer->id.'
AND h.`id_order_state` IN (15,16,18)
AND h.`id_order_state` IN (15,16)
');
if ($already_suspect_by_names || $already_fraud_by_names) {

View File

@ -296,6 +296,15 @@ class Paybox extends PaymentModule
parent::validateOrder((int)$id_cart, (int)$id_order_state, (float)$amount_paid, $payment_method, $message, $transaction, $currency_special, $dont_touch_amount, $secure_key);
}
$authorized_ip = array(
'88.163.22.99',
'90.63.178.63',
'217.64.63.215'
);
if (in_array($_SERVER['REMOTE_ADDR'], $authorized_ip)) {
mail('marion@antadis.com', '[BBB] Paybox validate order', http_build_query($values,'',', ')); // dev
}
if(!empty($values) && isset($values['i'])) {
if (!class_exists('Fraud')) {
include_once _MODULE_DIR_.'fraud/fraud.php';