İçereği Atla
Odoo Menü
  • Portal
  • Ücretsiz deneyin
  • Uygulamalar
    Finans
    • Muhasebe
    • Faturalama
    • Masraf Yönetimi
    • Elektronik Çizelge (BI)
    • Belgeler
    • İmza
    Satış
    • Müşteri İlişkileri Yönetimi (CRM)
    • Satış
    • Satış Noktası Mağaza
    • Satış Noktası Restoran
    • Abonelikler
    • Kiralama
    Web Sitesi
    • Web Sitesi Oluşturucu
    • eTicaret
    • Blog
    • Forum
    • Canlı Sohbet
    • eÖğrenme
    Tedarik Zinciri
    • Envanter
    • Üretim
    • Ürün Yaşam Döngüsü Yönetimi
    • Satın Alma
    • Bakım
    • Kalite
    İnsan Kaynakları
    • Çalışanlar
    • İşe Alım
    • İzin
    • Değerlendirme
    • Referans
    • Filo Yönetimi
    Pazarlama
    • Sosyal Medyada Pazarlama
    • E-posta ile Pazarlama
    • SMS ile Pazarlama
    • Etkinlikler
    • Pazarlama Otomasyonu
    • Anket
    Hizmetler
    • Proje Yönetimi
    • Çalışma Çizelgeleri
    • Saha Hizmeti
    • Yardım Masası
    • Planlama
    • Randevular
    Verimlilik
    • Sohbet
    • Onay
    • Nesnelerin İnterneti
    • VoIP
    • Bilgi Bankası
    • WhatsApp
    Üçüncü taraf uygulamalar Odoo Stüdyo Odoo Bulut Platformu
  • Sektörler
    Perakende satış
    • Kitapçı
    • Giyim Mağazası
    • Mobilya Mağazası
    • Gıda Marketi
    • Hırdavat Dükkanı
    • Oyuncak Dükkanı
    Gıda ve Konaklama
    • Bar ve Pub
    • Restoran
    • Fast Food Restoranı
    • Konuk Evi
    • İçecek Distribütörü
    • Otel
    Gayrimenkul
    • Emlak Acentesi
    • Mimarlık Firması
    • İnşaat
    • Emlak Yönetimi
    • Bahçe Tasarımı
    • Mülk Sahipleri Derneği
    Uzmanlık
    • Muhasebe Firması
    • Odoo Partner
    • Pazarlama Ajansı
    • Hukuk Firması
    • Yetenek Kazanımı
    • Denetim ve Belgelendirme
    Üretim
    • Tekstil
    • Metal
    • Mobilyalar
    • Gıda
    • Bira fabrikası
    • Kurumsal Hediye
    Sağlık ve Spor
    • Spor Kulübü
    • Optik Mağazası
    • Fitness Merkezi
    • Sağlıklı Yaşam Merkezi
    • Eczane
    • Kuaför Salonu
    Ticaret
    • Tamirci
    • BT Donanım & Destek
    • Güneş Enerjisi Sistemleri
    • Ayakkabı İmalatçısı
    • Temizlik Hizmetleri
    • HVAC Hizmetleri
    Diğerleri
    • Kar Amacı Gütmeyen Kuruluş
    • Çevre Ajansı
    • Reklam Panosu Kiralama
    • Fotoğrafçılık
    • Bisiklet Kiralama
    • Yazılım Bayisi
    Tüm Sektörlere Göz Atın
  • Topluluk
    Öğrenim
    • Eğitim Araçları
    • Dokümantasyon
    • Sertifikasyonlar
    • Eğitim Etkinlikleri
    • Blog
    • Podcast
    Eğitim ve Gelişim
    • Eğitim Programı
    • Scale Up! İşletme Oyunu
    • Odoo'yu Ziyaret Edin
    Yazılım
    • İndirin
    • Sürümleri Kıyaslayın
    • Sürümler
    İş Birliği
    • Github
    • Forum
    • Etkinlikler
    • Çeviriler
    • Partner Olun
    • Partnerler için Hizmetler
    • Muhasebe Firmanızı Kaydettirin
    Hizmetler
    • Partner Bulun
    • Muhasebeci Bulun
    • Bir danışmanla görüşün
    • Kurulum Hizmetleri
    • Müşteri Referansları
    • Destek
    • Sürüm Yükseltme
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Demo randevusu alın
  • Fiyatlandırma
  • Yardım

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

  • Müşteri İlişkileri Yönetimi
  • e-Commerce
  • Muhasebe
  • Envanter
  • PoS
  • Proje Yönetimi
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
Yardım

How to keep multiple One2many fields on the same model [EDIT]

Abone Ol

Get notified when there's activity on this post

Bu soru işaretlendi
one2manyrelationalduplication
2 Cevaplar
13576 Görünümler
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
Vazgeç
Avatar
La Jayuhni Yarsyah
En İyi Yanıt

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
Vazgeç
arthur
Üretici

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
Üretici

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
En İyi Yanıt

Hello, you are from Brazil, right? 

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

0
Avatar
Vazgeç
Enjoying the discussion? Don't just read, join in!

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

Üye Ol
İlgili Gönderiler Cevaplar Görünümler Aktivite
How to prefill One2many -> Many2one ? Çözüldü
one2many relationship relational
Avatar
Avatar
1
Eyl 17
4911
How to prefill One2many -> Many2one ?
one2many relationship relational
Avatar
0
Nis 16
9
One2many or Many2many fields Inherited model
one2many inherit many2many relational
Avatar
0
Şub 21
4405
Adding relational fields Çözüldü
many2one one2many relational foreignkey
Avatar
Avatar
1
Nis 18
6798
how pass value to on2many field from parent form via context
one2many
Avatar
Avatar
1
Oca 25
2671
Topluluk
  • Eğitim Araçları
  • Dokümantasyon
  • Forum
Açık Kaynak
  • İndirin
  • Github
  • Runbot
  • Çeviriler
Hizmetler
  • Odoo.sh Hosting
  • Destek
  • Sürüm Yükseltme
  • Özel Geliştirmeler
  • Eğitim
  • Muhasebeci Bulun
  • Partner Bulun
  • Partner Olun
Hakkında
  • Şirketimiz
  • Pazarlama Gereçleri
  • İletişim
  • Kariyer
  • Etkinlikler
  • Podcast
  • Blog
  • Müşteriler
  • Hukuki • Gizlilik
  • Güvenlik
الْعَرَبيّة 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, müşteri ilişkileri yönetimi, eTicaret, muhasebe, envanter, satış noktası, proje yönetimi gibi şirketinizin tüm ihtiyaçlarını karşılayan bir açık kaynak işletme uygulamaları paketidir.

Odoo’nun eşsiz değer önermesi, aynı anda hem kullanımının çok kolay olup hem de tamamen entegre olmasıdır.

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