Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • 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 Managament
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and 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
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Help

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

Add a Field to the Invoice Line (v8)

Odoberať

Get notified when there's activity on this post

This question has been flagged
v8invoicefields
11 Replies
13320 Zobrazenia
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
Zrušiť
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
Autor

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
Zrušiť
David Birchmier
Autor

Yes! That is PERFECT! You rock!

David Birchmier
Autor

Yes! That is PERFECT! You rock!

Baiju KS

can you please mark it as correct.?

David Birchmier
Autor

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
Zrušiť
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
Zrušiť
Enjoying the discussion? Don't just read, join in!

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

Registrácia
Related Posts Replies Zobrazenia Aktivita
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
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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