Tower: upload om_account_followup 19.0.1.0.2 (was 1.0.2, via marketplace)

This commit is contained in:
2026-05-02 11:23:15 +00:00
parent 48db592326
commit ee9b1958f1
44 changed files with 13385 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
from odoo import api, fields, models, _
class AccountConfigSettings(models.TransientModel):
_inherit = 'res.config.settings'
def open_followup_level_form(self):
res_ids = self.env['followup.followup'].search([], limit=1)
return {
'type': 'ir.actions.act_window',
'name': 'Follow-up Levels',
'res_model': 'followup.followup',
'res_id': res_ids and res_ids.id or False,
'view_mode': 'form,list',
}