Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

Add a Field to the Invoice Line (v8)

Naroči se

Get notified when there's activity on this post

This question has been flagged
v8invoicefields
11 Odgovori
13321 Prikazi
Avatar
David Birchmier

What Models/Views/etc must be edited in order to add a new field to the Invoice Line? 

Here's an example of where I want to add the field:
http://screencast.com/t/mSIxf3y4i7os

Thanks for your help! :) 

0
Avatar
Opusti
Luke Branch

@David, Could you describe the field that you would like to add to the invoice line, is it a picture, your own custom text field, a computed field, etc.? This will help me to better answer your question. With that being said, you may find that you can edit the general invoice layout by inheriting and modifying the following id: inherit_id="account.report_invoice_document" This covers much of the body of the invoice. In terms of models this will depend on the nature of the field you'd like to place there.

David Birchmier
Avtor

Hi Luke, Thanks for your detailed reply! The type of field I wish to add is a text field which will be limited to 7 characters, numbers only. Here's a specific use-case, if that helps: #1 In our workflow, every billable incident has a TICKET NUMBER associated with it. #2 When we bill, each line item is associated with a TICKET NUMBER #3 I want to add a custom field to allow us to enter the TICKET NUMBER that is associated with that line item that is being billed for. #4 This will output on the printed report invoice (I think I know how to do that) as well as be searchable/saved in the database for future reference. #5 The goal is to be able to correlate each line item with a specific Ticket # to allow us to reference more details if needed regarding any invoice line item. Hope this makes sense. Thanks again for the help!

Avatar
Baiju KS
Best Answer

Hi David,

Please check this , is it okay

I inherited 'account.invoice.line'
and added a integer field to that object

and then i inherited the view form i.e.. 'invoice_form' in account
and added that field to view part
 

3
Avatar
Opusti
David Birchmier
Avtor

Yes! That is PERFECT! You rock!

David Birchmier
Avtor

Yes! That is PERFECT! You rock!

Baiju KS

can you please mark it as correct.?

David Birchmier
Avtor

Marked as correct! Can you tell me how you achieved that result?

Baiju KS

Do you have a Skype id, or you want me to e-mail that to you?

Luke Branch

@Baiju and David, Please consider updating your answer with the method you have used if possible so that others viewing your post that are looking to accomplish something similar can learn from what you have done.

iWesabe Technologies

+1

Avatar
Odoo Honduras
Best Answer

Hope it be usefull to you

__init__

from . import "name of yor module"


__openerp__


{

'name': 'Name of your module',

'version': '0.1',

'depends': ['account'],

'author': "Daniel Hernández",

'website': 'http://www.odoohonduras.com',

'category': 'Invoicing',

'data': [

'views/report_account_invoice.xml', # In order to show your field in the invoice document

' "name of your module" _view.xml',

],

}


name_of_your_module.py

from openerp import models, fields, api, _

class account_invoice_line(models.Model):

_inherit = 'account.invoice.line'

your_field_name = fields.Char(string='Your field name')


your_module_view.xml


<?xml version="1.0" encoding="utf-8"?>

<openerp>

<data>

<record id="invoice_form_inherit" model="ir.ui.view">

<field name="name">account.invoice.inherit</field>

<field name="model">account.invoice</field>

<field name="inherit_id" ref="account.invoice_form"/>

<field name="arch" type="xml">

<xpath expr="//page[@string='Invoice Lines']/field[@name='invoice_line']/tree/field[@name='quantity']" position="before">

<field name="your field"/>

</xpath>

</field>

</record>

<!--<record id="invoice_supplier_form_inherit" model="ir.ui.view">

<field name="name">account.invoice.supplier.form.inherit</field>

<field name="model">account.invoice</field>

<field name="inherit_id" ref="account.invoice_supplier_form"/>

<field name="arch" type="xml">

<xpath expr="//tree[@string='Invoice lines']/field[@name='quantity']" position="before">

<field name="second_uom" attrs="{'readonly': [('state', '!=', 'draft')]}"/>

</xpath>

</field>

</record>-->

</data>

</openerp>



Abd in views folder


report_account_invoice,xml


<?xml version="1.0" encoding="utf-8"?>

<openerp>

<data>

<template id="report_invoice_document_itemnumber"

inherit_id="account.report_invoice_document">

<xpath expr="//div[contains(@class, 'page')]/table[1]/thead/tr/th[1]" position="before">

<th>String of your field</th>

</xpath>

<xpath expr="//div[contains(@class, 'page')]/table[1]/tbody/tr/td[1]" position="before">

<td>

<span t-field="l.your field"/>

</td>

</xpath>

</template>

</data>

</openerp>

1
Avatar
Opusti
Avatar
Herry prasetyo
Best Answer
<xpath expr="//form/sheet/notebook/page[1]/field[@name='invoice_line_ids']/tree/field[@name='price_unit']" position="after">
<field name="deduction"/>
</xpath>
0
Avatar
Opusti
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Prijavi
Related Posts Odgovori Prikazi Aktivnost
Adding a field to account.invoice
v8 invoice fields inheritance
Avatar
Avatar
2
mar. 15
6043
Filter invoices with "to_pay = 0" Solved
v8 invoice
Avatar
Avatar
3
apr. 15
4237
Adding custom fields on invoice and db
invoice fields customization
Avatar
Avatar
2
nov. 22
3999
How do i create an invoice template, also add fields to the invoice that do not print [new oodo trial] Solved
invoice fields templates
Avatar
Avatar
5
feb. 22
6853
create incoming invoice with email?
v8 invoice email
Avatar
0
dec. 23
6232
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now