Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
7290 Widoki

Hi, 

I have  a wizard with a button  where return this: 

return self.env['report'].get_action(record_to_print, 'account.report_invoice')

But I wanted to close the wizard after print the report. 

When I don't have to return a report is easy , I do this: 

return {'type': 'ir.actions.act_window_close'}

How do I print my report and after close the wizard ? 


Thanks


Awatar
Odrzuć
Najlepsza odpowiedź

Hi,
When Odoo launch the download action of a report it will check if close_on_report_download action attribute is set to true, if so it will return action of type ir.actions.act_window_close which will close the wizard.

@api.multi
def print_pdf(self):
action = self.env.ref('customer_products.pdf_products').report_action(self)
action.update({'close_on_report_download': True})
return action

Regards

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
0
gru 15
3504
1
kwi 24
581
1
sie 17
3248
0
cze 16
3477
3
mar 16
14975