You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i have a little problem with my odoo custome module. the problem is i want to display the saved data from form view to page in notebook.
inside the form view i have kanban box and inside the kanban box i add button. when user click the button in kanban box another form view will appear, and inside this form view user need to fill all the data and information so after user filled all the data by checklist it, and when user click save the data must be display in page.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
i have a little problem with my odoo custome module. the problem is i want to display the saved data from form view to page in notebook.
inside the form view i have kanban box and inside the kanban box i add button. when user click the button in kanban box another form view will appear, and inside this form view user need to fill all the data and information so after user filled all the data by checklist it, and when user click save the data must be display in page.
the code for button save is like this
<button class="btn btn-primary" type="object" name="save_qc_data" special="save" string="Save"/>
`def save_qc_data(self):
vals = {
'nomor_mesin': self.nomor_mesin,
'kodekain' : self.kodekain,
'putus_lusi': self.putus_lusi,
'putus_pakan': self.putus_pakan,
'bendera_merah': self.bendera_merah,
'ambrol': self.ambrol,
'dedel': self.dedel,
'hb': self.hb,
'naik_beam': self.naik_beam,
'oh': self.oh,
'preventif': self.preventif,
'is_button_disabled' : True,
}
i want the data from here
will appear in page here
how can i do this?
Beta Was this translation helpful? Give feedback.
All reactions