|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<odoo> |
| 3 | + |
| 4 | + <!-- SizeW Attribute --> |
| 5 | + <record id="product_attribute_sizew" model="product.attribute"> |
| 6 | + <field name="name">SizeW</field> |
| 7 | + </record> |
| 8 | + <record id="product_attribute_sizew_s" model="product.attribute.value"> |
| 9 | + <field name="name">S</field> |
| 10 | + <field name="attribute_id" ref="product_attribute_sizew"/> |
| 11 | + </record> |
| 12 | + <record id="product_attribute_sizew_m" model="product.attribute.value"> |
| 13 | + <field name="name">M</field> |
| 14 | + <field name="attribute_id" ref="product_attribute_sizew"/> |
| 15 | + </record> |
| 16 | + <record id="product_attribute_sizew_l" model="product.attribute.value"> |
| 17 | + <field name="name">L</field> |
| 18 | + <field name="attribute_id" ref="product_attribute_sizew"/> |
| 19 | + </record> |
| 20 | + <record id="product_attribute_sizew_xl" model="product.attribute.value"> |
| 21 | + <field name="name">XL</field> |
| 22 | + <field name="attribute_id" ref="product_attribute_sizew"/> |
| 23 | + </record> |
| 24 | + |
| 25 | + <!-- Color Attribute --> |
| 26 | + <record id="product_attribute_color" model="product.attribute"> |
| 27 | + <field name="name">Color</field> |
| 28 | + </record> |
| 29 | + <record id="product_attribute_color_white" model="product.attribute.value"> |
| 30 | + <field name="name">White</field> |
| 31 | + <field name="attribute_id" ref="product_attribute_color"/> |
| 32 | + </record> |
| 33 | + <record id="product_attribute_color_black" model="product.attribute.value"> |
| 34 | + <field name="name">Black</field> |
| 35 | + <field name="attribute_id" ref="product_attribute_color"/> |
| 36 | + </record> |
| 37 | + <record id="product_attribute_color_wood" model="product.attribute.value"> |
| 38 | + <field name="name">Wood</field> |
| 39 | + <field name="attribute_id" ref="product_attribute_color"/> |
| 40 | + </record> |
| 41 | + |
| 42 | + <!-- Fabric Attribute --> |
| 43 | + <record id="product_attribute_fabric" model="product.attribute"> |
| 44 | + <field name="name">Fabric</field> |
| 45 | + </record> |
| 46 | + <record id="product_attribute_fabric_plastic" model="product.attribute.value"> |
| 47 | + <field name="name">Plastic</field> |
| 48 | + <field name="attribute_id" ref="product_attribute_fabric"/> |
| 49 | + </record> |
| 50 | + <record id="product_attribute_fabric_leather" model="product.attribute.value"> |
| 51 | + <field name="name">Leather</field> |
| 52 | + <field name="attribute_id" ref="product_attribute_fabric"/> |
| 53 | + </record> |
| 54 | + <record id="product_attribute_fabric_custom" model="product.attribute.value"> |
| 55 | + <field name="name">Custom</field> |
| 56 | + <field name="attribute_id" ref="product_attribute_fabric"/> |
| 57 | + </record> |
| 58 | + |
| 59 | + <!-- Print Attribute --> |
| 60 | + <record id="product_attribute_print" model="product.attribute"> |
| 61 | + <field name="name">Print</field> |
| 62 | + </record> |
| 63 | + <record id="product_attribute_print_text" model="product.attribute.value"> |
| 64 | + <field name="name">Text</field> |
| 65 | + <field name="attribute_id" ref="product_attribute_print"/> |
| 66 | + </record> |
| 67 | + <record id="product_attribute_print_graphics" model="product.attribute.value"> |
| 68 | + <field name="name">Graphics</field> |
| 69 | + <field name="attribute_id" ref="product_attribute_print"/> |
| 70 | + </record> |
| 71 | + <record id="product_attribute_print_pattern" model="product.attribute.value"> |
| 72 | + <field name="name">Pattern</field> |
| 73 | + <field name="attribute_id" ref="product_attribute_print"/> |
| 74 | + </record> |
| 75 | + <record id="product_attribute_print_solid" model="product.attribute.value"> |
| 76 | + <field name="name">Solid</field> |
| 77 | + <field name="attribute_id" ref="product_attribute_print"/> |
| 78 | + </record> |
| 79 | +</odoo> |
0 commit comments