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 Build Custom Forecasted Quantity Reports in Odoo

Naroči se

Get notified when there's activity on this post

This question has been flagged
inventoryreportforecastquickstartQuickstart
1 Odgovori
1379 Prikazi
Avatar
Abraham Ismael Torales Salazar (aits)

Use case: 

Being able to filter the forecasted inventory quantities by product category, customer, different locations, warehouses etc. or being able to see many products forecasted quantities at once.


Versions: 

This was proven in V18, but the same logic would apply to earlier versions.

2
Avatar
Opusti
Avatar
Abraham Ismael Torales Salazar (aits)
Avtor Best Answer

Option 1


Step 1: Go to Inventory app, open Studio, and add a menu for report.stock.quantity model

Tip: From this page, you could also move the report menu inside any other menu.



Step 2: Inside the new menu page, set the next filter as favorite/default filter

Tip: In case you need it, you can also filter by forecasted receipts or deliveries




Now you can filter/group your report based on different parameters that belong to product template, product variant, date, company and/or warehouse


Example: Report for Product Category Furtniture/Office between September 1 and 30 in the Warehouse "YourCompany"



Tip: Using Studio, you could also add a pivot table view 



Example: Pivot table showing forecasted quantity in products in the category "Furtniture/Office" grouped by month and warehouse



Option 2

Step 1: Add the following models to Spreadhsheets using the action button from the list view

Make sure to add the appropiate filters before inserting the list in Spreadsheet



Models to insert in spreadsheets:

Model

Technical Model Name

Filters

Locations

stock.quant

"Internal Locations"

"In Stock"

Moves Analysis

stock.move

"Incoming"

Status is not in "Done" or "Cancelled"

Moves Analysis

stock.move

"Outgoing"

Status is not in "Done" or "Cancelled"


💡

Make sure to add as many rows (for each table) as you think you will need, depending on the volume of your operations.

​

You can change the name of the sheets and the lists to easier identify each table and manage the Spreadhsheets formulas.


Example:



Step 2: Add a new sheet and manually create a table with the following columns 

  1. Date
  2. All Dates
  3. Pending Incoming
  4. Pending Outgoing
  5. Current Stock
  6. Accumulated Incoming
  7. Accumulated Outgoing
  8. Forecast



Use other 2 cells in the same sheet to stablish the Minimun Date and Maximun Date with the following formulas:


Cell

Formula

Explanation

Min Date

=ROUNDDOWN(

MIN(

FILTER('Incoming quantities'!A:A, 'Incoming quantities'!A:A>0),

FILTER('Outgoing quantities'!A:A, 'Outgoing quantities'!A:A>0), TODAY()

),0

)

Retrieves the minimum date value between the incoming and outgoing quantities table (the Date in both tables is stored in column A) and today.


This formula is ignoring the empty cells by applying the filter > 0, and rounding down to ignore the hours/minutes/seconds


This is based on field "date" in "Moves Analysis" model

Max Date

=ROUNDDOWN(

MAX(

FILTER('Incoming quantities'!A:A, 'Incoming quantities'!A:A>0),

FILTER('Outgoing quantities'!A:A, 'Outgoing quantities'!A:A>0)

),0

) + 10

Retrieves the maximum date value between the incoming and outgoing quantities table (the Date in both tables is stored in column A) and today.


This formula is ignoring the empty cells by applying the filter > 0, and rounding down to ignore the hours/minutes/seconds


The formula is adding 10 days more just to have a better looking graph


This is based on field "date" in "Moves Analysis" model


✅

Remember to format these cells as date

​


💡

If, for any reason, both tables (incoming and outgoing quantities) are empty, it will display value equal to zero, which is equal to Dec 30 1899. We will fix that later.

​

For the table generated in Step 2, add the following formulas and drag them down:



A

B

C

D

E

F

G

H

I

J

K

1

Date

All Dates

Pending Incoming

Pending Outgoing

