WC_Product_Variation::set_cogs_value_is_additive()publicWC 1.0

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

WARNING! If the Cost of Goods Sold feature is disabled this value will NOT be persisted when the product is saved.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

$WC_Product_Variation = new WC_Product_Variation();
$WC_Product_Variation->set_cogs_value_is_additive( $value ): void;
$value(true|false) (обязательный)
The value to set for the flag.

Код WC_Product_Variation::set_cogs_value_is_additive() WC 9.8.2

public function set_cogs_value_is_additive( bool $value ): void {
	$this->set_prop( 'cogs_value_is_additive', $value );
}