Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
3761 มุมมอง

Hi all!

I have a model with a m2o relation to other model. I also have a Selection which gets populated on the fly from a web server... something like this:

from openerp import models, fields, api
...
class MyModel (models.Model):
def _get_options (self, query=None):
url = "http://example.com/fetch?"
rc = http_client.get (url+query) #this instruction fetches results from the external server
values = []
for entry in rc:
values.append ((entry['id'], entry['name']))
return values

_name = "my.model"
other_model = fields.Many2One ("other.model", "Other Model")
select_ = fields.Selection (_get_options, string="Select")

@api.onchange('other_model')
def _on_other_model_change (self):
query = ... # here the query is built from the other_model data
values = self._get_options (query) ??????
...

What I need is to update in the view the available choices for the "select_" field.

Hope I was able to explain myself.

Best regards and thanks in advance

 

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
1
ธ.ค. 23
25774
2
ธ.ค. 21
12421
1
ต.ค. 18
21249
1
ต.ค. 22
16157
2
ก.ค. 20
7192