Benefit customization

This commit is contained in:
eman 2024-10-24 15:31:18 +03:00
parent 380c48be6d
commit 0cd7fc5874
1 changed files with 2 additions and 1 deletions

View File

@ -613,7 +613,7 @@ class RelationSettings(models.Model):
class AttachmentsSettings(models.Model):
_name = 'attachments.settings'
_description = "Attachments Settings"
_order = 'family_appearance_seq,member_appearance_seq asc'
_order = 'family_appearance_seq,member_appearance_seq,income_appearance_seq asc'
name = fields.Char(string='name')
hobby_id = fields.Many2one('hobbies.settings',string='Hobbies')
@ -626,6 +626,7 @@ class AttachmentsSettings(models.Model):
is_default = fields.Boolean(string='Is Default?')
family_appearance_seq = fields.Integer(string='Appearance Sequence')
member_appearance_seq = fields.Integer(string='Appearance Sequence')
income_appearance_seq = fields.Integer(string='Appearance Sequence')
class EducationIlliterateReason(models.Model):
_name = 'education.illiterate.reason'