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č

Why are Manufacturing Operations not selectable from a pre-defined list (they are typed in) in V14

Naroči se

Get notified when there's activity on this post

This question has been flagged
mrpbomoperationsManufacturingversion14
2 Odgovori
8117 Prikazi
Avatar
Craig Steffen

I am new to Odoo and have been exploring it's potential for use in our manufacturing business. Unfortunately I started researching under version 13 only about a few weeks before version 14 came out (along with the many major improvements/changes to MRP), so there are new things for me to learn.


I see how Operations is now a tab under the BOM. When adding an operation, it appears that you simply type in text (create one unique to that BOM) and then select a predefined work center. Both the operation and work center are required. 


What I don't understand is why the Operation isn't a drop down menu. It would seem that you should set up the standard operations under Configuration and then when you add operations to specific BOMs it would reference that list. That is how the work centers appears to work. I don't understand the purpose of even having operations under Configuration if you have to manually type them in each time to a BOM.


Adding operations is now so flexible that it is cumbersome! Am I missing something in how this is supposed to work in V14? 

3
Avatar
Opusti
Chris TRINGHAM

In Odoo 15 it's possible to copy an existing operation

Avatar
Ray Carnes (ray)
Best Answer


It is possible to customize Odoo and not that complicated to provide a way to copy an existing Operation:

1. Create a Custom Field to link an Operation to another Operation:




2. Create a Custom Field that will "listen" for Users selecting an Operation and will "copy" the information:




for record in self:
if record.x_existing_op_id:
existing_op = record.x_existing_op_id
record['name'] = existing_op.name
record['workcenter_id'] = existing_op.workcenter_id.id
record['worksheet_type'] = existing_op.worksheet_type
record['note'] = existing_op.note
record['time_mode'] = existing_op.time_mode
record['time_cycle_manual'] = existing_op.time_cycle_manual
record['time_mode_batch'] = existing_op.time_mode_batch



3. Add the two fields to the User Interface with a Custom View:


<field name="name" position="replace">
<field name="x_update_operation" invisible="1"/>
<field name="x_existing_op_id" widget="selection" />
<p>or</p>
<field name="name" string="New Operation"/>
</field>


Then you get this:



These seven properties of the existing Operation are copied:



Note:  This is a proof of concept, designed to help you understand an approach that might be useful.  You may need to modify the code to suit your own needs.  Possible enhancements are to limit operations if they have already been selected, or if they are not compatible with the product you are creating.  This has been tested very quickly and some of the Operation information may not be moved over - in this case simply add any missing fields.  Odoo or an Odoo Partner can help you here if you don't have the skills or time to do this yourself.

2
Avatar
Opusti
Avatar
Chris TRINGHAM
Best Answer

You can copy another BOM, so it is possible to setup "template" BOMs with standard operations (and a list of components if that's what you want) and copy those.

1
Avatar
Opusti
Ray Carnes (ray)

This is a good solution. You can also create a custom field on the BoM (which doesn't even need components) to differentiate it from a regular BoM and even show these "templates" in a different Menu.

Ramzi Khouri

Excellent feedback. In setting up a BoM template the operational steps are not copies. Any thoughts how to duplicate the template Bom with the operation AND the steps?

Chris TRINGHAM

You're correct that Operation Steps aren't copied. That would need some customization. Or maybe one day Odoo will add this as a feature!

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
Shared BOM Operations w/out Duplicates
mrp bom operations v14
Avatar
Avatar
1
sep. 21
3183
Subcontracting Product with multiple BoM
mrp bom
Avatar
0
okt. 25
1630
Manufacturing several items at a time
mrp Manufacturing
Avatar
0
feb. 21
2385
BOM with some item quantity which not depends of the whole quantity to produce Solved
mrp bom
Avatar
Avatar
1
jun. 25
5499
How to show BOM matrix with quantity of used product?
mrp bom
Avatar
0
feb. 19
4571
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