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.
16 lines
682 B
16 lines
682 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
<!-- Button in action to generate image using Dall-E-->
|
|
<record id="product_template_dalle_action" 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>
|
|
</data>
|
|
</odoo>
|