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

....and why should it matter?

TypeError: 'int' object has no attribute '__getitem__'

In fields.py, line 1197, in fnct_read value = value[field] or False

def _fnct_read(self, obj, cr, uid, ids, field_name, args, context=None):
    res = {}
    for record in obj.browse(cr, SUPERUSER_ID, ids, context=context):
        value = record
        for field in self.arg:
            if isinstance(value, list):
                value = value[0]
            value = value[field] or False
            if not value:
                break
        res[record.id] = value

So it wants the record.id and seems to be getting an int value. It's throwing an error even though it gets what it wants! Why wasn't this passed in the expected type? And why isn't there a case for the expected value to be int in the 1st place?

This is for a custom addon model which simply defines some columns.

Ảnh đại diện
Huỷ bỏ

which line is 1197?

Tác giả

line 1197, in fnct_read value = value[field] or False

Câu trả lời hay nhất

Apparently, you have a related field incorrectly defined. The first parameter of fields.related must be the relational field used to reach the target model.

If this is not the case, post your field definition.

Ảnh đại diện
Huỷ bỏ
Tác giả

That was the trick! I commented my relational fields and now no error. My related field is such - 'status':fields.related('id', 'state', type='char', relation='dbe.application', string='Application Status') and I copied it from the source of stock_inventory_line to get it right. Yet I still messed up! How?

Tác giả

Found the problem. The referenced model also had a related field pointing back to this model and that one was set to type='many2one'. I changed it to char and no problem. Thanks!

Tác giả

I don't get this error calling the form anymore but now I get it while saving. Hmmmm....

Hello Mike, Have you found any solution regarding this issue? If yes please can you post the solution as i am facing same problem. Regards,

Bài viết liên quan Trả lời Lượt xem Hoạt động
1
thg 10 21
3708
1
thg 10 18
15277
0
thg 1 17
8130
1
thg 10 15
4343
1
thg 3 15
6884