库存 PrestaShop

Stock PrestaShop

我是 PrestaShop 的新手。我遇到了一个问题,无法在 PrestaShop 从库存中减去商品的代码中找到。

当客户创建订单并选择付款时,商品会从库存中减去,但如果客户不付款并返回,商品不会 return 入库。所以我需要了解它在代码中发生的位置,以便编写自动执行它的函数。

PaymentModule::validateOrder 中有一个对 OrderDetail->createList 的调用:

// Insert new Order detail list using cart for the current order
$order_detail = new OrderDetail(null, null, $this->context);
$order_detail->createList($order, $this->context->cart, $id_order_state, $order->product_list, 0, true, $package_list[$id_address][$id_package]['id_warehouse']);
$order_detail_list[] = $order_detail;

OrderDetail->createList 中,我们为列表中的每个产品调用 $this->create。这是订单详细信息 "calculated" 所在的位置,还有一个 $this->checkProductStock($product, $id_order_state); 检查订单是否未取消且不是错误,以及该产品是否取决于库存:

protected function checkProductStock($product, $id_order_state)
{
    if ($id_order_state != Configuration::get('PS_OS_CANCELED') && $id_order_state != Configuration::get('PS_OS_ERROR')) {
        $update_quantity = true;
        if (!StockAvailable::dependsOnStock($product['id_product'])) {
            $update_quantity = StockAvailable::updateQuantity($product['id_product'], $product['id_product_attribute'], -(int)$product['cart_quantity']);
        }

        if ($update_quantity) {
            $product['stock_quantity'] -= $product['cart_quantity'];
        }

        if ($product['stock_quantity'] < 0 && Configuration::get('PS_STOCK_MANAGEMENT')) {
            $this->outOfStock = true;
        }
        Product::updateDefaultAttribute($product['id_product']);
    }
}

顺便说一句,如果您取消订单,库存将重置为该订单金额。

但是,如果您只想在付款后减少库存,在您的情况下,我会添加一个配置 PS_WAITING_PAYMENT,其中包含订单未确认时的值,然后覆盖最后一个函数以添加等待付款的状态

protected function checkProductStock($product, $id_order_state)
{
    if ($id_order_state != Configuration::get('PS_OS_CANCELED') && $id_order_state != Configuration::get('PS_OS_ERROR') && $id_order_state != Configuration::get('PS_WAITING_PAYMENT')) {
        $update_quantity = true;
        if (!StockAvailable::dependsOnStock($product['id_product'])) {
            $update_quantity = StockAvailable::updateQuantity($product['id_product'], $product['id_product_attribute'], -(int)$product['cart_quantity']);
        }

        if ($update_quantity) {
            $product['stock_quantity'] -= $product['cart_quantity'];
        }

        if ($product['stock_quantity'] < 0 && Configuration::get('PS_STOCK_MANAGEMENT')) {
            $this->outOfStock = true;
        }
        Product::updateDefaultAttribute($product['id_product']);
    }
}

如果您将等待付款订单状态设置为不可登录,而新状态是可登录,当您将状态更改为已确认付款时,它应该会减少库存,因为在 OrderHistory->changeIdOrderState 中有:

...
foreach ($order->getProductsDetail() as $product) {
    if (Validate::isLoadedObject($old_os)) {
        // if becoming logable => adds sale
        if ($new_os->logable && !$old_os->logable) {
            ProductSale::addProductSale($product['product_id'], $product['product_quantity']);
            // @since 1.5.0 - Stock Management
            if (!Pack::isPack($product['product_id']) &&
                in_array($old_os->id, $error_or_canceled_statuses) &&
                !StockAvailable::dependsOnStock($product['id_product'], (int)$order->id_shop)) {
                StockAvailable::updateQuantity($product['product_id'], $product['product_attribute_id'], -(int)$product['product_quantity'], $order->id_shop);
            }
        }
    ...