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

Hello, I'm trying to create invoices via API: first i create a record in account_invoice with:

invoice_id = sock.execute(dbname, uid, pwd, 'account.invoice', 'create', invoice)

then I create the lines I need in account_invoice_lines:

sock.execute(dbname, uid, pwd, 'account.invoice.line', 'create', invoice_line)

It's all working well until now, but checking the invoices i noticed that I need to add taxes in every line, so I decided to create a new record for every line in account_invoice_line_tax but when I run this:

sock.execute(dbname,uid,pwd, 'account.invoice.line.tax', 'create', account_invoice_line_tax)

It gives me this error:

Object account.invoice.line.tax doesn't exist: ''>

I assume that account.invoice.line.tax can't be treated like a model, so how can I add taxes to invoice lines using API?

Or there's a better way for insert invoices?

Any help or tips are appreciated.

아바타
취소
베스트 답변

Hi,

you need to give one field when you create new invoice line that is as like under. It will added taxes into your invoice lines.

invoice_line.update( { 'invoice_line_tax_id' : [ (6, 0 , [tax_ids] ) ] }) # here you need search tax_ids which you want to apply. Normally all taxes are comes from product. You can also get all taxes by calling of the on_change of product.

After set of the above field you will get that tax into invoice lines. 

아바타
취소
관련 게시물 답글 화면 활동
3
2월 24
3593
4
2월 23
4957
2
9월 21
11063
4
6월 20
3857
2
7월 19
4116