From 50df2c335a55fd3a27a9a7233e94c6564e0f7c95 Mon Sep 17 00:00:00 2001 From: sinergia Date: Sat, 22 Jul 2023 13:15:48 -0500 Subject: [PATCH] add field zone to printer --- printer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/printer.py b/printer.py index 4abef2d..69839ab 100644 --- a/printer.py +++ b/printer.py @@ -16,7 +16,7 @@ class Printer(Device, ModelSQL, ModelView): zone = fields.Selection([('bar', "Bar"), ('kitchen', "Kitchen"), - ('recepcion', "Recection")]) + ('recepcion', "Recection")], "Zone") shop = fields.Many2One('sale.shop', "Shop") api = fields.Many2One('sale.printer_api', "API")