Skip to Content
Menu
This question has been flagged
4 Replies
10109 Views

When I created a sales order for a product the forecasted quantity is decreased and when I create a purchase order for the same product, the forecasted quantity is increased.

Is it possible to view both, separately?

Avatar
Discard
Hi,

Is it possible to make a field that list only the quantity that should be delivered (Outgoing qty).

Kind Regards

On Thu, Oct 4, 2018 at 2:56 PM Techneith <info@techneith.com> wrote:

A new answer on Forecasted Quantity has been posted. Click here to access the post :

See post

--
Techneith

Sent by Odoo S.A. using Odoo.

Hi Ray Carnes,

Can I do this modifications using  studio application.

Currently I am using odoo11 in odoo.sh platform.

Kind regards
Salih

On Thu, Oct 4, 2018 at 10:59 PM Ray Carnes (ray) <ray@odoo.com> wrote:

A new answer on Forecasted Quantity has been posted. Click here to access the post :

See post

Ray Carnes

Business Analyst - Odoo Inc.
Greater Los Angeles, CA 92346


Direct Line (UTC-8): +1.909.864.4576

Sent by Odoo Inc. using Odoo.

Best Answer

The names of the fields you want are:

incoming_qty = what has been purchased (confirmed Purchase Orders) but not yet received.

outgoing_qty = what is sold (confirmed Sales Orders) but not yet delivered.


Inherit and override product.template.stock.tree.inherit and add them:

  <field name="incoming_qty"/>
  <field name="outgoing_qty"/>


You will then see four Quantities per product:


Avatar
Discard
Best Answer

Hi Salih,

Forecasted quantity of products you can sell for a specific warehouse or location. It is defined as the Quantity on Hand - Future Delivery Orders + Future incoming shipments + Future manufactured units.

In your case you can define new computed fields to find forecasted for sale order and same for purchase order,  you find this difference based on destination and source locations. 

Avatar
Discard
Best Answer

Forecasted quantity is the the status of your inventory based on what purchases and sales are done. You can build a custom view to compute the total items not shipped in sales and also the items purchased but not delivered. This is something that you can get customized by doing a count on your purchased orders for that product and on the sales orders for that product.

Avatar
Discard