Current Stock

Accumulated Incoming

Accumulated Outgoing

Forecast




2

=K2

=IF(K2=0,TODAY(),K2)

=SUMIFS('Incoming quantities'!F:F,ROUNDDOWN('Incoming quantities'!A:A),A2)

=SUMIFS('Outgoing quantities'!F:F,ROUNDDOWN('Outgoing quantities'!A:A),A2)

=SUM('Quantities in Stock'!D:D)

=C2

=D2

=IF(A2="","",$E$2+F2-G2)


Minimum Date

(Formula mentioned above)

3

=IF(B3>$K$3,"",B3)

=B2+1

Drag the previous formula down from here

Drag the previous formula down from here

Don't drag formula down

=F2+C3

=G2+D3

Drag the previous formula down from here


Maximum Date

Formula mentioned above)

4

Drag the previous formula down from here

Drag the previous formula down from here




Drag the previous formula down from here

Drag the previous formula down from here






Brief explanation:

  • K2 and K3 in the same sheet are the minimun and maximum dates respectively in my spreadsheet
  • Sheet "Incoming quantities" (list from Move Analysis model):
    • Column A: Dates for each pending receipt in Odoo. Rounding down the dates to ignore the hours/minutes/seconds
      • Field name: "date"
    • Column F: "Demand" quantities for each pending receipt in Odoo
      • Field name: "product_uom_qty"
  • Sheet "Outgoing quantities" (list from Move Analysis model):
    • Column A: Dates for each pending delivery in Odoo. Rounding down the dates to ignore the hours/minutes/seconds
      • Field name: "date"
    • Column F: "Demand" quantities for each pending delivery in Odoo
      • Field name: "product_uom_qty"
  • Sheet "Quantities in Stock" (list from Location Report model):
    • Column D: Inventoried Quantity
      • Field name "inventory_quantity_auto_apply"


Step 3: Add a graph to show the forecast based on date 




Step 4: Add global filters to filter the data you would like to see


Example of filters by location, product categories, and specific product.

Note: For locations, I stablished only one filter as "Intermediate location" for receipts and as "Source location" for deliveries, but you can create two independent filters to have more control over the location filter for receipts and deliveries. You can set one or more locations per filter at the same time, so you can see a report of one or more warehouses



💡

These are "Relation" filters; you can create anyone you want to filter any relational field that exists in the models we linked to the spreadsheets (Locations Report and Move Analysis), you just have to select the field in each table that is linked to the model selected for the filter. 

​

Final result: 



Explanation:

  • I currently have 100 units in my warehouse
  • I will deliver 20 units on Sept 15  Then I will have 80 forecasted units
  • I will receive 10 units on Sep 22  Then I will have 90 forecasted units
  • I will receive 50 units on Oct 01  Then I will have 140 forecasted units


Aditional: Add conditional formating 

In order to identify easier:

  • Today's date in column A and B
  • Any pending recepits/deliveries in column C and D
  • Current Stock in E2
  • The dates when the forecasted quantities are less than or equal to 0



✅

Remember to add as many rows as needed to show all the days between the minimum date and maximum date

​

4
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
How can I get a report on the quantity of products I have sold but not yet reserved? Solved
inventory report quantity forecast
Avatar
Avatar
1
jun. 25
1073
¿How can I display the total product quantity from different warehouses in Odoo e-commerce? V 16, 17
inventory ecommerce quickstart Quickstart
Avatar
Avatar
1
jun. 24
4050
Change delivery slip printed from the barcode sheet Solved
inventory report quickstart odoo16features
Avatar
1
sep. 23
2370
How can we access the inventory adjustment difference report? Solved
inventory report quickstart adjustments
Avatar
1
nov. 25
6068
[✅ SOLVED] Transfers Between Branches / Multi-Company Operations
inventory quickstart multi-company Quickstart V17.4
Avatar
Avatar
Avatar
Avatar
3
okt. 25
14883
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