Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    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
    Producție
    • 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
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

Custom field not appearing in res.partner model when module is a sub-directory

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
invoicemodelsaccountsubmodules
1 Răspunde
5008 Vizualizări
Imagine profil
Izzat

I'm facing an issue with extending the res.partner model in Odoo. I want to create a custom field named in res.partner model as bank_tag and the custom field doesn't appear. Larger module neutrovis_localisation has two sub-module which is neutrovis_ar_ap and neutrovis_invoice_note as its sub-module. Sub-module neutrovis_ar_ap works finely.

Sub-module (neutrovis_invoice_note) of a larger module (neutrovis_localisation):

  • neutrovis_localisation/__init__.py: 
    from . import neutrovis_ar_ap  #neglect, another sub-directory under neutrovis_localisation
    from . import neutrovis_invoice_note 

  • neutrovis_localisation/__manifest__.py: 
    { 
     'name': "Neutrovis Localisation", 
     'author': "Neutrovis", 
     'website': "https://www.neutrovis.asia", 
     'category': 'Localization', 
     'version': '1.0', 
     'depends': ['base', 'neutrovis_contact','account'], 
     'data': [ 
     'neutrovis_ar_ap/security/accounting_access_rights.xml', #neglect, another sub-directory under neutrovis_localisation 
     ], 
     'installable': True }


  • neutrovis_invoice_note/models/__init__.py: 
    from . import account 

  • neutrovis_invoice_note/models/account.py: 
    from odoo import models, fields 
     class ResPartner(models.Model): 
     _inherit = 'res.partner' 
     bank_tagging = fields.Char(string="Bank Tagging")

I've checked the module dependencies and initialization order, and there doesn't seem to be any conflicts with other modules or data files. I've also tried uninstalling and reinstalling the neutrovis_localisation module, but the issue persists.

Does anyone have any ideas on what could be causing this issue and how to resolve it?

Thank you in advance for your help.


0
Imagine profil
Abandonează
Imagine profil
shubham shiroya
Cel mai bun răspuns

you can check the following points:

  1. Make sure that your module is installed and upgraded: Ensure that you have installed and upgraded the neutrovis_invoice_note module after making changes to the code. You can do this by restarting the Odoo server and updating the module list.

  2. Check the module dependency order: Verify that the neutrovis_invoice_note module is installed after its dependencies (base, neutrovis_contact, and account) are installed. The order of installation can affect the inheritance and field addition process.

  3. Verify the module structure: Double-check the file structure of your module to ensure that the file paths and names are correct. Confirm that the __init__.py and __manifest__.py files are placed in the correct directories. Also, ensure that the file names and class names are spelled correctly.

  4. Check for any other modules modifying res.partner: Ensure that there are no other modules in your Odoo instance that modify the res.partner model and conflict with your changes. Check if any other modules have overridden the same field or view where you are trying to add the bank_tagging field.

  5. Verify the field definition: Review the account.py file in the neutrovis_invoice_note module to ensure that the field definition is correct. Make sure the field name (bank_tagging) and model inheritance (_inherit) match the parent model (res.partner). Also, confirm that the account.py file is being imported correctly in the __init__.py file.

After making any changes, remember to restart the Odoo server, upgrade the module, and clear the browser cache to ensure the changes are properly reflected.

0
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

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

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
Where does invoice sequence number come from? Rezolvat
invoice models account invoicing odoov12
Imagine profil
Imagine profil
2
mar. 19
5500
Error : ValidateError Error occurred while validating the field(s) company_id: Account and Period must belong to the same compa
invoice account
Imagine profil
Imagine profil
1
mar. 15
6980
How to extend Accounting module in openerp7 ?
invoice account
Imagine profil
Imagine profil
1
mar. 15
6182
Export accounting entry of payment with linked invoice sequence number
invoice account payment
Imagine profil
Imagine profil
1
mai 25
1714
What is the xml id for the invoice creation form? Rezolvat
invoice xml account
Imagine profil
Imagine profil
2
apr. 24
2030
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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