Last active
September 17, 2024 05:24
-
-
Save CakJuice/31d11e7ac8a0c32bc15c2680f2fa0eb9 to your computer and use it in GitHub Desktop.
Odoo 11 custom report 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from odoo import models, fields, api | |
class AttendanceRecapReportWizard(models.TransientModel): | |
_name = 'attendance.recap.report.wizard' | |
date_start = fields.Date(string="Start Date", required=True, default=fields.Date.today) | |
date_end = fields.Date(string="End Date", required=True, default=fields.Date.today) | |
@api.multi | |
def get_report(self): | |
pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment