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.

14 lines
449 B

  1. from odoo import fields, models
  2. class ResConfigSettings(models.TransientModel):
  3. _inherit = 'res.config.settings'
  4. group_invert_po_ref_on_inv_line = fields.Boolean(
  5. """Allow inverting the Purchase Order Reference on the
  6. invoice lines""",
  7. implied_group="beesdoo_purchase."
  8. "group_invert_po_ref_on_inv_line",
  9. help="""Allows you to invert Purchase Order Reference on the
  10. invoice lines."""
  11. )