mirror of
https://github.com/OCA/report-print-send.git
synced 2025-02-16 07:11:31 +02:00
27 lines
1.1 KiB
XML
27 lines
1.1 KiB
XML
<openerp>
|
|
<data>
|
|
<record id="printer_update_wizard" model="ir.ui.view">
|
|
<field name="name">printing.printer.update.wizard</field>
|
|
<field name="model">printing.printer.update.wizard</field>
|
|
<field name="type">form</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Update Printers from CUPS" col="2">
|
|
<label string="This process will create all missing printers from the current CUPS server." colspan="2"/>
|
|
<separator string="" colspan="2"/>
|
|
<button name="action_cancel" icon="gtk-cancel" string="Cancel" special="cancel"/>
|
|
<button name="action_ok" type="object" icon="gtk-ok" string="Ok"/>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
<record id="action_printer_update_wizard" model="ir.actions.act_window">
|
|
<field name="name">Update Printers from CUPS</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="res_model">printing.printer.update.wizard</field>
|
|
<field name="view_type">form</field>
|
|
<field name="view_mode">form</field>
|
|
<field name="target">new</field>
|
|
</record>
|
|
<menuitem action="action_printer_update_wizard" id="menu_printer_update_wizard" parent="menu_printing_config"/>
|
|
</data>
|
|
</openerp>
|