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.