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

Expected singleton Error

Suscribirse

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

Se marcó esta pregunta
errror
5 Respuestas
7431 Vistas
Avatar
Miria

Please help! I've got an error in my model and I don't know how to solve it.

Here is all of my codes. I got this error after adding the smart button.

from openerp import models, fields, api

class HrWarning(models.Model):
_name = 'hr.warning'
employee_id = fields.Many2one('hr.employee', "Employee")
warning_reason = fields.Text('Warning Reason')
date = fields.Datetime('Date')
department_id = fields.Many2one('hr.department','Department')
job_id = fields.Many2one('hr.job','Job Title')
parent_id = fields.Many2one('hr.employee','Managed By')


state = fields.Selection([
('submit', 'To Submit'),
('first_warning', 'First Warning'),
('second_warning', 'Second Warning'),
('terminate', 'Termination'),
],default='submit')

@api.one
def submit_progressbar(self):
self.write({
'state': 'submit',
})

@api.one
def first_warning_progressbar(self):
self.write({
'state': 'first_warning'
})

@api.one
def second_warning_progressbar(self):
self.write({
'state': 'second_warning'
})

@api.one
def terminate_progressbar(self):
self.write({
'state': 'terminate',
})
employee_obj = self.env['hr.employee'].search([('id', '=', self.employee_id.id)])
employee_obj.write({'active': False})

@api.multi
def report_button(self):
print 'report_button call me'
inv = self.ids
if inv:
url = 'http://localhost:8080/WebViewerExample/frameset?__report=warning_report.rptdesign&Warning Form ID=' + str(self.ids[0])
if url:
return {
'type' : 'ir.actions.act_url',
'url' : url,
'target' : 'new',
}
else:
raise ValidationError('Not Found')
return True

class hr_employee(models.Model):
_inherit = 'hr.employee'


@api.one
 def warning_button(self):
return {
'name' : ['Warning'],
'domain' : [('employee_id','=',self.id)],
'view_type' : 'form',
'res_model' : 'hr.warning',
'view_mode' : 'tree,form',
'type' : 'ir.actions.act.window',
}


warning_count = fields.Integer(string=' ',compute='get_warning_count')


def get_warning_count(self):
count = self.env['hr.warning'].search_count([('employee_id','=',self.id)])


And I got an error like this:

raise except_orm("ValueError", "Expected singleton: %s" % self)
except_orm: ('ValueError', 'Expected singleton: hr.employee(2, 12)')

0
Avatar
Descartar
Waleed Ali Mohsen

Your methods use api.one so it expected single value and you call it for more than record. Check the log to know the line which raise this error.

alvinadjie

Hi Miria could you show us the log so we can know which line that caused this error

Miria
Autor

This is my log

2019-12-30 04:00:00,532 9020 INFO testing werkzeug: 127.0.0.1 - - [30/Dec/2019 04:00:00] "POST /web/dataset/call_kw/hr.employee/fields_view_get HTTP/1.1" 200 -

2019-12-30 04:00:00,855 9020 INFO ? werkzeug: 127.0.0.1 - - [30/Dec/2019 04:00:00] "GET /web/static/src/img/form_sheetbg.png HTTP/1.1" 200 -

2019-12-30 04:00:00,855 9020 INFO ? werkzeug: 127.0.0.1 - - [30/Dec/2019 04:00:00] "GET /web/static/lib/jquery.ui.bootstrap/css/custom-theme/images/ui-bg_glass_75_ffffff_1x400.png HTTP/1.1" 200 -

2019-12-30 04:00:01,476 9020 ERROR testing openerp.http: Exception during JSON request handling.

Traceback (most recent call last):

File "C:\Users\ASUS\Desktop\odoo-8.0\openerp\http.py", line 546, in _handle_exception

return super(JsonRequest, self)._handle_exception(exception)

File "C:\Users\ASUS\Desktop\odoo-8.0\openerp\http.py", line 583, in dispatch

result = self._call_function(**self.params)

File "C:\Users\ASUS\Desktop\odoo-8.0\openerp\http.py", line 319, in _call_function

return checked_call(self.db, *args, **kwargs)

File "C:\Users\ASUS\Desktop\odoo-8.0\openerp\service\model.py", line 118, in wrapper

return f(dbname, *args, **kwargs)

File "C:\Users\ASUS\Desktop\odoo-8.0\openerp\http.py", line 316, in checked_call

return self.endpoint(*a, **kw)

File "C:\Users\ASUS\Desktop\odoo-8.0\openerp\http.py", line 812, in __call__

return self.method(*args, **kw)

File "C:\Users\ASUS\Desktop\odoo-8.0\openerp\http.py", line 412, in response_wrap

response = f(*args, **kw)

