跳至內容
選單
此問題已被標幟
2947 瀏覽次數

class modelA(models.Model):

_name='model.a'

code = fields.Char('Description: ')

subject =   fields.Char('Subject: ')

def action_button(self):

data = {

'ids': self.ids,
'model': 'stock.move',
'form': self.read(['start_date', 'end_date', 'route', 'salesman'])[0]

}

#code to pass data

return ?


class modelB(models.Model):

_name='model.b'

def print_data(self,code,subject):

x = (code,subject)

return x


How can i pass the  field values from class A to B? Thank u in advance for the help :)


頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
3
11月 24
30829
1
12月 21
3153
0
12月 21
2729
0
4月 15
5046
2
3月 15
10792