去掉打印模块的type字段

This commit is contained in:
胡尧
2025-04-21 13:15:02 +08:00
parent 9f1cac0789
commit eab7bf04c3
2 changed files with 0 additions and 4 deletions

View File

@@ -8,8 +8,6 @@ class Printer(models.Model):
name = fields.Char(string='名称', required=True)
ip_address = fields.Char(string='IP 地址', required=True)
port = fields.Integer(string='端口', default=9100)
type = fields.Selection([('zpl', 'ZPL'), ('normal', '普通')], string='类型', default='zpl')
class TableStyle(models.Model):
_name = 'table.style'