Merge pull request #22537 from woocommerce/fix/22450
round variation percentage price adjustments to decimal setting
This commit is contained in:
commit
467681c788
|
@ -2242,7 +2242,7 @@ class WC_AJAX {
|
|||
|
||||
if ( '%' === substr( $value, -1 ) ) {
|
||||
$percent = wc_format_decimal( substr( $value, 0, -1 ) );
|
||||
$field_value += ( ( $field_value / 100 ) * $percent ) * "{$operator}1";
|
||||
$field_value += round( ( $field_value / 100 ) * $percent, wc_get_price_decimals() ) * "{$operator}1";
|
||||
} else {
|
||||
$field_value += $value * "{$operator}1";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue