Skip to Content
Odoo Menu
  • Sign in
  • 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
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

Display custom field value on partner kanban

Subscribe

Get notified when there's activity on this post

This question has been flagged
partnermodulecustomkanbanvalue
2 Replies
14278 Views
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
Discard
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
Discard
Avatar
birduser
Author 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
Discard
Enjoying the discussion? Don't just read, join in!

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

Sign up
Related Posts Replies Views Activity
How get supplier Price value from supplierinfo, in custom module???
partner community module custom v13
Avatar
Avatar
2
Feb 20
4100
Custom Module Not Populating in Apps List Solved
module custom
Avatar
Avatar
4
Oct 20
9907
For Odoo hosted version, how would I upload a custom module? Solved
module upload custom
Avatar
Avatar
Avatar
Avatar
3
Feb 24
11501
importing custom module
module custom importing
Avatar
Avatar
1
Nov 23
3845
error while parsing inherit view
module xml custom
Avatar
Avatar
1
Jun 23
4339
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