Jump to content

Бесконечные остатки товаров в opencart


xplore
 Share

Go to solution Solved by AlexDW,

Recommended Posts

  • Solution
7 часов назад, nikifalex сказал:

либо поставить остаток 1000000

работает до гения с таким количеством в заказе :classic_laugh:

лучше первый вариант, убрать вычитание

 

если нужно массово для всех товаров убрать вычитание со склада, подключитесь к БД и выполните запрос

UPDATE `oc_product` SET `subtract` = 0

 

Link to comment
Share on other sites

8 часов назад, AlexDW сказал:

лучше первый вариант, убрать вычитание

Есть ещё небольшое уточнение. Во всех версиях движка проверяется наличие товара в корзине вот таким кодом:

// Stock
if (!$product_query->row['quantity'] || ($product_query->row['quantity'] < $cart['quantity'])) {
    $stock = false;
}

Тут напрочь игнорируется признак "Вычитать со склада". Поэтому в количестве стоит всё же записывать заведомо большое число, чтобы не наткнуться на этот неприятный момент. 

Причём такая штука во всех версиях движка, даже в самой последней тройке 3.0.3.8

 

А вот в опциях всё проверяется корректно:

if ($option_value_query->row['subtract'] && (!$option_value_query->row['quantity'] || ($option_value_query->row['quantity'] < $cart['quantity']))) {
    $stock = false;
}

Если стоит "Вычитать на складе - нет", то опция будет на складе, даже если в количестве 0.

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...