跳至內容
選單
此問題已被標幟
1 回覆
4415 瀏覽次數

in an onchange function i need to call a field(in order to get its value) from another class . any help please ?

頭像
捨棄
最佳答案

You'll find lots of examples in addons folder

Example:-

  def onchange_partner_id(self, cr, uid, ids, part, context=None):
        part = self.pool.get('res.partner').browse(cr, uid, part, context=context)
        user = part.user_id and part.user_id.id or uid
        val = {
          'user_id': user
        }
        return {'value': val}
頭像
捨棄