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
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Property Management
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • 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
    Iní
    • 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
  • Pomoc
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

Insert Contact Reference ref in XML

Odoberať

Get notified when there's activity on this post

This question has been flagged
odooV8
1 Odpoveď
5559 Zobrazenia
Avatar
Sergio Fernández

Good morning!

I would like the Contact Reference to appear in the Calendar View of Tasks (in Project app). I modified some parameters more and now the XML looks like this:.

<?xml version="1.0"?>
<calendar color="user_id" date_start="date_deadline" string="Tasks">
                    <field name="ref"/> 
<field name="partner_id"/>
<field name="name"/>
<field name="project_id"/>
</calendar>
But when saving it tells me:

ValidateErrorField(s) `arch` failed against a constraint: Invalid view definitionError details:Field `ref` does not existError context:View `project.task.calendar`[view_id: 1147, xml_id: project.view_task_calendar, model: project.task, parent_id: n/a]


Do you know where "ref" is located? I don't know where is it, and also I don't know where to begin searching! I will highly appreciate your help..
1
Avatar
Zrušiť
Avatar
Akhil P Sivan
Best Answer

Hi Sergio,

Because the field ref does not exist in the model project.task. If you want to call a field in the view definition of a model, then that field should be defined in that model. 

Here you want to get the Customer reference which is defined in the res.partner model, ie, Customer. So there is only one field in project.task through which you can reach the Customer, ie, the partner_id field. Through that field you can access the ref field defined in res.partner.

For that, a better option is to define a new related field in project.task, which allows you to access the customer reference and show it in the project.task model.

Inorder to define that new field, you can just create a new custom module, by looking at the Odoo tutorial. And in your module, in the .py file put this:

class project_task(models.Model):

_inherit = 'project.task'

ref = fields.Char(related='partner_id.ref', string='Customer Reference')

Then in the .xml file put this:

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

<field name="name">project.task.calendar.inherited</field>

<field name="model">project.task</field>

<field name="inherit_id" ref="project.view_task_calendar"/>

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

<field name="name" position="before">

<field name="ref" />

</field>

</field>

</record>

This will bring Customer reference in the calender view of project.task

2
Avatar
Zrušiť
Sergio Fernández
Autor

Thank you a lot! I will try it

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
(FAQs-queja)¿Cómo puedo hablar con un asesor de Avianca Colombia?
odooV8
Avatar
0
mar 26
5
[[24/7!!PASO→PASO→EC®]]¿Cómo llamar a Avianca Airlines Airlines Ecuador? 
odooV8
Avatar
1
feb 26
289
Missing Internal Transfer Button in Odoo.sh v.18
odooV8
Avatar
0
feb 26
3
How to create a report with different header and footer in all pages with correct page numbers
odooV8
Avatar
Avatar
1
feb 26
613
Multi-currency financial reporting for Indian company with Spain HQ – Odoo 19 EE
odooV8
Avatar
0
feb 26
2
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 Svenska ภาษาไทย 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