Questions tagged [odoo-wizard]

4 questions
1
vote
2 answers

How to override wizard's method on odoo 12

I am trying to override a single method on wizard's class that gets executed when the user click submit. account_consolidation_custom/wizard/CustomClass.py class AccountConsolidationConsolidate(models.TransientModel): _name =…
czuniga
  • 129
  • 10
0
votes
1 answer

Odoo11 Custom Report with Wizard

I would like to print some product barcodes with the custom configuration. Now, the problem is, I have created the wizard but when I click the print button there is no data is transferred to the report. class BarcodeConfig(models.Model): _name =…
0
votes
0 answers

How to Send CC email on send by email in sale Quotation, Should I use different keyword for email cc?

I am Overloading the get_mail_values method of mail.compose.message. I have added email_cc field only and I am expecting the mail should go to both recipients. @api.multi def get_mail_values(self, res_ids): """Generate the values that…
Hitesh
  • 1
  • 2
0
votes
0 answers

Odoo v10 wizard issue

While we clicked any button on wizard then it will inactive all other buttons (not clickable). This is common issue we faced with Odoo v10. If you will take 3 buttons in wizard and each of the button will download reports in excel then after clicked…