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.

13 lines
442 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." "group_invert_po_ref_on_inv_line",
  8. help="""Allows you to invert Purchase Order Reference on the
  9. invoice lines.""",
  10. )