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 access and view selection field in another model

Odoberať

Get notified when there's activity on this post

This question has been flagged
fieldsviewselectionodoo10.0
1 Odpoveď
21850 Zobrazenia
Avatar
Cameron

Hi

I've created and displayed a simple module that creates a selection drop down menu in sales.order .... Big smiley face :)

However ...  :(

Question 1 How do I display this value in stock.picking - None editable?

Question 2 How do  I display this value in account.invoice - and editable?


from odoo import fields, models

class SaleHoldNoteModel(models.Model):
    _inherit = 'sale.order'

    #Create new field containg note for shipping
    shipping_note = fields.Selection([
        ('oktoship', 'Ship'),
        ('awaitingpayment', 'Hold')], default='oktoship')


<?xml version="1.0" encoding="utf-8" ?>

<odoo>
  <record id="add_field_shipping_sales" model="ir.ui.view">
    <field name="name">shipping_hold</field>
    <field name="model">sale.order</field>
    <field name="inherit_id" ref="sale.view_order_form"/>
    <field name="arch" type="xml">
      <xpath expr="//field[@name='payment_term_id']" position="after">
        <field name="shipping_note"/>
      </xpath>
    </field>
  </record>
</odoo>


I tried creating a copy of the above but keep getting field not known 

Do I have to transfer the field and value between models?

Odoo10rUS


0
Avatar
Zrušiť
Avatar
Denis Baranov
Best Answer

First of all, you need to define a link between an invoice (picking) and an order. For invoice you may use the field 'origin' or modify the function _prepare_invoice of sale.order. E.g.:

@api.multi
@api.depends("origin")
def _compute_order_id(self):
    for invoice in self:
         order_ids = self.env["sale.order"].search([("name","=",invoice.origin)])
         if len(order_ids) > 0:
invoice.order_id = order_ids[0]
order_id = fields.Many2one("sale.order",compute=_compute_order_id, store=True) 

Then, use the 'related' attribute in the corresponding models.

E.g. for 'account.invoice':

shipping_note = fields.Selection(related="order_id.shipping_note",store=True) 
#store= True means that value would be saved in an invoice as well as in a sales order and may be used as a search criteria

By default it would be editable. To make it readonly, use the standard xml attribute readonly="1"

 


1
Avatar
Zrušiť
Cameron
Autor

Sir.

Many thanks.

I think I'm starting to understand my confusion. Some times I can get links - just by editing reports.

eg - In delivery report <t t-if="o.sale_id.partner_invoice_id.property_product_pricelist.id == 1">

But I ASSuME this is purely "luck" - because the link already exists for the purpose of "delivery"?

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 can I make a one2many field a selection field in view Solved
fields selection
Avatar
Avatar
Avatar
3
okt 25
18379
Selection fields inherit vs. statusbar widget
selection odoo10.0
Avatar
Avatar
1
feb 19
4698
How to pass values to a method that defines selection for multiple fields?
fields selection
Avatar
0
apr 15
4917
How To Change Field Value According To Selection Field Openerp?
fields selection
Avatar
Avatar
1
mar 15
10378
Why in Selection Field Only Key is Store in Database Not the Value ? Solved
fields database selection
Avatar
Avatar
1
dec 24
2503
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