Skip to Content
Menu
This question has been flagged
2 Replies
4350 Views

Hello, I have a button that will print a report ( view Qweb ) but when i press the button to print on the form I get the following message:

TypeError: print_report() takes at least 6 arguments (5 given)

The button that I have in view is as follows:

<button name="print_report" string="Print Service Ticket" type="object" icon="gtk-print"/>

And the function that is used to print is:

@api.v7

def print_report(self, cr, uid, ids, context=None):

if context is None:

context = {}

data = {}

data['ids'] = context.get('active_ids', [])

data['model'] = context.get('active_model', 'ir.ui.menu')

 

return self.pool['report'].get_action(cr, uid, [], 'custom_module.report_pricelist', data=data, context=context)


PLease help me with this. Thanks.

Avatar
Discard
Best Answer

You will be ok if you remove this code:

@api.v7
Avatar
Discard

short and simple ;)

Best Answer

You may correct it like this:

@api.multi

def print_report(self):

  return self.env['report'].get_action(self, 'custom_module.report_pricelist')

Avatar
Discard