mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-27 18:12:04 +02:00
10 lines
250 B
Python
10 lines
250 B
Python
from odoo import models, api
|
|
|
|
|
|
class ResCountry(models.Model):
|
|
_name = 'res.country'
|
|
_inherit = ['res.country', 'pos.load.mixin']
|
|
|
|
@api.model
|
|
def _load_pos_data_fields(self, config):
|
|
return ['id', 'name', 'code', 'vat_label']
|