Merge pull request #4749 from expsa/youneskch_dev_odex25_ensan

IMP benefit
This commit is contained in:
kchyounes19 2025-09-25 13:48:30 +01:00 committed by GitHub
commit abfcc2bc9e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -6755,7 +6755,7 @@ msgstr "هل هو مستفيد؟"
#. module: odex_benefit
#: model:ir.model.fields,field_description:odex_benefit.field_benefit_category__is_benefit
msgid "Is Benefit?"
msgid "Is Benefit"
msgstr "الاسرة مستفيدة؟"
#. module: odex_benefit

View File

@ -24,7 +24,7 @@ class BenefitCategory(models.Model):
mini_income_amount = fields.Float(string="Min Income Amount")
max_income_amount = fields.Float(string="Max Income Amount")
expenses_ids = fields.One2many('expenses.line', 'category_id')
is_benefit = fields.Boolean(string="Is Benefit?",default=True)
is_benefit = fields.Boolean(string="Is Benefit",default=True)
state = fields.Selection([('draft', 'Draft'),
('approve', 'Approved'),
('rejected', 'Rejected'), ], default='draft')