Files
report-print-send/printer_custom_options/views/printing_printer.xml
qgigon f3be3b151c Added custom options module for printers by report
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
2020-03-03 09:23:11 +01:00

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>