mirror of
https://github.com/OCA/report-print-send.git
synced 2025-02-16 07:11:31 +02:00
Printer Tray isn't an app Base Report To printer ir.actions.report.xml view xpath error and missing page name Put to before security as security tab doesn't do much and if this module is installed it should be the hero page
29 lines
832 B
Python
29 lines
832 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (C) 2013-2014 Camptocamp (<http://www.camptocamp.com>)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
{
|
|
'name': 'Report to printer - Paper tray selection',
|
|
'version': '10.0.1.0.0',
|
|
'category': 'Printer',
|
|
'author': "Camptocamp, Odoo Community Association (OCA)",
|
|
'maintainer': 'Camptocamp',
|
|
'website': 'http://www.camptocamp.com/',
|
|
'license': 'AGPL-3',
|
|
'depends': [
|
|
'base_report_to_printer',
|
|
],
|
|
'data': [
|
|
'views/res_users.xml',
|
|
'views/ir_actions_report_xml.xml',
|
|
'views/printing_printer.xml',
|
|
'views/printing_report_xml_action.xml',
|
|
'security/ir.model.access.csv',
|
|
],
|
|
'external_dependencies': {
|
|
'python': ['cups'],
|
|
},
|
|
'installable': True,
|
|
'application': False,
|
|
}
|