mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-18 16:32:01 +02:00
14 lines
308 B
Python
14 lines
308 B
Python
# Copyright 2020 Creu Blanca
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class PosConfig(models.Model):
|
|
|
|
_inherit = "pos.config"
|
|
|
|
default_partner_id = fields.Many2one(
|
|
comodel_name="res.partner",
|
|
string="Default Customer",
|
|
)
|