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.
29 lines
1.2 KiB
29 lines
1.2 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
<record id="image_suggestion_form_view" model="ir.ui.view">
|
|
<field name="name">image.suggestion.form.view</field>
|
|
<field name="model">image.suggestion</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Image Suggestion">
|
|
<sheet>
|
|
<group>
|
|
<group>
|
|
<field name="product_tmpl_id"/>
|
|
<field name="image_prompt"/>
|
|
<field name="num_image"/>
|
|
<field name="size_image"/>
|
|
</group>
|
|
</group>
|
|
<footer>
|
|
<button name="action_search" type="object"
|
|
string="Search" class="btn-primary"/>
|
|
<button string="Cancel" special="cancel"
|
|
data-hotkey="z"/>
|
|
</footer>
|
|
</sheet>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</odoo>
|