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

I habe a problem to change an existing boolen field to an computed boolean field:

class manatec_project_task_type(models.Model):
_inherit = 'project.task.type'

@api.one
def _get_value(self):
  print 'inside'
  self.value = True

  value = fields.Boolean(compute='_get_value') 

The field is visible on the form view but the method _get_value ist never called.


Regards

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

i'm changed value = fields.Boolean(compute='_get_value_get_value') to value = fields.Boolean(compute='_get_value'). This is how my code looks. It was just an copy and paste mistake.

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

Ok my friend as i see in this link: http://odoo-new-api-guide-line.readthedocs.org/en/latest/fields.html 

We cant add a compute function to a boolean field.

You can do this:

Python:

def on_change_value_id(self, cr, uid, ids, field_name, context=None):
print ('------------------------test vente--------------------')
print field_name

 

Try this and tell me what you have got. Regards.

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

Where in the link do you see you can't add a compute function to a boolean field?

Bài viết liên quan Trả lời Lượt xem Hoạt động
8
thg 8 15
16518
1
thg 3 15
3186
2
thg 7 25
554
2
thg 8 21
39199
2
thg 4 19
10098