Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

How to access and view selection field in another model

Subscriure's

Get notified when there's activity on this post

This question has been flagged
fieldsviewselectionodoo10.0
1 Respondre
21832 Vistes
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
Descartar
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
Descartar
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!

Registrar-se
Related Posts Respostes Vistes Activitat
how can I make a one2many field a selection field in view Solved
fields selection
Avatar
Avatar
Avatar
3
d’oct. 25
18331
Selection fields inherit vs. statusbar widget
selection odoo10.0
Avatar
Avatar
1
de febr. 19
4661
How to pass values to a method that defines selection for multiple fields?
fields selection
Avatar
0
d’abr. 15
4908
How To Change Field Value According To Selection Field Openerp?
fields selection
Avatar
Avatar
1
de març 15
10362
Why in Selection Field Only Key is Store in Database Not the Value ? Solved
fields database selection
Avatar
Avatar
1
de des. 24
2488
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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