Initial import from Docker volume

This commit is contained in:
root
2025-12-26 13:11:43 +00:00
commit 4998dc066a
13336 changed files with 1767801 additions and 0 deletions

52
modules/web_shop/product.xml Executable file
View File

@@ -0,0 +1,52 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tryton>
<data>
<record model="ir.ui.view" id="product_template_view_form">
<field name="model">product.template</field>
<field name="inherit" ref="product.template_view_form"/>
<field name="name">product_template_form</field>
</record>
<record model="ir.ui.view" id="product_product_view_form">
<field name="model">product.product</field>
<field name="inherit" ref="product.product_view_form"/>
<field name="name">product_product_form</field>
</record>
<record model="ir.ui.view" id="product_category_view_form">
<field name="model">product.category</field>
<field name="inherit" ref="product.category_view_form"/>
<field name="name">product_category_form</field>
</record>
</data>
<data depends="product_attribute">
<record model="ir.ui.view" id="attribute_view_form">
<field name="model">product.attribute</field>
<field name="inherit" ref="product_attribute.attribute_view_form"/>
<field name="name">product_attribute_form</field>
</record>
</data>
<data depends="product_image">
<record model="ir.ui.view" id="product_image_view_list">
<field name="model">product.image</field>
<field name="inherit" ref="product_image.image_view_list"/>
<field name="name">product_image_list</field>
</record>
<record model="ir.ui.view" id="product_image_view_form">
<field name="model">product.image</field>
<field name="inherit" ref="product_image.image_view_form"/>
<field name="name">product_image_form</field>
</record>
<record model="ir.ui.view" id="product_image_view_list_form">
<field name="model">product.image</field>
<field name="inherit" ref="product_image.image_view_list_form"/>
<field name="name">product_image_form</field>
</record>
</data>
</tryton>