Release 2.0.14 (#3963)
- show customer totals in single-user reports - support custom fonts in export / invoice templates - require daterange for export and invoice searches - improve help label for user locale - show decimal formats in help controller - cache tag amount per request - composer updates - improved code styles - added default label to date picker - new macros & use own macro
This commit is contained in:
@@ -14,6 +14,8 @@
|
||||
{{ entry.time }}
|
||||
{% elseif column == 'duration' %}
|
||||
{{ entry.duration }}
|
||||
{% elseif column == 'decimal' %}
|
||||
{{ entry.decimal }}
|
||||
{% elseif column == 'money' %}
|
||||
{{ entry.money }}
|
||||
{% elseif column == 'hour_24' %}
|
||||
|
||||
@@ -122,6 +122,14 @@
|
||||
{%- if tooltip is not same as null %} data-toggle="tooltip" data-placement="top" title="{{ tooltip }}"{% endif -%}>{{ initials }}</span>
|
||||
{% endmacro %}
|
||||
|
||||
{% macro avatar_deleted(tooltip) %}
|
||||
{% set initials = tooltip ?? '??' %}
|
||||
{% set tooltip = 'deleted'|trans %}
|
||||
{% set color = null|colorize(initials) %}
|
||||
<span class="avatar {{ class ?? '' }}" style="background-color: {{ color }}; color: {{ color|font_contrast }}"
|
||||
{%- if tooltip is not same as null %} data-toggle="tooltip" data-placement="top" title="{{ tooltip }}"{% endif -%}>{{ initials }}</span>
|
||||
{% endmacro %}
|
||||
|
||||
{#
|
||||
options = {'inherit': true}
|
||||
#}
|
||||
@@ -263,6 +271,10 @@
|
||||
{{ macro.action_cardtoolbutton(icon, values) }}
|
||||
{% endmacro %}
|
||||
|
||||
{% macro card_tool_create(create_url) %}
|
||||
{{ _self.card_tool_button('create', {'url': create_url, 'class': 'modal-ajax-form open-edit', 'title': 'create'|trans}) }}
|
||||
{% endmacro %}
|
||||
|
||||
{% macro action_button(icon, values, type) %}
|
||||
{% import '@theme/components/button.html.twig' as macro %}
|
||||
{% set values = values|merge({'tooltip_attr': 'data-toggle'}) %}
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
{% else %}
|
||||
{% set dataTypeTitle = 'stats.durationTotal' %}
|
||||
{% endif %}
|
||||
{% set columns = 2 %}
|
||||
{% set columns = 0 %}
|
||||
{% set totalCurrency = false %}
|
||||
<table class="table table-hover dataTable">
|
||||
<thead>
|
||||
@@ -30,82 +30,90 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% set oldCustomer = null %}
|
||||
{% for project in rows|sort((a,b) => a.project.customer.id <=> b.project.customer.id) %}
|
||||
{% set currency = project.project.customer.currency %}
|
||||
{% if oldCustomer is null or oldCustomer != project.project.customer.id %}
|
||||
{% set oldCustomer = project.project.customer.id %}
|
||||
{% if totalCurrency is same as (false) %}
|
||||
{% set totalCurrency = currency %}
|
||||
{% elseif project.project.customer.currency != totalCurrency %}
|
||||
{% set totalCurrency = null %}
|
||||
{% endif %}
|
||||
<tr class="summary">
|
||||
<td colspan="{{ columns }}">{{ widgets.label_customer(project.project.customer) }}</td>
|
||||
</tr>
|
||||
{% for customerId, data in rows %}
|
||||
{% set currency = data.customer.currency %}
|
||||
{% if totalCurrency is same as (false) %}
|
||||
{% set totalCurrency = currency %}
|
||||
{% elseif data.customer != totalCurrency %}
|
||||
{% set totalCurrency = null %}
|
||||
{% endif %}
|
||||
{% set absoluteDuration = absoluteDuration + project.duration %}
|
||||
{% set absoluteInternalRate = absoluteInternalRate + project.internalRate %}
|
||||
{% set absoluteRate = absoluteRate + project.rate %}
|
||||
<tr class="project">
|
||||
<td class="text-nowrap">
|
||||
<strong>{{ widgets.label_project(project.project) }}</strong>
|
||||
</td>
|
||||
<td class="text-nowrap text-center total">
|
||||
<tr class="summary">
|
||||
<td>{{ widgets.label_customer(data.customer) }}</td>
|
||||
<td class="text-center total">
|
||||
{% if dataType == 'rate' %}
|
||||
{{ project.rate|money(currency) }}
|
||||
{{ data.rate|money(currency) }}
|
||||
{% elseif dataType == 'internalRate' %}
|
||||
{{ project.internalRate|money(currency) }}
|
||||
{{ data.internalRate|money(currency) }}
|
||||
{% else %}
|
||||
{{ project.duration|duration(decimal) }}
|
||||
{{ data.duration|duration(decimal) }}
|
||||
{% endif %}
|
||||
</td>
|
||||
{% for column in project.data.data %}
|
||||
{% set dateKey = column.date|report_date %}
|
||||
<td class="text-nowrap text-center day-total {% block column_classes_project %}{% endblock %}">
|
||||
{% if column.duration > 0 or column.rate > 0 or column.internalRate > 0 %}
|
||||
{% if dataType == 'rate' %}
|
||||
{% set totalsRate = totalsRate|merge({(dateKey): (totalsRate[dateKey] + column.rate)}) %}
|
||||
<strong>{{ column.rate|money(currency) }}</strong>
|
||||
{% elseif dataType == 'internalRate' %}
|
||||
{% set totalsInternalRate = totalsInternalRate|merge({(dateKey): (totalsInternalRate[dateKey] + column.internalRate)}) %}
|
||||
<strong>{{ column.internalRate|money(currency) }}</strong>
|
||||
{% else %}
|
||||
{% set totalsDuration = totalsDuration|merge({(dateKey): (totalsDuration[dateKey] + column.duration)}) %}
|
||||
<strong>{{ column.duration|duration(decimal) }}</strong>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</td>
|
||||
{% endfor %}
|
||||
<td colspan="{{ columns }}"></td>
|
||||
</tr>
|
||||
{% for activity in project.activities %}
|
||||
<tr class="activity">
|
||||
{% for project in data.projects %}
|
||||
{% set absoluteDuration = absoluteDuration + project.duration %}
|
||||
{% set absoluteInternalRate = absoluteInternalRate + project.internalRate %}
|
||||
{% set absoluteRate = absoluteRate + project.rate %}
|
||||
<tr class="project">
|
||||
<td class="text-nowrap">
|
||||
{{ widgets.label_activity(activity.activity) }}
|
||||
<strong>{{ widgets.label_project(project.project) }}</strong>
|
||||
</td>
|
||||
<td class="text-nowrap text-center">
|
||||
<td class="text-nowrap text-center total">
|
||||
{% if dataType == 'rate' %}
|
||||
{{ activity.rate|money(currency) }}
|
||||
{{ project.rate|money(currency) }}
|
||||
{% elseif dataType == 'internalRate' %}
|
||||
{{ activity.internalRate|money(currency) }}
|
||||
{{ project.internalRate|money(currency) }}
|
||||
{% else %}
|
||||
{{ activity.duration|duration(decimal) }}
|
||||
{{ project.duration|duration(decimal) }}
|
||||
{% endif %}
|
||||
</td>
|
||||
{% for column in activity.data.data %}
|
||||
<td class="text-nowrap text-center day-total {% block column_classes_activity %}{% endblock %}">
|
||||
{% for column in project.data.data %}
|
||||
{% set dateKey = column.date|report_date %}
|
||||
<td class="text-nowrap text-center day-total {% block column_classes_project %}{% endblock %}">
|
||||
{% if column.duration > 0 or column.rate > 0 or column.internalRate > 0 %}
|
||||
{% if dataType == 'rate' %}
|
||||
{{ column.rate|money(currency) }}
|
||||
{% set totalsRate = totalsRate|merge({(dateKey): (totalsRate[dateKey] + column.rate)}) %}
|
||||
<strong>{{ column.rate|money(currency) }}</strong>
|
||||
{% elseif dataType == 'internalRate' %}
|
||||
{{ column.internalRate|money(currency) }}
|
||||
{% set totalsInternalRate = totalsInternalRate|merge({(dateKey): (totalsInternalRate[dateKey] + column.internalRate)}) %}
|
||||
<strong>{{ column.internalRate|money(currency) }}</strong>
|
||||
{% else %}
|
||||
{{ column.duration|duration(decimal) }}
|
||||
{% set totalsDuration = totalsDuration|merge({(dateKey): (totalsDuration[dateKey] + column.duration)}) %}
|
||||
<strong>{{ column.duration|duration(decimal) }}</strong>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</td>
|
||||
{% endfor %}
|
||||
</tr>
|
||||
{% for activity in project.activities %}
|
||||
<tr class="activity">
|
||||
<td class="text-nowrap">
|
||||
{{ widgets.label_activity(activity.activity) }}
|
||||
</td>
|
||||
<td class="text-nowrap text-center">
|
||||
{% if dataType == 'rate' %}
|
||||
{{ activity.rate|money(currency) }}
|
||||
{% elseif dataType == 'internalRate' %}
|
||||
{{ activity.internalRate|money(currency) }}
|
||||
{% else %}
|
||||
{{ activity.duration|duration(decimal) }}
|
||||
{% endif %}
|
||||
</td>
|
||||
{% for column in activity.data.data %}
|
||||
<td class="text-nowrap text-center day-total {% block column_classes_activity %}{% endblock %}">
|
||||
{% if column.duration > 0 or column.rate > 0 or column.internalRate > 0 %}
|
||||
{% if dataType == 'rate' %}
|
||||
{{ column.rate|money(currency) }}
|
||||
{% elseif dataType == 'internalRate' %}
|
||||
{{ column.internalRate|money(currency) }}
|
||||
{% else %}
|
||||
{{ column.duration|duration(decimal) }}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</td>
|
||||
{% endfor %}
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
||||
@@ -85,8 +85,7 @@
|
||||
{%- endblock %}
|
||||
{% block box_tools %}
|
||||
{%- if canSeeReport -%}
|
||||
{% from '@theme/components/buttons.html.twig' import action_cardtoolbutton %}
|
||||
{{ action_cardtoolbutton('reporting', {'url': path('report_user_year', {'user': user.id, 'date': year ~ '-01-01'})}) }}
|
||||
{{ macros.card_tool_button('reporting', {'url': path('report_user_year', {'user': user.id, 'date': year ~ '-01-01'})}) }}
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
{% block box_body %}
|
||||
|
||||
Reference in New Issue
Block a user