File "C:\Users\ASUS\Desktop\odoo-8.0\addons\web\controllers\main.py", line 944, in call_kw

return self._call_kw(model, method, args, kwargs)

File "C:\Users\ASUS\Desktop\odoo-8.0\addons\web\controllers\main.py", line 936, in _call_kw

return getattr(request.registry.get(model), method)(request.cr, request.uid, *args, **kwargs)

File "C:\Users\ASUS\Desktop\odoo-8.0\openerp\api.py", line 268, in wrapper

return old_api(self, *args, **kwargs)

File "C:\Users\ASUS\Desktop\odoo-8.0\openerp\models.py", line 3148, in read

result = BaseModel.read(records, fields, load=load)

File "C:\Users\ASUS\Desktop\odoo-8.0\openerp\api.py", line 266, in wrapper

return new_api(self, *args, **kwargs)

File "C:\Users\ASUS\Desktop\odoo-8.0\openerp\models.py", line 3194, in read

values[name] = field.convert_to_read(record[name], use_name_get)

File "C:\Users\ASUS\Desktop\odoo-8.0\openerp\models.py", line 5654, in __getitem__

return self._fields[key].__get__(self, type(self))

File "C:\Users\ASUS\Desktop\odoo-8.0\openerp\fields.py", line 835, in __get__

self.determine_value(record)

File "C:\Users\ASUS\Desktop\odoo-8.0\openerp\fields.py", line 937, in determine_value

self.compute_value(recs)

File "C:\Users\ASUS\Desktop\odoo-8.0\openerp\fields.py", line 893, in compute_value

self._compute_value(records)

File "C:\Users\ASUS\Desktop\odoo-8.0\openerp\fields.py", line 885, in _compute_value

self.compute(records)

File "C:\Users\ASUS\Desktop\odoo-8.0\custom_addons\hr_warning\hr_warning_model.py", line 82, in get_warning_count

count = self.env['hr.warning'].search_count([('employee_id','=',self.id)])

File "C:\Users\ASUS\Desktop\odoo-8.0\openerp\fields.py", line 1909, in __get__

return record.ensure_one()._ids[0]

File "C:\Users\ASUS\Desktop\odoo-8.0\openerp\models.py", line 5320, in ensure_one

raise except_orm("ValueError", "Expected singleton: %s" % self)

except_orm: ('ValueError', 'Expected singleton: hr.employee(2, 12)')

2019-12-30 04:00:01,607 9020 INFO testing werkzeug: 127.0.0.1 - - [30/Dec/2019 04:00:01] "POST /web/dataset/call_kw/hr.employee/read HTTP/1.1" 200 -

2019-12-30 04:00:01,655 9020 INFO ? werkzeug: 127.0.0.1 - - [30/Dec/2019 04:00:01] "GET /web/static/src/img/warning.png HTTP/1.1" 200 -

2019-12-30 04:00:38,003 9020 INFO testing werkzeug: 127.0.0.1 - - [30/Dec/2019 04:00:38] "POST /longpolling/poll HTTP/1.1" 200 -

2019-12-30 04:01:28,065 9020 INFO testing werkzeug: 127.0.0.1 - - [30/Dec/2019 04:01:28] "POST /longpolling/poll HTTP/1.1" 200 -

Avatar
Niyas Raphy (Walnut Software Solutions)
Mejor respuesta

Hi,

Update these lines,

employee_obj = self.env['hr.employee'].search([('id', '=', self.employee_id.id)])
employee_obj.write({'active': False})

to

employee_obj = self.env['hr.employee'].search([('id', '=', self.employee_id.id)])

for emp in employee_obj:
     emp.write({'active': False})

or

employee_obj = self.env['hr.employee'].search([('id', '=', self.employee_id.id)], limit=1)
employee_obj.write({'active': False})

Thanks

0
Avatar
Descartar
Avatar
alvinadjie
Mejor respuesta

Try change your code

@api.one

def terminate_progressbar(self):

    self.write({

      'state':'terminate', 

   })

    employee_obj = self.env['hr.employee'].search([('id', '=', self.employee_id.id)])

    for emp in employee_obj:

        emp.write({'active':False})


0
Avatar
Descartar
¿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
jsonb_path_query_array error Resuelto
errror
Avatar
Avatar
1
jun 24
4438
[object with reference: name - name] v10
errror
Avatar
Avatar
2
abr 17
7950
How do I deal with error related to "Manual Reconciliation"?
errror
Avatar
Avatar
1
mar 15
5343
RPC_ERROR Odoo Server Error odoo online
installation errror
Avatar
Avatar
Avatar
2
feb 24
1752
I got a website edit error
errror Website
Avatar
Avatar
1
ago 23
3517
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.

Sitio web hecho con

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