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
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Managament
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Food
    • 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
    Others
    • 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
  • Help

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 keep multiple One2many fields on the same model [EDIT]

Odoberať

Get notified when there's activity on this post

This question has been flagged
one2manyrelationalduplication
2 Replies
13580 Zobrazenia
Avatar
arthur

I opened a question yesterday (https://www.odoo.com/pt_BR/forum/help-1/question/how-to-keep-multiple-many2many-fields-on-the-same-model-145401) about how to have multiple Many2many fields. Now I am encountering the same problem with One2many fields, but can't get that right because I can't inform table_name as a relation.

My two models are the following:

class SubscriptionBasket(models.Model):
    _name="subscription.basket"
    name = fields.Char("Nome", required=True)
    date_start = fields.Date("Data Inicial", required=True)
    date_end = fields.Date("Data Final", required=True)
    sales_applied = fields.One2many(
        string=u'Vendas Aplicadas',
        comodel_name='sale.order',
        inverse_name='basket_id',
    )
    legumes = fields.One2many(
        string=u'Legumes',
        comodel_name='subscription.basket.line',
        inverse_name='basket_id',
    )
    frutas = fields.One2many(
        string=u'Frutas',
        comodel_name='subscription.basket.line',
        inverse_name='basket_id',
    )
    verduras = fields.One2many(
        string=u'Verduras',
        comodel_name='subscription.basket.line',
        inverse_name='basket_id',
    )
    temperos = fields.One2many(
        string=u'Temperos',
        comodel_name='subscription.basket.line',
        inverse_name='basket_id',
    )

class SubscriptionBasketItem(models.Model):
    _name = "subscription.basket.line"

    name = fields.Char("Itens da Cesta")
    basket_id = fields.Many2one(
        string=u'Cesta',
        comodel_name='subscription.basket',
    )

    product_id = fields.Many2one(
        comodel_name='product.product',
        string='Produto',
    )

    min_quantity = fields.Integer("Quantidade Mínima Disponível", default = 0)

When assigning different subscription.basket.line's to legumes fields to a subscription.basket record, for example, after creating the record all fields will have the same values, which is not the behavior I expect.  How do I get this right on One2many fields, so each field will have its own list of subscription.basket.line itens?

As an example, I overwrote the create function to get logs:

@api.model
def create(self, vals):
    _logger.info("Vals received on creation: %s", vals)
    res = super(SubscriptionBasket, self).create(vals)
    _logger.info("Field temperos.product_id on creation response: %s", res.temperos.product_d)
    return res


Then, when creating a record, informing a product just to the fields "legumes", I get the following log for the vals I received:

    Vals received on creation: {'date_end': '2019-02-06', 'name': 'Cesta', 'date_start': '2019-02-05', 'legumes': [[0,     'virtual_609', {'product_id': 1000, 'min_quantity': 0}]]}

And the following log for the field "temperos", which I would expect to be empty, on the creation response:

   Field temperos.product_id on creation response: product.product(1000,)


0
Avatar
Zrušiť
Avatar
La Jayuhni Yarsyah
Best Answer

Hi,,

maybe you can use related or compute fields

legumes = fields.One2many(
    string=u'Legumes',
    comodel_name='subscription.basket.line',
    inverse_name='basket_id',
)
frutas = fields.One2many(
    string=u'Frutas',
    comodel_name='subscription.basket.line',
    related="legumes",
)
verduras = fields.One2many(
    string=u'Verduras',
    comodel_name='subscription.basket.line',
    compute="_compute_value"
)
temperos = fields.One2many(
    string=u'Temperos',
    comodel_name='subscription.basket.line',
    compute="_compute_value"
)

def _compute_value(self):
    for rec in self:
        rec.temperos = rec.legumes


2
Avatar
Zrušiť
arthur
Autor

Sorry, I think that I miss explained myself. Fields containing always the same values is the current behavior, but is not what I expect. My intent is to each field to have its own list of "subscription.basket.line" itens.

La Jayuhni Yarsyah

So you must define some unique criteria to identify the record based on those fields wich related to subscription.basket.line

For ex:

class SubscriptionBasketItem(models.Model):

_name = "subscription.basket.line"

# **** Your fields

data_type = fields.Selection([('legumes','Legumes'), ('frutas','Frutas'), ('verduras','Verduras'), ('temperos','Temperos')], required=True, string="Some Type")

then you can write normal one2many fields like this in SubscriptionBasket model

legumes = fields.One2many(

string=u'Legumes',

comodel_name='subscription.basket.line',

inverse_name='basket_id',

domain=[('data_type','=','legumes')]

)

frutas = fields.One2many(

string=u'Frutas',

comodel_name='subscription.basket.line',

inverse_name='basket_id',

domain=[('data_type','=','frutas')]

)

verduras = fields.One2many(

string=u'Verduras',

comodel_name='subscription.basket.line',

inverse_name='basket_id',

domain=[('data_type','=','verduras')]

)

temperos = fields.One2many(

string=u'Temperos',

comodel_name='subscription.basket.line',

inverse_name='basket_id',

domain=[('data_type','=','temperos')]

)

and in view.xml maybe you can pass a default field context

for example

<field name="temperos" context="{'default_data_type':'temperos'}"/>

Regards

La Jayuhni Yarsyah

arthur
Autor

I worked just as I wanted, thank you! If you past this last comment on an answer bellow, I will be glad to mark it

Avatar
Miguel Da Silva
Best Answer

Hello, you are from Brazil, right? 

I to hire someone with Odoo Experience, are you interested? 

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 prefill One2many -> Many2one ? Solved
one2many relationship relational
Avatar
Avatar
1
sep 17
4917
How to prefill One2many -> Many2one ?
one2many relationship relational
Avatar
0
apr 16
9
One2many or Many2many fields Inherited model
one2many inherit many2many relational
Avatar
0
feb 21
4409
Adding relational fields Solved
many2one one2many relational foreignkey
Avatar
Avatar
1
apr 18
6801
how pass value to on2many field from parent form via context
one2many
Avatar
Avatar
1
jan 25
2673
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