콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
10803 화면

Hello all,

I'm in the model account.invoice, in a new method.

An invoice has an origin sale order.

Trying to get the id of the origin sale_order of an invoice.

Is this the best and cleanest way to get this id?


class AccountInvoice(models.Model):
    _inherit = "account.invoice"

    def get_origin_sale_order_id(self):
sale_order_id = self.env['sale.order'].search([('name', '=', self.origin)])[0].id
        return sale_order_id


Thanks for your comments!

아바타
취소
베스트 답변

No, it's not.

You can do like this.

This will work for you.

sale_order_id = self.invoice_line_ids.mapped('sale_line_ids').order_id
아바타
취소

It works! However I got expected singleton error if there are multiple sale.order.line lines

Here is my source code to overcome this error:

sale_line_ids = self.invoice_line_ids.mapped('sale_line_ids')

if sale_line_ids:

sale_order = sale_line_ids[0].order_id

If we think straightway, it's not possible that one invoice is created for 2 sale orders.

관련 게시물 답글 화면 활동
1
5월 16
5705
0
8월 16
9151
1
3월 16
4505
0
3월 15
5563
2
8월 20
10829