Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ошибка расчёта стоимости заказа при хранении корзины в БД #903

Open
ShevArtV opened this issue Nov 9, 2023 · 0 comments
Labels

Comments

@ShevArtV
Copy link
Collaborator

ShevArtV commented Nov 9, 2023

Проблема:
Если в ms2 4.3.0 переключиться на хранение корзины в бд, то в обработчике корзины core/components/minishop2/handlers/storage/db/cartdbhandler.class.php в методе add() вот эта строка
$this->products = $this->msOrder->getMany('Products');
всегда возвращает 1 последний добавленный товар, ну и как следствие если добавить два товара, ничего не менять в корзине итоговая сумма заказа будет как за один товар, хотя их по факту в заказе два.

Кроме того, в методе restrictOrder() при расчёте суммы заказа и веса не учитывается количество каждой отдельной позиции товаров.

Решение:
Изменить метод restrictOrder()

protected function restrictOrder()
    {
        $this->msOrder = $this->getStorageOrder();
        $this->products = $this->msOrder->getMany('Products');
        $cartCost = 0;
        $weight = 0;

        foreach ($this->products as $product) {
            $count = $product->get('count');
            $cartCost += $product->get('cost');
            $weight += $product->get('weight') * $count;
        }

        $delivery_cost = $this->msOrder->get('delivery_cost');
        $cost = $cartCost + $delivery_cost;
        $this->msOrder->set('cost', $cost);
        $this->msOrder->set('cart_cost', $cartCost);
        $this->msOrder->set('weight', $weight);
        $this->msOrder->set('updatedon', time());
        $this->msOrder->save();
    }
@ShevArtV ShevArtV added the bug label Nov 9, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant