I want to change Product Type on a product from "Storable Product" -> "Consumable". However that product has been sold earlier so a warning comes up.
You cannot change the product's type because it is already used in sales orders.
Is there any way to by-pass this restriction? I don't like the idea of creating new duplicate products only because of this minor change.
We are on v14 enterprise.
Hi Rickard,
I think you should use sql statement to update. For example: self.env.cr.execute("""Update product_template set type = 'consu' where id = 1 """)
It's a nice shortcut, it works fine for situations where you don't have to be careful.
So still Inventory Valuation is an issue. It sees the quantity of the consumable product but it doesn't appear in quantity on hand. If you try to do inventory adjustment it dublicates the quantity and eventually the amount.