Корект по ситуації з купонами - все одно не записувались після оплат-онлайн. Вирішено рішенням з англомовного форуму. Продублюю сюди для історії
Для ocStore 3.0.3.7 у файлі /catalog/model/extension/total/coupon.php
цей код (всю функцію confirm):
public function confirm($order_info, $order_total) {
$code = '';
$start = strpos($order_total['title'], '(') + 1;
$end = strrpos($order_total['title'], ')');
if ($start && $end) {
$code = substr($order_total['title'], $start, $end - $start);
}
if ($code) {
$status = true;
$coupon_query = $this->db->query("SELECT * FROM `" . DB_PREFIX . "coupon` WHERE code = '" . $this->db->escape($code) . "' AND status = '1'");
if ($coupon_query->num_rows) {
$coupon_total = $this->getTotalCouponHistoriesByCoupon($code);
if ($coupon_query->row['uses_total'] > 0 && ($coupon_total >= $coupon_query->row['uses_total'])) {
$status = false;
}
if ($order_info['customer_id']) {
$customer_total = $this->getTotalCouponHistoriesByCustomerId($code, $order_info['customer_id']);
if ($coupon_query->row['uses_customer'] > 0 && ($customer_total >= $coupon_query->row['uses_customer'])) {
$status = false;
}
}
} else {
$status = false;
}
if ($status) {
$this->db->query("INSERT INTO `" . DB_PREFIX . "coupon_history` SET coupon_id = '" . (int)$coupon_query->row['coupon_id'] . "', order_id = '" . (int)$order_info['order_id'] . "', customer_id = '" . (int)$order_info['customer_id'] . "', amount = '" . (float)$order_total['value'] . "', date_added = NOW()");
} else {
return $this->config->get('config_fraud_status_id');
}
}
}
замінити на:
public function getCouponInfo($code) {
$status = true;
$coupon_query = $this->db->query("SELECT * FROM `" . DB_PREFIX . "coupon` WHERE code = '" . $this->db->escape($code) . "' AND ((date_start = '0000-00-00' OR date_start < NOW()) AND (date_end = '0000-00-00' OR date_end > NOW())) AND status = '1'");
if ($status) {
return array(
'coupon_id' => $coupon_query->row['coupon_id'],
);
}
}
public function confirm($order_info, $order_total) {
$code = '';
$start = strpos($order_total['title'], '(') + 1;
$end = strrpos($order_total['title'], ')');
if ($start && $end) {
$code = substr($order_total['title'], $start, $end - $start);
}
if ($code) {
$coupon_info = $this->getCouponInfo($code);
if ($coupon_info) {
$this->db->query("INSERT INTO `" . DB_PREFIX . "coupon_history` SET coupon_id = '" . (int)$coupon_info['coupon_id'] . "', order_id = '" . (int)$order_info['order_id'] . "', customer_id = '" . (int)$order_info['customer_id'] . "', amount = '" . (float)$order_total['value'] . "', date_added = NOW()");
} else {
return $this->config->get('config_fraud_status_id');
}
}
}
і оновити модифікатори. В мене виправило роботу купонів в усіх модулях оплати.