Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
5 Ответы
7833 Представления

to pass the fields value of sale.order.line to account.invoice.line

Аватар
Отменить
Лучший ответ

there is function _prepare_invoice_line in sale.py. You can do inherit that function and pass your values.

Аватар
Отменить
Автор

i'm working with odoo8 , i can't find this method !

Лучший ответ

for those who have odoo 16, you can inherit from sale_order_line and override the function _prepare_invoice_line like this:

def _prepare_invoice_line(self, **optional_values):
return super(SaleOrderLine, self)._prepare_invoice_line(
your_field=self.your_field,
,
**optional_values
)

(don't forget to add your_field into your inherited model from  sale.order.line )

add your_field to the inherited model from account_move_line and use them in your views 

Аватар
Отменить
Лучший ответ

You want to pass the field's value of sale.order.line to account.invoice.line object. You need to override `_prepare_invoice_line` method of sale.order.line object.

Like this:

class SaleOrderLine(models.Model):
    _inherit = 'sale.order.line'

   
    def _prepare_invoice_line(self,**optional_values):
        res = super(SaleOrderLine, self)._prepare_invoice_line()
        res.update({'account_move_line_field_name': self.sale_order_line_fieldName, })
        return res

Аватар
Отменить
Лучший ответ

_prepare_invoice is the name of the method in Odoo 8 and can be used with _make_invoice to create the invoice from the order selected

Аватар
Отменить
Лучший ответ

You can override _prepare_order_line_invoice_line method of sale.order.line object which are in sale.py file.

Аватар
Отменить
Related Posts Ответы Просмотры Активность
2
дек. 22
21951
0
июн. 16
2817
0
окт. 19
2877
2
мая 25
10323
0
февр. 21
3796