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

Odoo 10: call a method with the new api from server action

Abone Ol

Get notified when there's activity on this post

Bu soru işaretlendi
methodserver_actionsapi.multiodoo10ir.actions.server
1 Cevapla
13579 Görünümler
Avatar
FEDERICO LEONI

I have inherited pos.order model adding some extra fields and my definitions via custom module:

class PosOrderDV(models.Model):
_inherit = "pos.order"
 
profit = fields.Float('Lucro', store=True, index=True, digits=(5,2))
costs = fields.Float('Custos', store=True, index=True, digits=(5,2))

    @api.multi 
  def cost_elab(self):
    ### do stuff ###

Odoo has his personal way to interact with fields trough definition, and I'm seeing a lack of good docs to archive that. Perhaps is better stay with my daemon, but I'm curious to know how people are managing the conversion.

For now, all I got were a series of errors, the most common are

ValueError: <type 'exceptions.AttributeError'>: "'pos.order' object has no attribute 'cost_elab'"

if I call my def with env['pos.order'].cost_elab()

or

NameError: name 'self' is not defined

if I use self.env['pos.order'].cost_elab()




0
Avatar
Vazgeç
Avatar
Hilar Andikkadavath
En İyi Yanıt

Hi,

check whether your object is browsable, and you can call function by

env['pos.order'].cost_elab() like self.env['product.uom']._compute_price(line.product_id.uom_id.id, purchase_price, to_uom_id=line.product_uom.id)


class x(Object):

     def y():

         return "teste"

class y(models.Model, x):

     """ here I can access function y as self.y() """

     print self.y()

if still probs, then please give me your example code

In case of odoo lets take an example.


class res_partner(models.Model):
_inherit = "res.partner"
    @api.multi
def google_map_img(zoom=17, width=298, height=298):
partner = self.browse([partner_id])
        params = {
  'center': '%s, %s %s, %s' % (partner.street or '',
        partner.city or '',
        partner.zip or '',
        partner.country_id and partner.country_id.name_get()[0][1] or ''),
        'size': "%sx%s" % (height, width),
  'zoom': zoom,
        'maptype': 'hybrid',
  'sensor': 'false',
  }
        return urlplus('//maps.googleapis.com/maps/api/staticmap', params)

class test(models.Model):
     _name = 'your.name'

     @api.multi
     def test(self):
partner = self.sudo().partner_id
    return partner and partner.google_map_img(zoom, width, height) or None

In case you have no record set try @api.model instead of multi



     

2
Avatar
Vazgeç
FEDERICO LEONI
Üretici

Can you please elaborate more?

In pure python with the help of psycopg2 is quite easy trigger an action (I'm using a daemon now) but the more I dig into Odoo the more I realize perhaps is better stay with my own setup.

If you think is important I'll update the OP with a draft of my python code.

FEDERICO LEONI
Üretici

And just for let you know, your example give me an error of invalid syntax after 'like'.

Hilar Andikkadavath

like is not an operator here , i just used to explain an example.

eg: self.env['product.uom']._compute_price(line.product_id.uom_id.id,purchase_price,to_uom_id=line.product_uom.id)

FEDERICO LEONI
Üretici

Ok, I'll have a look more deeply using your sample code.

But somehow 'self' doesn't works well with pos.order/server action.

See my previous thread here:

https://www.odoo.com/forum/help-1/question/solved-server-actions-how-to-replace-self-write-command-with-new-api-for-odoo-10-113549

Hilar Andikkadavath

I see try @api.model instead of @api.multi

FEDERICO LEONI
Üretici

Hilar, thank you for your time.

I prefer not to use @api.model, since I would like to use just the new API.

Let me assimilate the concept and Í'll write some lines of code. But again, coding under Odoo should be more simple... Or probably I'm just getting old!

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
[SOLVED] Server actions: how to replace self.write command with new API for Odoo 10? Çözüldü
server_actions odoo10 ir.actions.server
Avatar
Avatar
Avatar
9
Ara 17
16100
Check Action Rules works only once
scheduler server_actions automatic-action odoo10
Avatar
Avatar
2
Şub 17
6296
How can I extend " crm_lead_opportunities " action in my custom module Çözüldü
view actions override odoo10 ir.actions.server
Avatar
Avatar
1
Şub 18
5809
[Odoo 10] Override method in pos.config
python inheritance method override odoo10
Avatar
0
Şub 17
5
Create schedule action For sending emails
odoo10
Avatar
Avatar
Avatar
2
Tem 25
6556
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