}
return price;
}
private double getTax(Purchaser purchaser) {
Country c = Portal.getInstance().getGeographyService().getCountryFromName(purchaser.getCountry());
if (c.isInEEC()) {
if (Portal.getInstance().getGeographyService().isFrance(c)) {
return FRENCH_TAX;
} else if (Purchaser.COMPANY.equals(purchaser.getType()) && StringUtils.isBlank(purchaser.getEECIdent())) {
return FRENCH_TAX;
} else if (Purchaser.USER.equals(purchaser.getType())) {