15 lines
448 B
Python
15 lines
448 B
Python
# -*- coding: utf-8 -*-
|
|
from odoo import models, fields
|
|
|
|
|
|
class PosConfig(models.Model):
|
|
_inherit = 'pos.config'
|
|
|
|
bluetooth_printer_enabled = fields.Boolean(
|
|
string='Enable Bluetooth Printer',
|
|
default=False,
|
|
help='Enable bluetooth thermal printer support for this POS. '
|
|
'When enabled, the POS will attempt to connect to a bluetooth '
|
|
'thermal printer configured on each device.'
|
|
)
|