|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<odoo> |
| 3 | + <data noupdate="1"> |
| 4 | + <!-- |
| 5 | + ============================================================================ |
| 6 | + SHREDDING BIN SERVICE PRODUCTS |
| 7 | + ============================================================================ |
| 8 | + Default products for each bin size used in shredding service billing. |
| 9 | + These products are auto-linked to shredding.service.bin records via bin_size. |
| 10 | + |
| 11 | + Pricing is base/list price - customers may have negotiated rates that override. |
| 12 | + ============================================================================ |
| 13 | + --> |
| 14 | + |
| 15 | + <!-- Product Category for Shredding Services --> |
| 16 | + <record id="product_category_shredding_services" model="product.category"> |
| 17 | + <field name="name">Shredding Bin Services</field> |
| 18 | + <field name="parent_id" ref="product.product_category_all"/> |
| 19 | + </record> |
| 20 | + |
| 21 | + <!-- 23 Gallon Shredinator Service --> |
| 22 | + <record id="product_shredding_bin_23" model="product.product"> |
| 23 | + <field name="name">23 Gallon Shredinator Service</field> |
| 24 | + <field name="default_code">SHRED-23</field> |
| 25 | + <field name="type">service</field> |
| 26 | + <field name="categ_id" ref="product_category_shredding_services"/> |
| 27 | + <field name="list_price">20.00</field> |
| 28 | + <field name="is_records_management_product">True</field> |
| 29 | + <field name="sale_ok">True</field> |
| 30 | + <field name="purchase_ok">False</field> |
| 31 | + <field name="description_sale">Shredding service for 23 Gallon Shredinator bin. Includes secure pickup and NAID-compliant destruction.</field> |
| 32 | + <field name="invoice_policy">order</field> |
| 33 | + </record> |
| 34 | + |
| 35 | + <!-- 32 Gallon Bin Service --> |
| 36 | + <record id="product_shredding_bin_32g" model="product.product"> |
| 37 | + <field name="name">32 Gallon Bin Service</field> |
| 38 | + <field name="default_code">SHRED-32G</field> |
| 39 | + <field name="type">service</field> |
| 40 | + <field name="categ_id" ref="product_category_shredding_services"/> |
| 41 | + <field name="list_price">35.00</field> |
| 42 | + <field name="is_records_management_product">True</field> |
| 43 | + <field name="sale_ok">True</field> |
| 44 | + <field name="purchase_ok">False</field> |
| 45 | + <field name="description_sale">Shredding service for 32 Gallon standard bin. Includes secure pickup and NAID-compliant destruction.</field> |
| 46 | + <field name="invoice_policy">order</field> |
| 47 | + </record> |
| 48 | + |
| 49 | + <!-- 32 Gallon Console Service --> |
| 50 | + <record id="product_shredding_bin_32c" model="product.product"> |
| 51 | + <field name="name">32 Gallon Console Service</field> |
| 52 | + <field name="default_code">SHRED-32C</field> |
| 53 | + <field name="type">service</field> |
| 54 | + <field name="categ_id" ref="product_category_shredding_services"/> |
| 55 | + <field name="list_price">30.00</field> |
| 56 | + <field name="is_records_management_product">True</field> |
| 57 | + <field name="sale_ok">True</field> |
| 58 | + <field name="purchase_ok">False</field> |
| 59 | + <field name="description_sale">Shredding service for 32 Gallon console-style bin. Includes secure pickup and NAID-compliant destruction.</field> |
| 60 | + <field name="invoice_policy">order</field> |
| 61 | + </record> |
| 62 | + |
| 63 | + <!-- 64 Gallon Bin Service --> |
| 64 | + <record id="product_shredding_bin_64" model="product.product"> |
| 65 | + <field name="name">64 Gallon Bin Service</field> |
| 66 | + <field name="default_code">SHRED-64</field> |
| 67 | + <field name="type">service</field> |
| 68 | + <field name="categ_id" ref="product_category_shredding_services"/> |
| 69 | + <field name="list_price">65.00</field> |
| 70 | + <field name="is_records_management_product">True</field> |
| 71 | + <field name="sale_ok">True</field> |
| 72 | + <field name="purchase_ok">False</field> |
| 73 | + <field name="description_sale">Shredding service for 64 Gallon bin. Includes secure pickup and NAID-compliant destruction.</field> |
| 74 | + <field name="invoice_policy">order</field> |
| 75 | + </record> |
| 76 | + |
| 77 | + <!-- 96 Gallon Bin Service --> |
| 78 | + <record id="product_shredding_bin_96" model="product.product"> |
| 79 | + <field name="name">96 Gallon Bin Service</field> |
| 80 | + <field name="default_code">SHRED-96</field> |
| 81 | + <field name="type">service</field> |
| 82 | + <field name="categ_id" ref="product_category_shredding_services"/> |
| 83 | + <field name="list_price">95.00</field> |
| 84 | + <field name="is_records_management_product">True</field> |
| 85 | + <field name="sale_ok">True</field> |
| 86 | + <field name="purchase_ok">False</field> |
| 87 | + <field name="description_sale">Shredding service for 96 Gallon bin. Includes secure pickup and NAID-compliant destruction.</field> |
| 88 | + <field name="invoice_policy">order</field> |
| 89 | + </record> |
| 90 | + |
| 91 | + <!-- Generic/Default Shredding Service (fallback) --> |
| 92 | + <record id="product_shredding_service" model="product.product"> |
| 93 | + <field name="name">Shredding Service</field> |
| 94 | + <field name="default_code">SHRED-GEN</field> |
| 95 | + <field name="type">service</field> |
| 96 | + <field name="categ_id" ref="product_category_shredding_services"/> |
| 97 | + <field name="list_price">35.00</field> |
| 98 | + <field name="is_records_management_product">True</field> |
| 99 | + <field name="sale_ok">True</field> |
| 100 | + <field name="purchase_ok">False</field> |
| 101 | + <field name="description_sale">General shredding service. Used as fallback when specific bin size product is not available.</field> |
| 102 | + <field name="invoice_policy">order</field> |
| 103 | + </record> |
| 104 | + |
| 105 | + </data> |
| 106 | +</odoo> |
0 commit comments