I want to add a button in a form view, the action of this is to print the report. How can I do this? it seems like printing report in Odoo 12 is far different from Odoo10. can someone have the tutorial for this scenario? Thanks :)
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Akuntansi
- Inventaris
- PoS
- Project
- MRP
Pertanyaan ini telah diberikan tanda
3
Replies
21392
Tampilan
Hi,
Check the code of the print button added in the sale order form.
See a sample below:
return self.env.ref('test.test_report').report_action(record_id)
in the below image you can see the code of the print button in the sale order form.
Thanks
As Niyas said, you can get the reference from the core modules like Sales, Purchase.
Ex:
return self.env.ref('module_name.XML_ID_of_report').report_action(self)
Menikmati diskusi? Jangan hanya membaca, ikuti!
Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!
DaftarPost Terkait | Replies | Tampilan | Aktivitas | |
---|---|---|---|---|
|
3
Okt 23
|
7847 | ||
|
1
Sep 23
|
2872 | ||
|
1
Mei 23
|
1861 | ||
|
2
Apr 23
|
2405 | ||
Inherit Element form kanban View
Diselesaikan
|
|
1
Mar 23
|
1805 |
Thanks Niyas and Sudhir