14 lines
355 B
Python
14 lines
355 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models
|
|
|
|
|
|
class SaleOrderLine(models.Model):
|
|
_inherit = 'sale.order.line'
|
|
|
|
def _get_sale_order_fields(self):
|
|
field_names = super()._get_sale_order_fields()
|
|
field_names.append('reward_id')
|
|
return field_names
|