use Shopware\Core\Checkout\Cart\Price\Struct\CartPrice;
use Shopware\Core\Framework\Log\Package;
use Shopware\Core\System\Country\CountryEntity;
use Shopware\Core\System\SalesChannel\SalesChannelContext;
#[Package('checkout')]
class TaxDetector{ public function useGross(SalesChannelContext
$context): bool
{ return $context->
getCurrentCustomerGroup()->
getDisplayGross();
} public function isNetDelivery(SalesChannelContext
$context): bool
{ $shippingLocationCountry =
$context->
getShippingLocation()->
getCountry();
$countryTaxFree =
$shippingLocationCountry->
getCustomerTax()->
getEnabled();
if ($countryTaxFree) { return true;
}