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

Add a note/ Add a section in mrp.porduction

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
mrpsale.order.lineadd a sectionadd a note
2 Antwoorden
1056 Weergaven
Avatar
Guhan Dhamodiraswamy

hi i wanted to add the Add a note / Add a section in the mrp.production lines same as  the  sale.order 


Any help would be appreciated.  Thanks!


 

0
Avatar
Annuleer
Ard van Someren

Have you tried to create a server action to add a record?

Avatar
Cybrosys Techno Solutions Pvt.Ltd
Beste antwoord

Hi,

Please refer to the following links:

1. https://www.cybrosys.com/blog/how-to-add-a-section-and-note-for-a-custom-module-in-odoo-18

2. https://www.cybrosys.com/blog/how-to-add-a-section-and-note-for-a-custom-module-in-odoo-17


Hope it helps.

0
Avatar
Annuleer
Avatar
Jesing Rathod
Beste antwoord

Hello Guhan Dhamodiraswamy,




Try the following code.


1. Inherit mrp.production and line model:



from odoo import models, fields




class MrpProductionLine(models.Model):


    _inherit = 'mrp.production.line'




    display_type = fields.Selection([


        ('line_section', "Section"),


        ('line_note', "Note"),


    ], default=False)


2. Inherit XML view and added the fields

<!-- views/mrp_production_view.xml -->




<odoo>


  <record id="view_mrp_production_form_inherit_sections" model="ir.ui.view">


    <field name="name">mrp.production.form.inherit.sections</field>


    <field name="model">mrp.production</field>


    <field name="inherit_id" ref="mrp.mrp_production_form_view"/>


    <field name="arch" type="xml">


      <xpath expr="//field[@name='move_raw_ids']" position="attributes">


        <attribute name="context">{'default_display_type': False}</attribute>


      </xpath>




      <xpath expr="//field[@name='move_raw_ids']/tree" position="before">


        <header>


          <button name="add_section" string="Add a section" type="object" class="oe_highlight"/>


          <button name="add_note" string="Add a note" type="object"/>


        </header>


      </xpath>




      <xpath expr="//field[@name='move_raw_ids']/tree/field[@name='product_id']" position="before">


        <field name="display_type" invisible="1"/>


      </xpath>




      <xpath expr="//field[@name='move_raw_ids']/tree" position="attributes">


        <attribute name="decoration-muted">display_type != False</attribute>


      </xpath>


    </field>


  </record>


</odoo>



3. Add add_section and add_note Methods in the mrp.production:


def add_section(self):


        for order in self:


            order.move_raw_ids += self.env['mrp.production.line'].new({


                'display_type': 'line_section',


                'name': 'New Section',


            })




    def add_note(self):


        for order in self:


            order.move_raw_ids += self.env['mrp.production.line'].new({


                'display_type': 'line_note',


                'name': 'New Note',


            })



0
Avatar
Annuleer
Guhan Dhamodiraswamy
Auteur

Hi,
Thanks for the reply.
i am using odoo18 and there is no model called mrp.production.line

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
filter on many2many fields
stock mrp sale.order.line
Avatar
Avatar
1
mrt. 15
16565
¿Cómo puedo recorrer un campo one2many y sumar la cantidad de productos que tienen el mismo id en odoo versión 15?
mrp sale.order.line odoo.sh v15
Avatar
Avatar
1
okt. 23
3296
Forcing MO Creation regardless of product.product qty
mrp sale.order.line sale.order v15 MTO
Avatar
Avatar
1
aug. 23
2811
BOM in Sale Order lines Opgelost
python mrp sale.order.line bom v12
Avatar
1
sep. 20
4977
Sale to SaleOrderLine with 'Make to Order' was checked in ProductTemplate
sales mrp sale.order.line production odooV12
Avatar
Avatar
4
nov. 19
2863
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