Skip to Content
Odoo Menu
  • Prisijungti
  • Išbandykite nemokamai
  • Programėlės
    Finansai
    • Apskaita
    • Pateikimas apmokėjimui
    • Sąnaudos
    • Skaičiuoklė (BI)
    • Dokumentai
    • Pasirašymas
    Pardavimai
    • CRM
    • Pardavimai
    • Kasų sistema - Parduotuvė
    • Kasų sistema - Restoranas
    • Prenumeratos
    • Nuoma
    Svetainės
    • Svetainių kūrėjimo įrankis
    • El. Prekyba
    • Internetinis Tinklaraštis
    • Forumas
    • Tiesioginis pokalbis
    • eMokymasis
    Tiekimo grandinė
    • Atsarga
    • Gamyba
    • PLM
    • Įsigijimai
    • Priežiūra
    • Kokybė
    Žmogaus ištekliai
    • Darbuotojai
    • Įdarbinimas
    • Atostogos
    • Įvertinimai
    • Rekomendacijos
    • Transporto priemonės
    Rinkodara
    • Socialinė rinkodara
    • Rinkodara el. paštu
    • SMS rinkodara
    • Renginiai
    • Rinkodaros automatizavimas
    • Apklausos
    Paslaugos
    • Projektas
    • Darbo laiko žiniaraščiai
    • Priežiūros tarnyba
    • Pagalbos tarnyba
    • Planavimas
    • Rezervacijos
    Produktyvumas
    • Diskucija
    • Patvirtinimai
    • IoT
    • VoIP
    • Žinių biblioteka
    • WhatsApp
    Trečiųjų šalių programos Odoo Studija Odoo debesijos platforma
  • Pramonės šakos
    Mažmeninė prekyba
    • Knygynas
    • Drabužių parduotuvė
    • Baldų parduotuvė
    • Maisto prekių parduotuvė
    • Techninės įrangos parduotuvė
    • Žaislų parduotuvė
    Food & Hospitality
    • Barai ir pub'ai
    • Restoranas
    • Greitasis maistas
    • Guest House
    • Gėrimų platintojas
    • Hotel
    Nekilnojamasis turtas
    • Real Estate Agency
    • Architektūros įmonė
    • Konstrukcija
    • Estate Managament
    • Sodininkauti
    • Turto savininkų asociacija
    Konsultavimas
    • Accounting Firm
    • Odoo Partneris
    • Marketing Agency
    • Teisinė firma
    • Talentų paieška
    • Auditai & sertifikavimas
    Gamyba
    • Textile
    • Metal
    • Furnitures
    • Maistas
    • Brewery
    • Įmonių dovanos
    Sveikata & Fitnesas
    • Sporto klubas
    • Akinių parduotuvė
    • Fitneso Centras
    • Sveikatos praktikai
    • Vaistinė
    • Kirpėjas
    Trades
    • Handyman
    • IT įranga ir palaikymas
    • Saulės energijos sistemos
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Kiti
    • Nonprofit Organization
    • Aplinkos agentūra
    • Reklaminių stendų nuoma
    • Fotografavimas
    • Dviračių nuoma
    • Programinės įrangos perpardavėjas
    Browse all Industries
  • Bendrija
    Mokykitės
    • Mokomosios medžiagos
    • Dokumentacija
    • Sertifikatai
    • Mokymai
    • Internetinis Tinklaraštis
    • Tinklalaidės
    Skatinkite švietinimą
    • Švietimo programa
    • Scale Up! Verslo žaidimas
    • Aplankykite Odoo
    Gaukite programinę įrangą
    • Atsisiųsti
    • Palyginkite versijas
    • Leidimai
    Bendradarbiauti
    • Github
    • Forumas
    • Renginiai
    • Vertimai
    • Tapkite partneriu
    • Services for Partners
    • Registruokite jūsų apskaitos įmonę
    Gaukite paslaugas
    • Susiraskite partnerį
    • Susirask buhalterį
    • Susitikti su konsultantu
    • Diegimo paslaugos
    • Klientų rekomendavimas
    • Palaikymas
    • Atnaujinimai
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Gaukite demo
  • Kainodara
  • Pagalba

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

  • CRM
  • e-Commerce
  • Apskaita
  • Atsarga
  • PoS
  • Projektas
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
Pagalba

Expected singleton Error

Prenumeruoti

Get notified when there's activity on this post

This question has been flagged
errror
5 Replies
7407 Rodiniai
Portretas
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
Portretas
Atmesti
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
Autorius

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 -

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

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

Registracija
Related Posts Replies Rodiniai Veikla
jsonb_path_query_array error Solved
errror
Portretas
Portretas
1
birž. 24
4424
[object with reference: name - name] v10
errror
Portretas
Portretas
2
bal. 17
7931
How do I deal with error related to "Manual Reconciliation"?
errror
Portretas
Portretas
1
kov. 15
5315
RPC_ERROR Odoo Server Error odoo online
installation errror
Portretas
Portretas
Portretas
2
vas. 24
1740
I got a website edit error
errror Website
Portretas
Portretas
1
rugp. 23
3497
Bendrija
  • Mokomosios medžiagos
  • Dokumentacija
  • Forumas
Atvirasis kodas
  • Atsisiųsti
  • Github
  • Runbot
  • Vertimai
Paslaugos
  • Odoo.sh talpinimas
  • Palaikymas
  • Atnaujinti
  • Pritaikytas programavimo kūrimas
  • Švietimas
  • Susirask buhalterį
  • Susiraskite partnerį
  • Tapkite partneriu
Apie mus
  • Mūsų įmonė
  • Prekės ženklo turtas
  • Susisiekite su mumis
  • Darbo pasiūlymai
  • Renginiai
  • Tinklalaidės
  • Internetinis Tinklaraštis
  • Klientai
  • Teisinis • Privatumas
  • Saugumas
الْعَرَبيّة 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 yra atvirojo kodo verslo programų rinkinys, kuris apima visas įmonės poreikius: CRM, El. Prekybą, Apskaitą, Atsargų, Kasų sistemą, Projektų valdymą ir kt.

Unikali Odoo vertės pasiūla – būti tuo pačiu metu labai lengvai naudojama ir visiškai integruota sistema.

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