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.
36 lines
1.3 KiB
36 lines
1.3 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<record id="product_import_view" model="ir.ui.view">
|
|
<field name="name">Import Product</field>
|
|
<field name="model">product.import</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Product Options">
|
|
<group col="4">
|
|
<field name="file"/>
|
|
<field name="option" widget="radio"/>
|
|
</group>
|
|
<footer>
|
|
<button name="import_file" string="Import" type="object" default_focus="1" class="oe_highlight"/>
|
|
<button string="Cancel" class="btn btn-default" special="cancel"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="product_import_action" model="ir.actions.act_window">
|
|
<field name="name">Import Product</field>
|
|
<field name="res_model">product.import</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="view_mode">tree,form</field>
|
|
<field name="view_id" ref="product_import_view"/>
|
|
<field name="context">{}</field>
|
|
<field name="target">new</field>
|
|
</record>
|
|
|
|
<menuitem id="menu_product_import"
|
|
name="Import Product"
|
|
action="product_import_action"
|
|
parent="sale.product_menu_catalog"/>
|
|
|
|
</odoo>
|
|
|