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

Synchronize lot_id information in purchase orders and stock picking

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
pickinglinepurchase_orderodoo11
1 Beantwoorden
5872 Weergaven
Avatar
Daniele Morelli

Hello, i'm using odoo11 with lot traceability activated.

I wrote a custom method so that the lot number of a received product is automatically valorized in the stock.picking model, as soon as the user validates the purchase order, something like this:

class CustomPicking(models.Model):
    _inherit = 'stock.picking'
    _name = 'stock.picking'
    
    @api.multi
    def button_validate(self):  
        for picking in self:  
            for line in picking.move_line_ids:
                #omitted code that calculates a new lot number
                line.lot_name = generated_lot_number
            return super(CustomPicking, self).button_validate()

When the user creates a new Vendor Bill from the purchase order, i'd like the lot number to be automatically valorized with the generated value that was set up in the line of the stock.picking model.

After a bit of research i found that I have to override the method _prepare_invoice_line_from_po_line

class CustomInvoice(models.Model):
    _inherit = 'account.invoice'
    _name = 'account.invoice'    

    @api.multi def _prepare_invoice_line_from_po_line(self, line): data = super(CustomInvoice,self)._prepare_invoice_line_from_po_line(line) #do something with data
        return data

The problem is that the "line" object in this method refers to the purchase_order_line model, and in that model my custom lot_id is still not valorized.

So i'd need to access the respective puchase_order_line instance from the stock_picking_line, but i cannot find a way to do so... (i'd have expected to find some relational field in one of the two models/tables, but unless i missed something i could not find it).

Do you have some suggestions about how could I achieve that?

Thanks!

0
Avatar
Annuleer
Avatar
faOtools
Beste antwoord

Hi,

have a look at the stock.py of the module 'purchase' https://github.com/odoo/odoo/blob/11.0/addons/purchase/models/stock.py

Here in stock.move you have 'purchase_line_id'.

1
Avatar
Annuleer
Daniele Morelli
Auteur

Hi, thank you for the answer. I still needed to do some dirty tricks to get everything to work, but i managed to do what i wanted. Cheers

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
Analytic account from PO to picking line Opgelost
picking purchase_order move_lines
Avatar
Avatar
1
dec. 22
4725
Can I sort the lines of an order by product category?
line purchase_order category
Avatar
Avatar
1
jul. 19
3810
Set our Customized report to default on send by email button in odoo [ Purchase Order ] Opgelost
email purchase_order odoo11
Avatar
Avatar
1
jan. 19
5400
[ODOO 11] Checking stock before purchase order creation
stock sale purchase_order odoo11
Avatar
Avatar
Avatar
4
jan. 20
6401
Error when trying to import Purchase Orders into Odoo Opgelost
purchase_order order.line odoo odoo11
Avatar
Avatar
1
jan. 19
5690
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