İç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 post a change log message for relational One2many fields?

Abone Ol

Get notified when there's activity on this post

Bu soru işaretlendi
10.0
3 Cevaplar
8780 Görünümler
Avatar
Yousef Al-Hadhrami

Dear Community,

I have the o_chatter located on the main record view to post changes to fields

<div class="oe_chatter">
<field name="message_follower_ids" widget="mail_followers" groups="base.group_user"/>
<field name="message_ids" widget="mail_thread">
</div>

Right now when I change char fields such as name, it will post a message on the chatter saying that 

Name: Yousef  Al-Hadhrami Ali Al-Hadhrami                       

but when I change a relational field such as employee family which is a relational field, it will only post ids instead of contents


This is the One2many field

class HrEmployeeFamily(models.Model):
_inherit = 'hr.employee'
employee_family_ids = fields.One2many(
string="Family",
comodel_name='hr.employee.family',
inverse_name='related_employee'
)

and let's say this is the family model:

class EmployeeFamily(models.Model):
_name = 'hr.employee.family'
_inherit = 'employee.record'

related_employee = fields.Many2one('hr.employee', string="Related Employee")
family_name = fields.Char(track_visibility='onchange')

instead of writing on the chatter 

Family Name:Jack Sporrow  Jack Smith       

it writes the model and ids:

Family Name:hr.employee.family,8

I'd like it to post a full detailed log on what was changed on the relational field, how can I achieve that?

0
Avatar
Vazgeç
Ravi Gadhia

which version are you using?

Yousef Al-Hadhrami
Üretici

Version 10

Yousef Al-Hadhrami
Üretici

@Ravi, your answer kinda did something but not the thing that it should do

it only shows the record if it was updated

so lets say you had family_name + family_date_of_birth, and you modify one of those, it won't show up on the log because it only shows when a record gets linked to the employee himself.

Yousef Al-Hadhrami
Üretici

it only shows the record when it gets linked or unliked from an employee

but if you change something in the record, it won't show on the log because the link haven't changed

Ravi Gadhia

I think you need a related field on the model because currently family_name, family_date_of_birth are not direct model field so it does not reflect it's changing on chatter

Yousef Al-Hadhrami
Üretici

I think there is,

related_employee = fields.Many2one('hr.employee', string="Related Employee") is the related field on on Family

employee_family_ids = fields.One2many(

string="Family",

comodel_name='hr.employee.family',

inverse_name='related_employee'

) is the related field on the employee

Yousef Al-Hadhrami
Üretici

I found a way to [ost to the parent record that one of the family records is updated, deleted or created

here is what I used (for update only):

@api.multi

def write(self, values):

"""Override default Odoo write function and extend."""

self.env['mail.message'].create({

'body': 'Personal Document ' + self.number + ' Updated',

'model': 'hr.employee',

'res_id': self.employee_ref.id,

'subtype_id': '2',

})

return super(HrEmployeePersonalDocument, self).write(values)

Ravi Gadhia

it seems the current implementation of chatter doesn't track change on one2many field and post-change entry on chatter.

you want to track the change of one2many field (employee_family_ids) on hr.employee

https://github.com/odoo/odoo/blob/10.0/addons/mail/models/mail_tracking_value.py#L35

I talked about related field mean getting a related field on 'hr.employee.family' like

employee_name = fields.Char(related="related_employee.name")

but it will not work because of you want post entry on hr.employee

your solution looks good on change/write of a relevant field of family mode post message on employee model

Avatar
Ravi Gadhia
En İyi Yanıt

can you try after adding _rec_name in`hr.employee.family`

class EmployeeFamily(models.Model):   
     _name = 'hr.employee.family'   
     _inherit = 'employee.record'  
     _rec_name = 'family_name'​

1
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
Can't reconcile bank statement line
10.0
Avatar
Avatar
Avatar
Avatar
4
Nis 20
10192
how to use field from same model Çözüldü
10.0
Avatar
Avatar
1
Kas 19
4781
How to fix: "odoo.addons.base.ir.ir_qweb.assetsbundle: This error occured while compiling the bundle 'web.assets_frontend' containing:"?
10.0
Avatar
Avatar
2
Şub 18
15381
List view pass context for many2one fields
10.0
Avatar
0
Oca 18
9558
App is not appearing in the list Çözüldü
accounting 10.0
Avatar
Avatar
Avatar
3
Haz 24
5096
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