Add Sefere Basla button and fix GPS cache issue

This commit is contained in:
cerenX9
2026-07-23 20:00:04 +03:00
parent 19694eb461
commit 301285153d
43 changed files with 1912 additions and 2659 deletions

14
scratch_privilege.py Normal file
View File

@@ -0,0 +1,14 @@
from odoo import fields, models
class ResGroupsPrivilege(models.Model):
_name = 'res.groups.privilege'
_description = "Privileges"
_order = 'sequence, name, id'
name = fields.Char(string='Name', required=True, translate=True)
description = fields.Text(string='Description')
placeholder = fields.Char(string='Placeholder', default="No", help="Text that is displayed as placeholder in the selection field of the user form.")
sequence = fields.Integer(string='Sequence', default=100)
category_id = fields.Many2one('ir.module.category', string='Category', index=True)
group_ids = fields.One2many('res.groups', 'privilege_id', string='Groups')