refactoring

This commit is contained in:
Vincent Barrier
2019-07-03 23:12:20 +02:00
committed by GitHub
parent 6b51539132
commit d6c08d0212

View File

@@ -66,13 +66,13 @@ class AccountBankStatementImport(models.TransientModel):
@api.model
def _check_paypal(self, data_file):
if not self.paypal_map_id:
return False
try:
data_file = self._get_paypal_str_data(data_file)
except UnicodeDecodeError as e:
_logger.debug(e)
return False
if not self.paypal_map_id:
return False
headers = self.mapped('paypal_map_id.map_line_ids.name')
file_headers = data_file.split('\n', 1)[0]
if any(item not in file_headers for item in headers):