%- include("../partials/page-header", {
user,
title: t.adminSidebar.invocieoverview,
subtitle: "",
showUserName: true
}) %>
| <%= t.global.year%> |
€ |
<% if (!yearly || yearly.length === 0) { %>
|
<%= t.global.nodata%>
|
<% } %>
<% (yearly || []).forEach(y => { %>
| <%= y.year %> |
<%= Number(y.total).toFixed(2) %>
|
<% }) %>
| <%= t.global.year%> |
Q |
€ |
<% if (!quarterly || quarterly.length === 0) { %>
|
<%= t.global.nodata%>
|
<% } %>
<% (quarterly || []).forEach(q => { %>
| <%= q.year %> |
Q<%= q.quarter %> |
<%= Number(q.total).toFixed(2) %>
|
<% }) %>
| <%= t.global.month%> |
€ |
<% if (!monthly || monthly.length === 0) { %>
|
<%= t.global.nodata%>
|
<% } %>
<% (monthly || []).forEach(m => { %>
| <%= m.month %> |
<%= Number(m.total).toFixed(2) %>
|
<% }) %>
| <%= t.global.patient%> |
€ |
<% if (!patients || patients.length === 0) { %>
|
<%= t.global.nodata%>
|
<% } %>
<% (patients || []).forEach(p => { %>
| <%= p.patient %> |
<%= Number(p.total).toFixed(2) %>
|
<% }) %>