Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

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

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

Calling field in method of another object

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
inheritselfobjectsself.env.search
1 Odpowiedz
8148 Widoki
Awatar
MatheusF

I created a field of type Boolean 'check_barcode' in the stock.config.settings object. The intent of this field is as follows if it is marked as true it would have entered a method that is in another inherited object. The problem is that my self.env is not bringing the check_barcode field (I think it's not making the stay). 


How to call the check_barcode field in the def calculate_checksum method?


field.py

class StockSettings(models.TransientModel):

    _inherit = 'stock.config.settings'

    check_barcode = fields.Boolean(string='check_barcode')


product.py

class ProductTemplate(models.Model):

    _inherit = "product.template"

    @api.onchange('barcode')

    def calculate_checksum(self):

            #if self.env.user.company_id.product_ids.compute(self.company_id.check_barcode, self.product_ids):

            #if self.env['res.config.settings'].check_barcode:                                    #.company_id.product_ids.compute(self.company_id.check_barcode, self.product_ids):

        if self.check_barcode == 'True':

            if self.barcode:

                barcode = self.barcode[:12]

                if len(barcode) < 12:

                    barcode = barcode.ljust(12, '0')



                sum_ = lambda x, y: int(x) + int(y)

                evensum = reduce(sum_, barcode[::2])

                oddsum = reduce(sum_, barcode[1::2])

                digit = (10 - ((evensum + oddsum * 3) % 10)) % 10

                self.write(

                    {

                        'barcode': barcode + str(digit)

                    }

            )

            else:

                return False






0
Awatar
Odrzuć
Awatar
Cybrosys Techno Solutions Pvt.Ltd
Najlepsza odpowiedź

Hi,

You can update your field.py file like this,

class StockSettings(models.TransientModel):
_inherit = 'stock.config.settings'

check_barcode = fields.Boolean(string='check_barcode')

@api.multi
def set_check_barcode(self):
""" saving the values to ir.values """
IrValues = self.env['ir.values']
IrValues.set_default('stock.config.settings', 'check_barcode', self.check_barcode)


Then in the calculate_checksum function, you can get the value of the check_barcode like this,

ir_values = self.env['ir.values']
check_barcode = ir_values.get_default('stock.config.settings', 'check_barcode')


Now your code will be like this,

class ProductTemplate(models.Model):
_inherit = "product.template"

@api.onchange('barcode')
def calculate_checksum(self):
ir_values = self.env['ir.values']
check_barcode = ir_values.get_default('stock.config.settings', 'check_barcode')


Thanks

0
Awatar
Odrzuć
MatheusF
Autor

I made the update but it still gives error : [ in calculate_checksum

if self.check_barcode == 'True':

AttributeError: 'product.template' object has no attribute 'check_barcode' ]

Is this the correct syntax?

@api.onchange('barcode')

def calculate_checksum(self):

ir_values = self.env['ir.values']

check_barcode = ir_values.get_default('stock.config.settings', 'check_barcode')

if self.check_barcode == 'True':

Cybrosys Techno Solutions Pvt.Ltd

In the product.template model there is no field check_barcode, so change self.check_barcode to self.barcode

Podoba Ci się ta dyskusja? Dołącz do niej!

Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

Zarejestruj się
Powiązane posty Odpowiedzi Widoki Czynność
self search based on field Rozwiązane
self self.env.search
Awatar
Awatar
Awatar
2
lut 23
13203
Using self.env to go over all module record and create new record in another module Rozwiązane
self loop self.pool.get self.env.search
Awatar
Awatar
2
sty 19
15748
How to do Prototpye inherit in odoo
inherit
Awatar
Awatar
Awatar
Awatar
Awatar
4
mar 24
4447
Inheritance for account.financial.report model?
inherit
Awatar
Awatar
1
paź 23
6419
Difference between_inherit (no _name property) and _inherit (_name property value same as _inherit) ?
inherit
Awatar
Awatar
1
cze 22
7697
Społeczność
  • Samouczki
  • Dokumentacja
  • Forum
Open Source
  • Pobierz
  • Github
  • Runbot
  • Tłumaczenia
Usługi
  • Hosting Odoo.sh
  • Wsparcie
  • Aktualizacja
  • Indywidualne rozwiązania
  • Edukacja
  • Znajdź księgowego
  • Znajdź partnera
  • Zostań partnerem
O nas
  • Nasza firma
  • Zasoby marki
  • Skontaktuj się z nami
  • Oferty pracy
  • Wydarzenia
  • Podcast
  • Blog
  • Klienci
  • Informacje prawne • Prywatność
  • Bezpieczeństwo Odoo
الْعَرَبيّة 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 to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

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