Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profitorganisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

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

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

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

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
mrpbomoperationsManufacturingversion14
2 Antwoorden
8115 Weergaven
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
Annuleer
Chris TRINGHAM

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

Avatar
Ray Carnes (ray)
Beste antwoord


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
Annuleer
Avatar
Chris TRINGHAM
Beste antwoord

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
Annuleer
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!

Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
Shared BOM Operations w/out Duplicates
mrp bom operations v14
Avatar
Avatar
1
sep. 21
3181
Subcontracting Product with multiple BoM
mrp bom
Avatar
0
okt. 25
1629
Manufacturing several items at a time
mrp Manufacturing
Avatar
0
feb. 21
2382
BOM with some item quantity which not depends of the whole quantity to produce Opgelost
mrp bom
Avatar
Avatar
1
jun. 25
5497
How to show BOM matrix with quantity of used product?
mrp bom
Avatar
0
feb. 19
4570
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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