Skip to Content
Menu
This question has been flagged
2730 Views

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.

Avatar
Discard
Related Posts Replies Views Activity
1
Aug 23
12549
1
Aug 23
11056
1
Jul 23
7228
4
Apr 23
8677
2
Feb 23
17600