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

How to change a function and pass a new value from a custom field ? [Odoo v8]

Odoberať

Get notified when there's activity on this post

This question has been flagged
pythoncustomnewbiepassingodooV8
5759 Zobrazenia
Avatar
PopUp House

Hello,

I'm trying to pass a new value in an existant function and it's doesn't work.

I create a new module that inherits purchase.order and stock (stock.picking). I create a custom field in each new class. So, now I need to use a existing function in purchase.order to pass my new field value for account.invoice (I get to make this.. example below) and I need to pass this field value in purchase.order to stock.picking.

The function (purchase.order passing to stock.picking and stock.moves):

def action_picking_create(self, cr, uid, ids, context=None):

    for order in self.browse(cr, uid, ids):

        picking_vals = {

            'picking_type_id': order.picking_type_id.id,

            'partner_id': order.partner_id.id,

            'date': order.date_order,

            'origin': order.name,

            'my_new_field': order.my_new_field,

            }

        picking_id = self.pool.get('stock.picking').create(cr, uid, picking_vals, context=context)

        self._create_stock_moves(cr, uid, order, order.order_line, picking_id, context=context)

How can I make this ?

I tried with super(myclass, self).action_picking_create(self, cr, uid, ids, context=context) but I'm a newbie in python.

For another exemple, I found an answer...

My function

 def _prepare_invoice(self, cr, uid, order, line_ids, context=None):

        old_vals = super(myclass, self)._prepare_invoice(cr, uid, order, line_ids, context=context)

        old_vals['my_new_field_x'] = order.my_new_field_x or 'This Work'

        return old_vals

Original function (in purchase.order passing to account_invoice):

def _prepare_invoice(self, cr, uid, order, line_ids, context=None):

        journal_ids = self.pool['account.journal'].search( cr, uid, [('type', '=', 'purchase'), ('company_id', '=', order.company_id.id)], limit=1)

        if not journal_ids:

            raise osv.except_osv(

                _('Error!'),

                _('Define purchase journal for this company: "%s" (id:%d).') % / (order.company_id.name, order.company_id.id))

        return {

            'name': order.partner_ref or order.name,

            'reference': order.partner_ref or order.name,

            'account_id': order.partner_id.property_account_payable.id,

            'type': 'in_invoice',

            'partner_id': order.partner_id.id,

            'currency_id': order.currency_id.id,

            'journal_id': len(journal_ids) and journal_ids[0] or False,

            'invoice_line': [(6, 0, line_ids)],

            'origin': order.name,

            'fiscal_position': order.fiscal_position.id or False,

            'payment_term': order.payment_term_id.id or False,

            'company_id': order.company_id.id,

             }

Thanks for you help.

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
[8.0]How to confirm an element's state from: action_confirm (MRP_REPAIR)
python odooV8
Avatar
1
máj 21
4977
How to save data in readonly field in openerp?
python odooV8
Avatar
Avatar
Avatar
Avatar
4
okt 19
10888
How to multiply sequence by non-int Solved
python odooV8
Avatar
Avatar
1
jan 18
10325
Employee commission in salary rules
python odooV8
Avatar
Avatar
1
feb 17
5980
How can I create a selection field that depend to other selection
python odooV8
Avatar
0
jan 17
5238
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