Fix line item subtotal calculation (when using Fee)

Correct the subtotal calculation for line items when fees are applied.

add_action('woocommerce_after_calculate_totals', function (){
	if (!WC()->cart->is_empty()){
	 	\Wdr\App\Router::$manage_discount->applyCartProductDiscount(WC()->cart);
	}
},100);