WC_Product_Variation::get_cogs_value_is_additive()publicWC 1.0

Get the value of the "Cost of Goods Sold value is additive" flag for this product. See get_cogs_effective_value_core.

Метод класса: WC_Product_Variation{}

Хуков нет.

Возвращает

true|false. The current value of the flag.

Использование

$WC_Product_Variation = new WC_Product_Variation();
$WC_Product_Variation->get_cogs_value_is_additive(): bool;

Код WC_Product_Variation::get_cogs_value_is_additive() WC 9.8.1

public function get_cogs_value_is_additive(): bool {
	return (bool) $this->get_prop( 'cogs_value_is_additive' );
}