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
      • Get a Tailored Demo
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +32 2 290 34 90
    • Get a Tailored Demo
  • Pricing
  • Help
  1. APPS
  2. Other
  3. Row Number in tree/list view v 17.0
  4. Sales Conditions FAQ

Row Number in tree/list view

by Synodica Solutions Pvt. Ltd. https://synodica.com
Odoo 23
v 17.0 Third Party 12645
Download for v 17.0 Deploy on Odoo.sh
Apps purchases are linked to your Odoo account, please sign in or sign up first.
Availability
Odoo Online
Odoo.sh
On Premise
Lines of code 19
Technical Name rowno_in_tree
LicenseLGPL-3
Websitehttps://synodica.com
Versions 8.0 9.0 10.0 11.0 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0
You bought this module and need support? Click here!
Availability
Odoo Online
Odoo.sh
On Premise
Lines of code 19
Technical Name rowno_in_tree
LicenseLGPL-3
Websitehttps://synodica.com
Versions 8.0 9.0 10.0 11.0 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0

Show Number in List/Tree View

You can see the row number in tree/list view in Odoo backend list views.

You would love to have our other Apps!



Contact us for support, customization

Write us
Suggestions & Feedback to: info@synodica.com , nilesh@synodica.com, nikunj@synodica.com

Please log in to comment on this module

  • The author can leave a single reply to each comment.
  • This section is meant to ask simple questions or leave a rating. Every report of a problem experienced while using the module should be addressed to the author directly (refer to the following point).
  • If you want to start a discussion with the author, please use the developer contact information. They can usually be found in the description.
Please choose a rating from 1 to 5 for this module.
  • Ratings
  • Discuss
Figured out the solution to the problem regarding list in stock move not working
by
Adwin Ang
on 7/3/24, 11:33 AM

In stock/static/src/views/picking_form/stock_move_one2many.xml, the "stock.MovesListRenderer.RecordRow" inherit-mode is "primary". 

If you want to add the row number to it, you will need a separate extension just for the "stock.MovesListRenderer.RecordRow" and add the row number to that specific RecordRow.

This is not a result of any addition of custom modules. Please do check.


Not working in stock.picking
by
Fritz Schumacher
on 7/1/24, 8:59 AM

It's not quite working for me, particularly in the inventory. To be precise, it's in the "move_ids_without_package" table in stock.picking. When I go to the transfer overview in the sale_order and then into a picking, the first column with the "#" is there, but not visible in the table. This causes all values at the beginning of the list to shift, which messes up the view.


Line number cannot be displayed in production/inventory module
by
gavinguo
on 5/10/24, 10:14 PM

I just tested in 17, it working fine. Show column number well in inventory moves. Do you have any custom module installed?===No other modules are installed.



Not work well on some model
by
Phat Dang Minh
on 4/24/24, 4:06 AM

I tried to use this module but it did work not well for the Inventory module.

Re: Not work well on some model
by
Synodica Solutions Pvt. Ltd.
on 4/24/24, 4:49 AM Author

Can you let me know the issue you are getting. I just check in Inventory module and in that it working fine.


Fix picking stock move row number in Odoo 17
by
ibrahim
on 1/8/25, 2:14 AM

add this code inside the template in row_in_tree/src/views/list/list_render.xml:
<t

t-name="rowno_in_tree.MoveListRenderer.RecordRowNumber"

t-inherit="stock.MovesListRenderer.RecordRow"

t-inherit-mode="extension"

owl="1"

>

<xpath expr="//tr/td[@t-if='hasSelectors']" position="before">

<td tabindex="-1">

<span t-esc="RowNumber" />

</td>

</xpath>

</t>

Re: Fix picking stock move row number in Odoo 17
by
Synodica Solutions Pvt. Ltd.
on 1/8/25, 3:50 AM Author

Ok


Not working in stock.picking
by
Adwin Ang
on 7/3/24, 11:05 AM

Same problem as everyone else


Column number cannot be displayed in stock movement (14/17 bug)
by
gavinguo
on 5/5/24, 10:29 AM

This is a very useful feature. 
In version 17, the inventory moves, and the column number cannot be displayed; 
In version 14, sales order line add section, no delete button.


Re: Column number cannot be displayed in stock movement (14/17 bug)
by
Synodica Solutions Pvt. Ltd.
on 5/7/24, 1:56 AM Author

I just tested in 17, it working fine. Show column number well in inventory moves. Do you have any custom module installed?


Alignment Issues
by
Anas Ubaid
on 2/18/24, 1:19 AM

There is alignment issue in the tree view after installing. It shows the row number, but there is a huge gap between the numbers column and the column following it (like product id column in sales orders).



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

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