Files
report-print-send/base_report_to_printer/models/printing_tray.py
Graeme Gellatly 21371f1663 [PORT] Finalize move of printer_tray to base_report_to_printer,
fix tests as report param is not a string but recordset
2017-12-06 21:35:18 +13:00

22 lines
566 B
Python

# Copyright (C) 2013-2014 Camptocamp (<http://www.camptocamp.com>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import fields, models
class PrinterTray(models.Model):
_name = 'printing.tray'
_description = 'Printer Tray'
_order = 'name asc'
name = fields.Char(required=True)
system_name = fields.Char(required=True, readonly=True)
printer_id = fields.Many2one(
comodel_name='printing.printer',
string='Printer',
required=True,
readonly=True,
ondelete='cascade',
)