Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

Work in Progress - version 14

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
WIPv14
1 Răspunde
4564 Vizualizări
Imagine profil
Community Question

I believe version 14 no longer supports WIP - it can tell me BEFORE I start what the cost will be and AFTER I finish what the cost was, but not DURING manufacturing.

I know Landed Costs can inject overhead and labor, but that's not what I want either.

Does anyone have any recommendations?

0
Imagine profil
Abandonează
Imagine profil
Ray Carnes (ray)
Cel mai bun răspuns

Note: This answer is an approach, not a solution, it is meant to illustrate a conceptual proof of concept.  


Given a BoM that shows PRODUCT (component) MANUFACTURING SERVICES (labor) and OPERATIONS (workcenters):

Consume half the components:

Work half the labor:


Use the work centers for half the time:

See that the WIP is shown for 50% of the BoM Cost:


How?

1. Leverage https://apps.odoo.com/apps/modules/14.0/mrp_services/

2. Create the following custom fields:


for record in self:
x_product_wip = 0.0
for component in record.move_raw_ids:
x_product_wip = x_product_wip + component.product_id.standard_price * component.quantity_done
record['x_product_wip'] = x_product_wip



for record in self:
x_workcenter_wip = 0
for workorder in record.workorder_ids:
x_workcenter_wip = x_workcenter_wip + workorder.workcenter_id.costs_hour * workorder.duration / 60
record['x_workcenter_wip'] = x_workcenter_wip


for record in self:
x_services_wip = 0.0
for service in record.x_service_product_ids:
x_services_wip = x_services_wip + service.x_burden
record['x_services_wip'] = x_services_wip



for record in self:
record['x_total_wip'] = record.x_workcenter_wip + record.x_services_wip + record.x_product_wip


for record in self:
if record.qty_produced > 0:
record['x_item_wip'] = record.x_total_wip / record.qty_produced
else:
record['x_item_wip'] = 0


3. Add these custom fields to the UI:


Note that the WIP that will be calculated is NOT always 100% correct with this approach – it uses the CURRENT price of the components, not the ACTUAL cost, so the ACTUAL WIP is what will be reported normally by Odoo at the end of Manufacturing. 

This approach should be understood and improved before being used.  It has been tested only as a proof of concept.  Contact Odoo or your Odoo Partner for help.


1
Imagine profil
Abandonează
Ray Carnes (ray)

Please also see https://www.odoo.com/forum/help-1/why-is-it-important-to-model-measure-wip-work-in-progress-in-manufacturing-is-this-the-only-way-to-measure-overhead-costs-168395

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

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

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
Odoo14 alternative for Automated Translations through Gengo API module
v14
Imagine profil
Imagine profil
Imagine profil
Imagine profil
3
sept. 25
3641
Odoo Community v14 Slow on High-End Servers, Fast on i5/i7 PCs
v14
Imagine profil
0
aug. 25
1082
How to Managing Birthdate and Age in Odoo
v14
Imagine profil
Imagine profil
1
aug. 25
3429
Update Initial Stock of Product using XMLRPC API [Odoo14] Rezolvat
v14
Imagine profil
Imagine profil
Imagine profil
2
iul. 25
9003
"AttributeError: 'NoneType' object has no attribute 'CompileError'" configuring document Layout - Odoo 14
v14
Imagine profil
Imagine profil
Imagine profil
2
iul. 25
5349
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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