İç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

error fields.function dosen't exist

Abone Ol

Get notified when there's activity on this post

Bu soru işaretlendi
functionOdoo13.0
2 Cevaplar
3846 Görünümler
Avatar
himaOdoo

i want to declare a function


_columns = {

        'preno_emp_ar': fields.Char(

            'الاسم'),

        'nom_emp_ar': fields.Char(

            'النسب'),

        'complete_name_ar': fields.function(

            _get_full_name_ar, string='الاسم الكامل', type='char', store={

                'hr.employee': (_update_fill_name_ar, [

                    'complete_name_ar', 'preno_emp_ar', 'nom_emp_ar'],

                    50),

            }, method=True, help='Full arabic name of employee'),

    }



and i get this error module 'odoo.fields' has no attribute 'function'
is there any methode to declare the function ? 



0
Avatar
Vazgeç
Avatar
himaOdoo
Üretici En İyi Yanıt

i defined the function name like this 


class Hr_Employee(osv.Model):

    _inherit = "hr.employee"


    def _get_full_name_ar(self, cr, uid, ids, fields_name, args, context=None):

        if context is None:

            context = {}

        res = {}

        for emp in self.browse(cr, uid, ids, context=context):

            res[emp.id] = (emp.preno_ar or '') + ' ' + (

                emp.nom_ar or '')

        return res


    def _update_fill_name_ar(self, cr, uid, ids, context=None):

        return ids


    _columns = {

        'preno_ar': fields.Char(

            'الاسم'),

        'nom_ar': fields.Char(

            'النسب'),

        'complete_name_ar': fields.function(

            _get_full_name_ar, string='الاسم الكامل', type='char', store={

                'hr.employee': (_update_fill_name_ar, [

                    'complete_name_ar', 'preno_ar', 'nom_ar'],

                    50),

            }, method=True),

    }


so how is the right way to declare the function inside _columns attribute ? 

0
Avatar
Vazgeç
Niyas Raphy (Walnut Software Solutions)

this is the coding structure used in old versions i think, if you have time have a look at the video to see how to define a compute field and its function

himaOdoo
Üretici

based on the video i change my code to the following

class Hr_Employee(osv.Model):

_inherit = "hr.employee"

@api.depends('preno_ar', 'nom_ar')

def _get_full_name_ar(self):

self._get_full_name_ar = (self.preno_ar or '') + ' ' + (self.nom_ar or '')

_columns = {

'preno_ar': fields.Char(

'الاسم'),

'nom_ar': fields.Char(

'النسب'),

'complete_name_ar': fields.Char(

'الاسم الكامل', compute= '_get_full_name_ar', store="True")

}

but i get 'preno_ar' fields dosen't exsist

Niyas Raphy (Walnut Software Solutions)

can you define a field like this without using columns, i think you have defined fields correctly in your previous questions,

preno_ar = fields.Char(string='PreNo Ar', compute='_get_full_name_ar')

himaOdoo
Üretici

i tried this but unfortunatly the module won't be installed and the system stops 'conexion lost'

class hr_corp(models.Model):

_inherit = "hr.employee"

@api.depends('preno_emp_ar', 'nom_emp_ar')

def get_full_name_ar(self):

self._get_full_name_ar = (self.preno_emp_ar or '')+' '+(self.nom_emp_ar or '')

preno_emp_ar = fields.Char(string="الاسم")

nom_emp_ar = fields.Char(string="النسب")

complete_name_ar = fields.Char(string="الاسم الكامل", compute= 'get_full_name_ar', store="True")

Avatar
Niyas Raphy (Walnut Software Solutions)
En İyi Yanıt

Hi,

This has got removed in latest versions,

``fields.related`` and ``fields.function`` are replaced by using a normal
field type with either a ``related=`` or a ``compute=`` parameter

Try to define the compute field, for more details on how to add a compute field, see this: How to Write Compute Field and its Function


Thanks

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
production of not enough materials for a PO
function
Avatar
Avatar
Avatar
2
Eyl 25
1150
POS Product Category Community Edition
function
Avatar
Avatar
1
Eyl 25
1841
Options for collections management addons for museums or private collection
function
Avatar
0
Tem 25
1220
No funcionan los marcadores de posición dinámicos en las plantillas de correo.
function
Avatar
0
Mar 25
1598
Lo Nuevo Modulo de Gatos V.18
function
Avatar
0
Mar 25
1688
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