9 lines
241 B
Python
9 lines
241 B
Python
# -*- coding: utf-8 -*-
|
|
from odoo import models, fields
|
|
|
|
class PosConfig(models.Model):
|
|
_inherit = 'pos.config'
|
|
|
|
branch_latitude = fields.Float(string="Branch Latitude")
|
|
branch_longitude = fields.Float(string="Branch Longitude")
|