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

In some cases you might want to manage which values get written into the database.

Some examples: Say, I want to save a phone number which always must be in the format 'XX-XXXXXXXX' Or a zip code in the format 'XXXX XX' Or you just may want to strip certain characters like trailing spaces.

The given examples are typically 'char' fields.

Which methods or __init__ parameters of these fields can I use to hook in a sort of pre-processing method?

So I expect something like this:

def preprocess(self, cr, uid, id, name, value, context=None):
    value = value.strip()
    super(my_field, self).preprocess(cr, uid, id, name, value, context=context)
...
... in _columns:

    'column1': fields.char('Phone', size=11, preprocess=preprocess),
}

Another option I thought of was making a function field with its own fnct and fnct_inv, and with a store=True. But I'm not sure how to make this fnct method in such a way that it behaves like a normal field.

Note: I'm interested in field-specific callbacks, not in write() and create() overrides.

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

I'm not sure if I am understanding your question, anyways you can override write or create functions.

Here you can check and modify the values that are received before storing them.

def write(self, cr, uid, ids, values, context=None):
#Check and modify what you want on values
    return super(name_class, self).write(cr, uid, ids, values, context=context)

def create(self, cr, uid, values, context=None):
#Check and modify what you want on values
    return super(name_class, self).create(cr, uid, values, context=context)
Ảnh đại diện
Huỷ bỏ
Tác giả

I know that. But I want a field-specific callback. (Look at the base class of fields.char and see a 'set()' method. Something like that, if that is the right place...

Bài viết liên quan Trả lời Lượt xem Hoạt động
3
thg 5 25
1952
1
thg 4 25
1471
3
thg 9 24
14457
2
thg 2 24
2622
1
thg 7 23
2848