[8.0][FIX] intrastat_common - remove check on EUR

This commit is contained in:
Luc De Meyer
2018-08-16 15:27:07 +02:00
parent f26e71b448
commit d554950874

View File

@@ -55,11 +55,6 @@ class IntrastatCommon(models.AbstractModel):
raise UserError(
_("The country is not set on the company '%s'.")
% company.name)
if company.currency_id.name != 'EUR':
raise UserError(
_("The company currency must be 'EUR', but is currently "
"'%s'.")
% company.currency_id.name)
return True
@api.multi