mirror of
https://github.com/OCA/report-print-send.git
synced 2025-02-16 07:11:31 +02:00
25 lines
934 B
XML
25 lines
934 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo>
|
|
<record id="view_wizard_import_zpl2_form" model="ir.ui.view">
|
|
<field name="name">wizard.import.zpl2.form</field>
|
|
<field name="model">wizard.import.zpl2</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Print Label">
|
|
<group>
|
|
<group>
|
|
<field name="label_id"/>
|
|
<field name="delete_component"/>
|
|
</group>
|
|
</group>
|
|
<group string="ZPL2">
|
|
<field name="data" widget="ace" nolabel="1"/>
|
|
</group>
|
|
<footer>
|
|
<button type="special" special="cancel" string="Cancel"/>
|
|
<button string="Import" type="object" name="import_zpl2" class="oe_highlight"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|