Odoo Mindscape. Understand Odoo faster. Explore modules, fields, dependencies and version differences in one place instead of digging through the source code.
Module: Sales - Service
Entity: sale.order.line
Compute Method: _compute_is_service
| Inputs | Method | Outputs |
|---|---|---|
|
+ self.fetch(['is_service', 'product_id']) + self.product_id.fetch(['type']) for so_line in self: so_line.is_service = so_line.product_id.type == 'service' |
|
