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.
64 lines
2.8 KiB
64 lines
2.8 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Theme fasion wizard form view -->
|
|
<record id="theme_fasion_wizard_view_form" model="ir.ui.view">
|
|
<field name="name">Theme Fashion Wizard</field>
|
|
<field name="model">theme.fasion.wizard</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Theme Fashion Wizard">
|
|
<sheet>
|
|
<group>
|
|
<group>
|
|
<field name="website_id" options="{'no_open': True, 'no_create': True}" title="Settings on this page will apply to this website"/>
|
|
</group>
|
|
</group>
|
|
<br/>
|
|
<h4>Categories Snippet</h4>
|
|
<br/>
|
|
<group>
|
|
<group>
|
|
<field name="category_ids" widget="many2many_tags" options="{'no_create': True}"/>
|
|
</group>
|
|
</group>
|
|
<br/>
|
|
<h4>Smart Clothing Snippet</h4>
|
|
<br/>
|
|
<field name="smart_clothing_ids">
|
|
<list editable="bottom">
|
|
<field name="category_id"/>
|
|
<field name="dynamic_category_id" column_invisible="True"/>
|
|
<field name="product_ids" widget="many2many_tags" domain="[('public_categ_ids', 'in', [dynamic_category_id])]"/>
|
|
</list>
|
|
</field>
|
|
<br/>
|
|
<h4>Insta Shopping Snippet</h4>
|
|
<br/>
|
|
<field name="insta_shopping_ids">
|
|
<list editable="bottom">
|
|
<field name="image_1920"/>
|
|
<field name="insta_link"/>
|
|
</list>
|
|
</field>
|
|
<footer>
|
|
<button name="action_confirm" string="Confirm" type="object" class="btn-primary"/>
|
|
<button string="Discard" special="cancel" type="object"/>
|
|
</footer>
|
|
</sheet>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
<!-- To set wizard action -->
|
|
<record id="theme_fasion_wizard_action" model="ir.actions.act_window">
|
|
<field name="name">Theme Fashion Configurations</field>
|
|
<field name="res_model">theme.fasion.wizard</field>
|
|
<field name="view_mode">form</field>
|
|
<field name="target">new</field>
|
|
</record>
|
|
<!-- To add menu in website configuration -->
|
|
<menuitem id="menu_theme_fasion_wizard"
|
|
name="Theme Fashion Configurations"
|
|
action="theme_fasion_wizard_action"
|
|
parent="website.menu_website_global_configuration"
|
|
sequence="25"
|
|
/>
|
|
</odoo>
|
|
|