Skip to Content
Odoo Menu
  • Log ind
  • Prøv gratis
  • Apps
    Økonomi
    • Bogføring
    • Fakturering
    • Udgifter
    • Regneark (BI)
    • Dokumenter
    • e-Signatur
    Salg
    • CRM
    • Salg
    • POS Butik
    • POS Restaurant
    • Abonnementer
    • Udlejning
    Hjemmeside
    • Hjemmesidebygger
    • e-Handel
    • Blog
    • Forum
    • LiveChat
    • e-Læring
    Forsyningskæde
    • Lagerbeholdning
    • Produktion
    • PLM
    • Indkøb
    • Vedligeholdelse
    • Kvalitet
    HR
    • Medarbejdere
    • Rekruttering
    • Fravær
    • Medarbejdersamtaler
    • Anbefalinger
    • Flåde
    Marketing
    • Markedsføring på sociale medier
    • E-mailmarketing
    • SMS-marketing
    • Arrangementer
    • Automatiseret marketing
    • Spørgeundersøgelser
    Tjenester
    • Projekt
    • Timesedler
    • Udkørende Service
    • Kundeservice
    • Planlægning
    • Aftaler
    Produktivitet
    • Dialog
    • Godkendelser
    • IoT
    • VoIP
    • Vidensdeling
    • WhatsApp
    Tredjepartsapps Odoo Studio Odoo Cloud-platform
  • Brancher
    Detailhandel
    • Boghandel
    • Tøjforretning
    • Møbelforretning
    • Dagligvarebutik
    • Byggemarked
    • Legetøjsforretning
    Mad og værtsskab
    • Bar og pub
    • Restaurant
    • Fastfood
    • Gæstehus
    • Drikkevareforhandler
    • Hotel
    Ejendom
    • Ejendomsmægler
    • Arkitektfirma
    • Byggeri
    • Ejendomsadministration
    • Havearbejde
    • Boligejerforening
    Rådgivning
    • Regnskabsfirma
    • Odoo-partner
    • Marketingbureau
    • Advokatfirma
    • Rekruttering
    • Audit & certificering
    Produktion
    • Tekstil
    • Metal
    • Møbler
    • Fødevareproduktion
    • Bryggeri
    • Firmagave
    Heldbred & Fitness
    • Sportsklub
    • Optiker
    • Fitnesscenter
    • Kosmetolog
    • Apotek
    • Frisør
    Håndværk
    • Handyman
    • IT-hardware og support
    • Solenergisystemer
    • Skomager
    • Rengøringsservicer
    • VVS- og ventilationsservice
    Andet
    • Nonprofitorganisation
    • Miljøagentur
    • Udlejning af billboards
    • Fotografi
    • Cykeludlejning
    • Softwareforhandler
    Gennemse alle brancher
  • Community
    Få mere at vide
    • Tutorials
    • Dokumentation
    • Certificeringer
    • Oplæring
    • Blog
    • Podcast
    Bliv klogere
    • Udannelselsesprogram
    • Scale Up!-virksomhedsspillet
    • Besøg Odoo
    Få softwaren
    • Download
    • Sammenlign versioner
    • Udgaver
    Samarbejde
    • Github
    • Forum
    • Arrangementer
    • Oversættelser
    • Bliv partner
    • Tjenester til partnere
    • Registrér dit regnskabsfirma
    Modtag tjenester
    • Find en partner
    • Find en bogholder
    • Kontakt en rådgiver
    • Implementeringstjenester
    • Kundereferencer
    • Support
    • Opgraderinger
    Github Youtube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Få en demo
  • Prissætning
  • Hjælp

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

  • CRM
  • e-Commerce
  • Bogføring
  • Lager
  • PoS
  • Projekt
  • MRP
All apps
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Hjælp

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

Tilmeld

Få besked, når der er aktivitet på dette indlæg

Dette spørgsmål er blevet anmeldt
mrpbomoperationsManufacturingversion14
2 Besvarelser
8106 Visninger
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
Kassér
Chris TRINGHAM

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

Avatar
Ray Carnes (ray)
Bedste svar


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
Kassér
Avatar
Chris TRINGHAM
Bedste svar

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
Kassér
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!

Tilmeld dig
Related Posts Besvarelser Visninger Aktivitet
Shared BOM Operations w/out Duplicates
mrp bom operations v14
Avatar
Avatar
1
sep. 21
3177
Subcontracting Product with multiple BoM
mrp bom
Avatar
0
okt. 25
1627
Manufacturing several items at a time
mrp Manufacturing
Avatar
0
feb. 21
2381
BOM with some item quantity which not depends of the whole quantity to produce Løst
mrp bom
Avatar
Avatar
1
jun. 25
5493
How to show BOM matrix with quantity of used product?
mrp bom
Avatar
0
feb. 19
4566
Community
  • Tutorials
  • Dokumentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Oversættelser
Tjenester
  • Odoo.sh-hosting
  • Support
  • Opgradere
  • Individuelt tilpasset udvikling
  • Uddannelse
  • Find en bogholder
  • Find en partner
  • Bliv partner
Om os
  • Vores virksomhed
  • Brandaktiver
  • Kontakt os
  • Stillinger
  • Arrangementer
  • Podcast
  • Blog
  • Kunder
  • Juridiske dokumenter • Privatlivspolitik
  • Sikkerhedspolitik
الْعَرَبيّة 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 er en samling open source-forretningsapps, der dækker alle dine virksomhedsbehov – lige fra CRM, e-handel og bogføring til lagerstyring, POS, projektledelse og meget mere.

Det unikke ved Odoo er, at systemet både er brugervenligt og fuldt integreret.

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