añadido addon desde la tienda de apps de Odoo. Cybrosys. Importa imágenes de producto desde URL.
This commit is contained in:
parent
f0e0ce3d07
commit
823958d044
64 changed files with 1034 additions and 0 deletions
15
product_import/views/product_template_views.xml
Normal file
15
product_import/views/product_template_views.xml
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<!--Add image url field in product.template model-->
|
||||
<record id="product_template_only_form_view" model="ir.ui.view">
|
||||
<field name="name">product.template.only.form.view.inherit.product.import</field>
|
||||
<field name="model">product.template</field>
|
||||
<field name="inherit_id" ref="product.product_template_only_form_view"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//div[hasclass('oe_title')]" position="after">
|
||||
<label for="image_url"/>
|
||||
<field name="image_url" placeholder="Image URL/Path"/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
Loading…
Add table
Add a link
Reference in a new issue