Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

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

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

How to add a field that displays information related to the distance of the last movement of goods with the date the report was drawn

Naroči se

Get notified when there's activity on this post

This question has been flagged
inventoryreport
1 Odgovori
1299 Prikazi
Avatar
Alex

How to add a field that displays information related to the distance of the last movement of goods with the date the report was drawn

For example, if the last product movement was on 6/1/2025, and I want to see the report for the movement of goods on 6/10/2025, the system will display the stock age as 10 days. Then, if I pull up the date 6/15/2025, the system will display the stock age as 15 days.

1
Avatar
Opusti
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

Hi,


You want to display the stock age of a product based on the last stock movement date. This age should be calculated dynamically based on a user-defined report date.

This can be done by extending the 'product.product' model using a custom module in Odoo 17 on-premise.


1. Create a Custom Module.


from odoo import models, fields, api

from datetime import date


class ProductProduct(models.Model):

    _inherit = 'product.product'


    report_date = fields.Date(string="Report Date")

    stock_age_days = fields.Integer(string="Stock Age (Days)", compute="_compute_stock_age")


    @api.depends('report_date')

    def _compute_stock_age(self):

        for product in self:

            if product.report_date:

                last_move = self.env['stock.move'].search([

                    ('product_id', '=', product.id),

                    ('state', '=', 'done'),

                    ('location_dest_id.usage', '=', 'internal'),

                ], order='date desc', limit=1)

               

                if last_move:

                    move_date = last_move.date.date()

                    delta_days = (product.report_date - move_date).days

                    product.stock_age_days = max(delta_days, 0)

                else:

                    product.stock_age_days = 0

            else:

                product.stock_age_days = 0


2. Add the Fields to Views


<odoo>

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

        <field name="name">product.product.form.inherit.stock.age</field>

        <field name="model">product.product</field>

        <field name="inherit_id" ref="product.product_normal_form_view"/>

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

            <xpath expr="//sheet/group" position="inside">

                <group string="Stock Age Info">

                    <field name="report_date"/>

                    <field name="stock_age_days" readonly="1"/>

                </group>

            </xpath>

        </field>

    </record>

</odoo>


How It Works

     - The user sets a Report Date on the product form.

     - Odoo will search for the most recent stock move into internal location for that product.

     - The system calculates the number of days between the report_date and the last move date.

     - The result appears in the Stock Age (Days) field.


By customizing the 'product.product' model in your on-premise Odoo 17 instance, you can efficiently track and display the stock age of products based on any date selected for reporting. This approach offers full control and dynamic stock aging without relying on external spreadsheets or filters.


More information.

- Refer to the flow of the Inventory Aging' default report in Odoo.

(Inventory --> Reporting --> Inventory Aging )


Hope it helps

0
Avatar
Opusti
Enjoying the discussion? Don't just read, join in!

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

Prijavi
Related Posts Odgovori Prikazi Aktivnost
Customized Packing Slip report not showing customization Solved
inventory report
Avatar
Avatar
1
jun. 20
3790
Stock difference printing in inventory report Solved
inventory report
Avatar
Avatar
1
sep. 15
4561
In OpenERP v7, Inventory Report Printing
inventory report
Avatar
Avatar
1
mar. 15
5600
How can I Identify dead inventory in OpenERP
inventory report
Avatar
Avatar
1
mar. 15
6035
Accounting Inventory Report - Lower of Cost or Market (LCM)
accounting inventory report
Avatar
0
avg. 24
4104
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة 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