mirror of
https://github.com/OCA/report-print-send.git
synced 2025-02-16 07:11:31 +02:00
corrections for travis tests fix for flake8 errors and travis tests added new sections and rapleced maintainers added USAGE section in readme + bug corection for update of printers changed copyrights updated manifest and fix for case of false ppd
20 lines
723 B
XML
Executable File
20 lines
723 B
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
<record model="ir.ui.view" id="printing_printer_view_form">
|
|
<field name="name">printing.printer.form</field>
|
|
<field name="model">printing.printer</field>
|
|
<field name="inherit_id" ref="base_report_to_printer.printing_printer_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//sheet/group[3]" position="after">
|
|
<group string="Printer Options Selected">
|
|
<field name="printer_options" widget="many2many_tags"
|
|
domain="[('printer_id', '=', active_id)]"/>
|
|
<field name="printer_option_choices"/>
|
|
</group>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</odoo>
|