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.

15 lines
426 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. analytic_account_id = fields.Many2one(
  6. comodel_name='account.analytic.account',
  7. string='Analytic Account',
  8. required=True,
  9. help='The account of the forecast line is only for informative '
  10. 'purpose',
  11. )