You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
342 B
13 lines
342 B
# -*- coding: utf-8 -*-
|
|
|
|
from odoo import models, fields, api, _
|
|
|
|
|
|
class CreditDueExceedReportWizard(models.TransientModel):
|
|
_name = 'customer.due.report'
|
|
|
|
@api.model
|
|
def xlsx_credit_due_report(self,data):
|
|
data = {}
|
|
return self.env.ref('customer_due_days.report_customer_due_xlsx').report_action(self, data=data)
|
|
|
|
|