Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
2961 Prikazi

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 :)


Avatar
Opusti
Related Posts Odgovori Prikazi Aktivnost
3
nov. 24
30860
1
dec. 21
3180
0
dec. 21
2735
0
apr. 15
5060
2
mar. 15
10800