Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
3 Trả lời
3208 Lượt xem

Hello,

Not sure how odoo thinks the following is 4 arguments when clearly only 3 are there. Note the vals['customer_code'] currently = "BBF".

 rec_count = self.env['res.partner'].search_count('customer_code', '=', vals['customer_code'])
TypeError: BaseModel.search_count() takes from 2 to 3 positional arguments but 4 were given

Anyone know what is going on here?

Thank you.


Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Hi, i think the issue is in the format of search_count you have defined. Try the code by changing to

rec_count = self.env['res.partner'].search_count([('customer_code', '=', vals['customer_code'])])

Regards.

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Hi,

There is a syntax error in your code on the search_count method

Update the code like this

rec_count = self.env['res.partner'].search_count([('customer_code', '=', vals['customer_code'])])

Also please refer the blog to know more about ORM methods in odoo it may help you

https://www.cybrosys.com/blog/orm-methods-in-odoo-15

Regards

Ảnh đại diện
Huỷ bỏ
Tác giả Câu trả lời hay nhất

Ah, yes. what a silly mistake. Thank you.

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
2
thg 10 25
441
1
thg 5 25
2043
1
thg 3 25
2043
MERGING CONTACTS Đã xử lý
1
thg 2 25
8242
Use of external id Đã xử lý
2
thg 2 25
4384