pos_config.py 549 B

12345678910111213141516
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. from odoo import fields, models
  4. class PosConfig(models.Model):
  5. _inherit = 'pos.config'
  6. crm_team_id = fields.Many2one(
  7. 'crm.team', string="Sales Team", ondelete="set null",
  8. help="This Point of sale's sales will be related to this Sales Team.")
  9. down_payment_product_id = fields.Many2one('product.product',
  10. string="Down Payment Product",
  11. help="This product will be used as down payment on a sale order.")