<?xml version="1.0" encoding="utf-8"?> <odoo> <template id="report_holidayssummary"> <t t-call="web.html_container"> <t t-call="web.internal_layout"> <div class="page"> <h3 class="mb32">Time Off Summary</h3> <t t-set="info" t-value="get_header_info"/> <h3 class="text-center mb32"> Analyze from <u><t t-esc="info['start_date']"/></u> to <u><t t-esc="info['end_date']"/></u> of the <u><t t-esc="info['holiday_type']"/></u> Time Off. </h3> <table class="table table-bordered mb32" style="table-layout:auto"> <thead> <tr> <th>Month</th> <t t-foreach="get_months" t-as="month"> <th class="text-center" colspan=<t t-esc="month['days']"/>><t t-esc="month['month_name']"/></th> </t> <th/> </tr> <tr> <td rowspan="2"> <strong>Departments and Employees</strong> </td> <t t-foreach="get_day" t-as="day"> <td class="text-center oe_leftfit oe_rightfit" style="background-color:<t t-esc="day['color']"/>!important; font-size: 8px; min-width: 18px"> <t t-esc="day['day_str']"/></td> </t> <td/> </tr> <tr> <t t-foreach="get_day" t-as="day"> <td class="text-center oe_leftfit oe_rightfit" style="background-color:<t t-esc="day['color']"/>!important; font-size: 10px" > <t t-esc="day['day']"/></td> </t> <td class="text-center">Sum</td> </tr> </thead> <tbody> <t t-foreach="get_data_from_report" t-as="obj"> <tr t-if="'dept' in obj"> <td style="background-color:#ababab"> <strong><t t-esc="obj['dept']"/></strong> </td> <t t-foreach="obj['color']" t-as="c"> <td style=background-color:<t t-esc="c['color']"/> !important/> </t> <td/> </tr> <tr t-foreach="obj['data']" t-as="emp"> <td><t t-esc="emp['emp']"/></td> <t t-foreach="emp['display']" t-as="details"> <td style=background-color:<t t-esc="details['color']"/> !important /> </t> <td class="text-center"><strong><t t-esc="emp['sum']"/></strong></td> </tr> </t> </tbody> </table> <div class="col-3 offset-5 mt32"> <table class="table table-bordered"> <thead> <tr> <th class="col-1">Color</th> <th class="text-center">Time Off Type</th> </tr> </thead> <tbody> <tr t-foreach="get_holidays_status" t-as="status"> <span t-if="status['color']"> <td style=background-color:<t t-esc="status['color']"/>!important ></td> <td><t t-esc="status['name']"/></td> </span> </tr> </tbody> </table> </div> </div> </t> </t> </template> </odoo>