Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

Adding custom field in Sale order line to show values into Purchase order line

Odoberať

Get notified when there's activity on this post

This question has been flagged
purchasesalesfunction
3 Replies
2450 Zobrazenia
Avatar
Usama

I want to add a custom field in sale order line and want to show its value in purchase order line. It cannot get value from sale order line because when I apply debugger on 

def _prepare_procurement_values(self, group_id=False):
     res = super()._prepare_procurement_values(group_id) 

it will go only there then break but not execute  

def _prepare_purchase_order_line(self, product_id, product_qty, product_uom, company_id, values, po):
    res = super()._prepare_purchase_order_line(product_id, product_qty, product_uom, company_id, values, po)

that function.

What's the solution anyone suggest me?

0
Avatar
Zrušiť
Christoph Farnleitner

Next time please use punctuation in your sentences and format your code so your question is actually readable.

Avatar
D Enterprise
Best Answer

Hii,

please try this 
models/stock_rule.py

from odoo import models


class StockRule(models.Model):

    _inherit = 'stock.rule'


    def _prepare_purchase_order_line(

        self, product_id, product_qty, product_uom, company_id, values, po

    ):

        res = super()._prepare_purchase_order_line(

            product_id, product_qty, product_uom, company_id, values, po

        )

        # Pass custom field to PO line

        if values.get('x_custom_ref'):

            res['x_custom_ref'] = values['x_custom_ref']

        return res


i hope it is usefull

0
Avatar
Zrušiť
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

Hi,


You're trying to pass a custom field from the Sales Order Line to the corresponding Purchase Order Line, but during the procurement process, your custom value isn’t flowing through—even though you extended _prepare_procurement_values() and _prepare_purchase_order_line().


Try with the following.

1- Add field to sale.order.line

x_reference_code = fields.Char("Reference Code")


2-Extend _prepare_procurement_values() in sale.order.line

def _prepare_procurement_values(self, group_id=False):

    res = super()._prepare_procurement_values(group_id)

    res.update({

        'x_reference_code': self.x_reference_code,

    })

    return res


3- Extend _prepare_purchase_order_line() in purchase.order


def _prepare_purchase_order_line(self, product_id, product_qty, product_uom, company_id, values, po):

    res = super()._prepare_purchase_order_line(product_id, product_qty, product_uom, company_id, values, po)

   

    if 'x_reference_code' in values:

        res.update({

            'x_reference_code': values['x_reference_code'],

        })

    return res


Also, make sure purchase.order.line has this custom field.

x_reference_code = fields.Char("Reference Code")


Follow the three-step override above, and ensure the correct routes (Make To Order, Dropship, etc.) are active on your sale order line.


Hope it helps



0
Avatar
Zrušiť
Avatar
Christoph Farnleitner
Best Answer

See for example https://github.com/odoo/odoo/blob/18.0/addons/sale/models/sale_order_line.py#L1445 and https://github.com/odoo/odoo/blob/18.0/addons/sale_project/models/sale_order_line.py#L474, i.e.

def _prepare_procurement_values(self, group_id=False):
    """ Prepare specific key for moves or other components that will be created from a stock rule
        coming from a sale order line. This method could be override in order to add other custom key that could
        be used in move/po creation.
        """
        return {}


_prepare_procurement_values() must have a return value (dict). Same goes for _prepare_purchase_order_line().

0
Avatar
Zrušiť
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrácia
Related Posts Replies Zobrazenia Aktivita
How to add products up to the available stock quantity in my store?
purchase sales
Avatar
Avatar
Avatar
2
aug 25
2488
Multi Company Transfer Solved
purchase sales
Avatar
Avatar
1
júl 25
1501
Report for Sold Product Quantities & Sizes in Sales Orders
purchase sales
Avatar
Avatar
1
feb 25
2279
adapting selling prices based on the cost of THE products sold and the public cost that could be the selling price referred into the product characteristic Solved
purchase sales
Avatar
Avatar
Avatar
2
jún 23
3876
Can I config selected default vendor for customer
purchase sales
Avatar
Avatar
1
aug 19
4074
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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