You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
468 B

  1. from odoo import fields, models, api, _
  2. from odoo.exceptions import ValidationError
  3. class MisCashFlowForecastLine(models.Model):
  4. _inherit = 'mis.cash_flow.forecast_line'
  5. active = fields.Boolean(default=True)
  6. analytic_account_id = fields.Many2one(
  7. comodel_name='account.analytic.account',
  8. string='Analytic Account',
  9. required=True,
  10. help='The account of the forecast line is only for informative '
  11. 'purpose',
  12. )