11 lines
267 B
Python
11 lines
267 B
Python
from odoo import api, models
|
|
|
|
|
|
class Product(models.Model):
|
|
_inherit = 'product.product'
|
|
|
|
@api.onchange('service_tracking')
|
|
def _onchange_type_event_booth(self):
|
|
if self.service_tracking == 'event_booth':
|
|
self.invoice_policy = 'order'
|