📄 Create products

Create products


For general product setup, we refer to the standard Odoo documentation online.


Highlights of product creation

  1. Name of the product
  2. Indication of the language + button to go the translation screen
  3. Add of modify picture of the product
  4. Indicate whether the product is fit for purchase, sales or both.
  5. Specify the product type. More info on https://www.odoo.com/documentation/19.0/applications/inventory_and_mrp/inventory/product_management/configure/type.html
  6. Set a standard sales price
  7. Set the correct unit of measure
  8. Indicate whether the inventory needs to be held for this product.


On the accounting tab, the income and expense accounts can be set.

This can be set on product category, product and product variant.

Annex 1: 

When creating product variants of sawn timber, also fill in:

  1. The Internal Reference in the format of HEIGHTxWIDTHxLENGTH
  2. The volume of 1 piece of finished product in m³.
  3. Invoicing policy should be on delivered quantities. This ensures that all that has been deli

1.

2.

3.

To prevent auto creation of to-do activities for upselling, implement the following automated action.

for order in records:
    if order.invoice_status == 'upsell':

        order.write({'invoice_status': 'to invoice'})