[FIX] EBICS upload stack trace

module: account_ebics/wizards/ebics_xfer.py

Fix stack trace when uploading payment file directly via EBICS Upload wizard
(hence not via 'EBICS Upload' button on payment order).
This commit is contained in:
Luc De Meyer 2023-12-07 18:13:30 +01:00
parent baef1a4851
commit 6b350620a4

View File

@ -449,10 +449,9 @@ class EbicsXfer(models.TransientModel):
return ebics_file
def _payment_order_postprocess(self, ebics_file):
order = self.env[self.env.context["active_model"]].browse(
self.env.context.get("active_id")
)
if order._name == "account.payment.order":
active_model = self.env.context.get("active_model")
if active_model == "account.payment.order":
order = self.env[active_model].browse(self.env.context["active_id"])
order.generated2uploaded()
def _setup_client(self):