[FIX]batch payment - fix context

This commit is contained in:
Luc De Meyer
2024-06-28 09:39:46 +02:00
parent 8b1167ce84
commit f1575cf94e
2 changed files with 7 additions and 3 deletions

View File

@@ -30,11 +30,15 @@ class AccountBatchPayment(models.Model):
"default_upload_data": self.export_file,
"default_upload_fname": self.export_filename,
"origin": origin,
"force_comany": self.journal_id.company_id.id,
}
)
ebics_xfer = self.env["ebics.xfer"].with_context(**ctx).create({})
ebics_xfer = (
self.env["ebics.xfer"]
.with_company(self.company_id)
.with_context(**ctx)
.create({})
)
ebics_xfer._onchange_ebics_config_id()
ebics_xfer._onchange_upload_data()
view = self.env.ref("account_ebics.ebics_xfer_view_form_upload")