You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
870 B
23 lines
870 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Form view of import pos-->
|
|
<record id="import_pos_view_form" model="ir.ui.view">
|
|
<field name="name">import.pos.view.form</field>
|
|
<field name="model">import.pos</field>
|
|
<field name="arch" type="xml">
|
|
<form>
|
|
<group>
|
|
<group>
|
|
<field name="file_type" widget="radio"/>
|
|
<field name="file_upload"/>
|
|
</group>
|
|
</group>
|
|
<footer>
|
|
<button string="Import" class="oe_highlight" type="object"
|
|
name="action_pos_order_import" data-hotkey="i"/>
|
|
<button string="Cancel" special="cancel" data-hotkey="z"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|