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

Hello!!

Please, i use the class "account_invoice_line" and i want to add a new field. I have tried but nothing appear in the invoice.

Here is my code:

#python:

class account_invoice_line(models.Model):

#Inhertis the model account.invoice.line

_inherit = 'account.invoice.line'

callim_id = fields.Many2one('account.invoice', string= 'Invoice Id ', required= False)

product_id = fields.Integer( help = 'Product', default=1 , required= False)

quantity = fields.Float(help='Quantity', default=2, required= False)

price_unit = fields.Integer(help='Unit Price', required= False)

name = fields.Char(help='Tax Description', required= False)

uos_id = fields.Many2one('product.uom', string='Unit of Measure', required= False)

invoice_line_tax_id = fields.Many2many('account.tax','account_invoice_line_tax', 'invoice_line_id', 'tax_id',string='Taxes', required= False)

project_name = fields.Char(string = 'Project Name', help= 'Project_Name')

#XML:

<xpath expr="//field[@name='product_id']" position="before">
                  <field name="project_name"/>

</xpath>

Please help...

Thanks in advance.

아바타
취소
관련 게시물 답글 화면 활동
0
3월 25
1428
0
1월 25
3514
1
8월 23
14874
change password 해결 완료
1
8월 23
13530
1
7월 23
10506