WC_Product::has_enough_stock()publicWC 1.0

Returns whether or not the product has enough stock for the order.

Method of the class: WC_Product{}

No Hooks.

Return

true|false.

Usage

$WC_Product = new WC_Product();
$WC_Product->has_enough_stock( $quantity );
$quantity(mixed) (required)
Quantity of a product added to an order.

WC_Product::has_enough_stock() code WC 8.6.1

public function has_enough_stock( $quantity ) {
	return ! $this->managing_stock() || $this->backorders_allowed() || $this->get_stock_quantity() >= $quantity;
}