in current view:
class A:
x1 = fields.Char()
y1 = fields.Char()
class B:
x2 = fields.Char()
y2 = fields.Char()
current view is class A,
I want to put a button on A view, and click this button, the page change to class B, and current view's data passed to class B.
I don't want to make Many2one or One2many,
how to do it ?
Thanks so much..