Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

Expected singleton Error

Subscriure's

Get notified when there's activity on this post

This question has been flagged
errror
5 Respostes
7363 Vistes
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)
Best Answer

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
Best Answer

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
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrar-se
Related Posts Respostes Vistes Activitat
jsonb_path_query_array error Solved
errror
Avatar
Avatar
1
de juny 24
4379
[object with reference: name - name] v10
errror
Avatar
Avatar
2
d’abr. 17
7862
How do I deal with error related to "Manual Reconciliation"?
errror
Avatar
Avatar
1
de març 15
5289
RPC_ERROR Odoo Server Error odoo online
installation errror
Avatar
Avatar
Avatar
2
de febr. 24
1702
I got a website edit error
errror Website
Avatar
Avatar
1
d’ag. 23
3464
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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