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.
20 lines
892 B
20 lines
892 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Added a notebook and inside that added a field for uploading the 3D model-->
|
|
<record id="product_template_only_form_view"
|
|
model="ir.ui.view">
|
|
<field name="name">product.template.view.form.inherit.model.viewer.widget</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="//notebook/page[@name='variants']" position="after">
|
|
<page string="3D model viewer" name="viewer">
|
|
<div id="3d_model_div" class="3d_model_viewer"/>
|
|
<field name="model_3d" string="Product"
|
|
widget="3D_widget"/>
|
|
</page>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|