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
    • Estate Managament
    • 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

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

Display custom field value on partner kanban

Odoberať

Get notified when there's activity on this post

This question has been flagged
partnermodulecustomkanbanvalue
2 Replies
14369 Zobrazenia
Avatar
birduser

I added a custom field in "base.view_partner_form" named "ob_CRM02-c01-004" and want to show the value of this field in the kanban view "base.res_partner_kanban_view". 

In XML i just tried:

<h4 class="oe_partner_heading"><a type="open"><field name="ob_CRM02-c01-004"/></a></h4>

But it shows me "NaN" at which 

<h4 class="oe_partner_heading"><a type="open"><field name="street"/></a></h4>

where "street" is a predefined field is working.

How can I display the Value of my custom field there?

0
Avatar
Zrušiť
Avatar
Kazim Mirza | Founder at TechUltra Solutions
Best Answer

this is xml file

<openerp>
<data>

<record id="inherit_res_partner_kanban_view" model="ir.ui.view">
            <field name="name">inherit.res.partner.kanban.view</field>
            <field name="model">res.partner</field>
            <field name="inherit_id" ref="base.res_partner_kanban_view" />

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

<ul position="inside">

<li><field name="xyz"/></li>

</ul>

            </field>

</record>

<record id="inherit_res_partner_form_view" model="ir.ui.view">
            <field name="name">inherit.res.partner.form.view</field>
            <field name="model">res.partner</field>
            <field name="inherit_id" ref="base.view_partner_form" />

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

<field name="website" position="after">

<li><field name="xyz"/></li>

</field>

            </field>

</record>
</data>
</openerp>

 

this is .py file

 

from osv import osv,fields
class res_partner(osv.osv):
    _inherit = 'res.partner'
    _columns = {
                'xyz' : fields.char('xyz',size=25)
                
                }

 

 

its complete workinvg i used it 

 

 

1
Avatar
Zrušiť
Avatar
birduser
Autor Best Answer

Thanks for your answer, but this is what I tried, and it is not working.

<!-- KANBAN View for OpenERP Partner view --> 
<openerp>
    <data>

    <record model="ir.ui.view" id="base.res_partner_kanban_view">
            <field name="name">res.partner.kanban.view</field>
            <field name="model">res.partner</field>
            <field name="arch" type="xml">
                <kanban>
                    <field name="color"/>
                    <field name="name"/>
                    <field name="title"/>
                    <field name="email"/>
                    <field name="parent_id"/>
                    <field name="is_company"/>
                    <field name="function"/>
                    <field name="phone"/>
                    <field name="street"/>
                    <field name="street2"/>
                    <field name="zip"/>
                    <field name="city"/>
                    <field name="country_id"/>
                    <field name="mobile"/>
                    <field name="state_id"/>
                    <field name="category_id"/>
                    <field name="has_image"/>
                    <templates>
                        <t t-name="kanban-box">
                            <div class="oe_kanban_vignette oe_semantic_html_override">
                            
                            <!-- Link for Image -->
                                <a type="open">
                                    <!-- Record has image, show saved image -->
                                    <t t-if="record.has_image.raw_value === true">                                      
                                        <img t-att-src="kanban_image('res.partner', 'image_small', record.id.value)" class="oe_kanban_image"/>
                                    </t>
                                    
                                    <!-- Record has no image -->
                                    <t t-if="record.has_image.raw_value === false">            
                                        
                                        <t t-if="record.is_company.raw_value === true"> 
                                            <!-- Record is company -->         
                                            <img t-att-src="_s + '/base/static/src/img/company_image.png'" class="oe_kanban_image"/>       
                                        </t>
                                        
                                        <t t-if="record.is_company.raw_value === false">
                                            <!-- Record is no company -->               
                                            <img t-att-src="_s + '/base/static/src/img/avatar.png'" class="oe_kanban_image"/>          
                                        </t>
         
                                    </t>
                                    
                                </a>

                            <!-- Details -->
                                <div class="oe_kanban_details">
                                    
                                    <t t-if="record.is_company.raw_value === false">
                                        <!-- Record is no company -->
                                        <h4 class="oe_partner_heading"><a type="open"><field name="ob_CRM02-c01-004"/></a></h4>
                                        <h4 class="oe_partner_heading"><a type="open"><field name="name"/></a></h4>
                                        <div class="oe_kanban_partner_categories"/>
                                        <div class="oe_kanban_partner_links"/>
                                        <ul>
                                            <li t-if="record.company_id.raw_value"><field name="company_id"/></li>
                                        </ul>
                                    </t>
                                    
                                </div>
                            </div>
                        </t>
                    </templates>
                </kanban>
            </field>
        </record>
        
    </data>
</openerp>

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
How get supplier Price value from supplierinfo, in custom module???
partner community module custom v13
Avatar
Avatar
2
feb 20
4154
Custom Module Not Populating in Apps List Solved
module custom
Avatar
Avatar
4
okt 20
9976
For Odoo hosted version, how would I upload a custom module? Solved
module upload custom
Avatar
Avatar
Avatar
Avatar
3
feb 24
11576
importing custom module
module custom importing
Avatar
Avatar
1
nov 23
3886
error while parsing inherit view
module xml custom
Avatar
Avatar
1
jún 23
4383
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