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.
31 lines
1.4 KiB
31 lines
1.4 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
<!-- Form view for product template -->
|
|
<record id="action_product_template_dalle" model="ir.actions.server">
|
|
<field name="name">Generate Image Using Dall-E</field>
|
|
<field name="model_id" ref="product.model_product_template"/>
|
|
<field name="binding_model_id"
|
|
ref="product.model_product_template"/>
|
|
<field name="binding_view_types">list,form</field>
|
|
<field name="state">code</field>
|
|
<field name="code">action =records.action_open_image_prompt_wizard()
|
|
</field>
|
|
</record>
|
|
<!-- Form view for product product-->
|
|
<record id="product_template_view_form" model="ir.ui.view">
|
|
<field name="inherit_id"
|
|
ref="product.product_template_only_form_view"/>
|
|
<field name="name">product_template.view.form.inherit.openai_product_images</field>
|
|
<field name="model">product.template</field>
|
|
<field name="arch" type="xml">
|
|
<div name="button_box" position="inside">
|
|
<button name="action_get_dall_e_image" type="object"
|
|
class="oe_stat_button" icon="fa-id-card-o"
|
|
string="Dall E Image">
|
|
</button>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</odoo>
|