[ADD] sql_export_delta

This commit is contained in:
Holger Brunn
2024-04-27 13:42:42 +02:00
parent a309519158
commit 3e136a0fd5
18 changed files with 748 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
# Copyright 2024 Hunki Enterprises BV
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl-3.0)
from odoo import models
class SqlFileWizard(models.TransientModel):
_inherit = "sql.file.wizard"
def export_sql(self):
self.ensure_one()
if self.sql_export_id.export_delta:
self = self.with_context(export_delta_id=self.id)
return super(SqlFileWizard, self).export_sql()