fix exception when using multiple files type

fix exception when using multiple files type (ofx for example)
This commit is contained in:
Vincent Barrier
2019-07-03 20:57:01 +02:00
committed by GitHub
parent aba79ab552
commit 184b7abb86

View File

@@ -66,7 +66,11 @@ class AccountBankStatementImport(models.TransientModel):
@api.model
def _check_paypal(self, data_file):
data_file = self._get_paypal_str_data(data_file)
try:
data_file = self._get_paypal_str_data(data_file)
except Exception 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')