Release 2.0.11 (#3932)
- added "today" as selector in date-range dropdown - added feature to prevent auto-select of dropdowns with only one entry - added hint that no changes were detected in batch update - added negative invoice sums are possible (e.g. for credit notes) - fix project list is expanded after submission - fix invalid date parsing causes 500 - fix: prevent auto-select of activities in export and invoice form (in case only one global activity exists) - fix team assignments for customer and project were not saved (using API now) - fix form fieldset with legend styling (e.g. team project assignment) - fix required meta-field were forced to have a value in batch update - fix tomselect meta-field was not disabled in batch update - fix unset internal rate is shown as 0 - fix one minute rounding problem in duration-only mode with "now" being default time - fix column width and label for duration-only mode - tech debt: cleanup invoice template (remove invoice layout) - tech debt: reorder for simpler comparison with invoice form - possible BC for devs: remove unused methods from form trait - bump composer packages (includes new translations for auth screens)
This commit is contained in:
@@ -18,13 +18,13 @@
|
||||
<th>
|
||||
{{ 'user'|trans }}
|
||||
</th>
|
||||
<th>
|
||||
<th class="text-end">
|
||||
{{ 'hourlyRate'|trans }}
|
||||
</th>
|
||||
<th class="d-none d-sm-table-cell">
|
||||
<th class="d-none d-sm-table-cell text-end">
|
||||
{{ 'internalRate'|trans }}
|
||||
</th>
|
||||
<th>
|
||||
<th class="text-center">
|
||||
{{ 'fixedRate'|trans }}
|
||||
</th>
|
||||
<th class="actions"></th>
|
||||
@@ -40,13 +40,17 @@
|
||||
–
|
||||
{% endif %}
|
||||
</td>
|
||||
<td>
|
||||
<td class="text-end">
|
||||
{{ rate.rate|money(currency) }}
|
||||
</td>
|
||||
<td class="d-none d-sm-table-cell">
|
||||
{{ rate.internalRate|money(currency) }}
|
||||
<td class="d-none d-sm-table-cell text-end">
|
||||
{% if rate.internalRate is not null %}
|
||||
{{ rate.internalRate|money(currency) }}
|
||||
{% else %}
|
||||
–
|
||||
{% endif %}
|
||||
</td>
|
||||
<td>
|
||||
<td class="text-center">
|
||||
{{ widgets.label_boolean(rate.fixed) }}
|
||||
</td>
|
||||
<td class="actions">
|
||||
|
||||
Reference in New Issue
Block a user