Ir al contenido
Odoo Menú
  • Iniciar sesión
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • PdV para tiendas
    • PdV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en vivo
    • eLearning
    Cadena de suministro
    • Inventario
    • Manufactura
    • PLM
    • Compras
    • Mantenimiento
    • Calidad
    Recursos humanos
    • Empleados
    • Reclutamiento
    • Vacaciones
    • Evaluaciones
    • Referencias
    • Flotilla
    Marketing
    • Redes sociales
    • Marketing por correo
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyectos
    • Registro de horas
    • Servicio externo
    • Soporte al cliente
    • Planeación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Artículos
    • WhatsApp
    Aplicaciones externas Studio de Odoo Plataforma de Odoo en la nube
  • Industrias
    Venta minorista
    • Librería
    • Tienda de ropa
    • Mueblería
    • Tienda de abarrotes
    • Ferretería
    • Juguetería
    Alimentos y hospitalidad
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidora de bebidas
    • Hotel
    Bienes inmuebles
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión de bienes inmuebles
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Firma contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Manufactura
    • Textil
    • Metal
    • Muebles
    • Comida
    • Cervecería
    • Regalos corporativos
    Salud y ejercicio
    • Club deportivo
    • Óptica
    • Gimnasio
    • Especialistas en bienestar
    • Farmacia
    • Peluquería
    Trades
    • Personal de mantenimiento
    • Hardware y soporte de TI
    • Sistemas de energía solar
    • Zapateros y fabricantes de calzado
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin fines de lucro
    • Agencia para la protección del medio ambiente
    • Alquiler de anuncios publicitarios
    • Fotografía
    • Alquiler de bicicletas
    • Distribuidor de software
    Descubre todas las industrias
  • Odoo Community
    Aprende
    • Tutoriales
    • Documentación
    • Certificaciones
    • Capacitación
    • Blog
    • Podcast
    Fortalece la educación
    • Programa educativo
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtén el software
    • Descargar
    • Compara ediciones
    • Versiones
    Colabora
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Conviértete en partner
    • Servicios para partners
    • Registra tu firma contable
    Obtén servicios
    • Encuentra un partner
    • Encuentra un contador
    • Contacta a un consultor
    • Servicios de implementación
    • Referencias de clientes
    • Soporte
    • Actualizaciones
    GitHub YouTube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicita una demostración
  • Precios
  • Ayuda

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

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyectos
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

Calling field in method of another object

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
inheritselfobjectsself.env.search
1 Responder
8147 Vistas
Avatar
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
Avatar
Descartar
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Mejor respuesta

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
Avatar
Descartar
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

¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Registrarse
Publicaciones relacionadas Respuestas Vistas Actividad
self search based on field Resuelto
self self.env.search
Avatar
Avatar
Avatar
2
feb 23
13203
Using self.env to go over all module record and create new record in another module Resuelto
self loop self.pool.get self.env.search
Avatar
Avatar
2
ene 19
15747
How to do Prototpye inherit in odoo
inherit
Avatar
Avatar
Avatar
Avatar
Avatar
4
mar 24
4447
Inheritance for account.financial.report model?
inherit
Avatar
Avatar
1
oct 23
6419
Difference between_inherit (no _name property) and _inherit (_name property value same as _inherit) ?
inherit
Avatar
Avatar
1
jun 22
7697
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento en Odoo.sh
  • Soporte
  • Actualizaciones del software
  • Desarrollos personalizados
  • Educación
  • Encuentra un contador
  • Encuentra un partner
  • Conviértete en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contáctanos
  • Empleos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidad
  • Seguridad
الْعَرَبيّة 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 es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y estar totalmente integrado.

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