%- include('../partials/header', { activeMenu: 'reports' }) %>
| Month | Loads | Freight | Commission | Pending |
<% for (const [key, m] of monthly) { %>
| <%= m.label %> |
<%= m.count %> |
<%= formatINR(m.freight) %> |
<%= formatINR(m.commission) %> |
<%= formatINR(m.pending) %> |
<% } %>
| Shipper | Loads | Freight | Commission |
<% for (const s of shippers) { %>
| <%= s.name %> |
<%= s.load_count || 0 %> |
<%= formatINR(s.total_freight) %> |
<%= formatINR(s.total_commission) %> |
<% } %>
| Route | Loads | Commission |
<% for (const r of routes) { %>
| <%= r.route %> |
<%= r.count %> |
<%= formatINR(r.total_commission) %> |
<% } %>
<%- include('../partials/footer') %>