WC_Product_Variation::get_cogs_value_is_additivepublicWC 1.0

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

Method of the class: WC_Product_Variation{}

No Hooks.

Returns

true|false. The current value of the flag.

Usage

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

WC_Product_Variation::get_cogs_value_is_additive() code WC 10.3.6

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