salix/modules/worker/front/time-control/index.html

115 lines
4.2 KiB
HTML
Raw Normal View History

2019-05-17 11:27:51 +00:00
<vn-crud-model
vn-id="model"
url="WorkerTimeControls/filter"
2019-05-17 11:27:51 +00:00
filter="::$ctrl.filter"
data="$ctrl.hours">
</vn-crud-model>
<vn-card class="vn-pa-lg vn-w-lg">
2019-11-10 10:08:44 +00:00
<vn-table model="model" auto-load="false">
<vn-thead>
<vn-tr>
<vn-td ng-repeat="weekday in $ctrl.weekDays" center>
<div class="weekday" translate>{{::$ctrl.weekdayNames[$index].name}}</div>
<div>
<span>{{::weekday.dated | date: 'dd'}}</span>
<span title="{{::weekday.dated | date: 'MMMM' | translate}}" translate>
{{::weekday.dated | date: 'MMMM'}}
</span>
</div>
<vn-chip
title="{{::weekday.event.name}}"
ng-class="{invisible: !weekday.event}">
<vn-avatar
ng-style="::{backgroundColor: weekday.event.color}">
</vn-avatar>
2019-11-05 07:59:48 +00:00
<div>
{{::weekday.event.name}}
2019-11-05 07:59:48 +00:00
</div>
</vn-chip>
2019-11-10 10:08:44 +00:00
</vn-td>
</vn-tr>
</vn-thead>
<vn-tbody>
<vn-tr>
<vn-td ng-repeat="weekday in $ctrl.weekDays" class="hours vn-pa-none" expand>
<section ng-repeat="hour in weekday.hours">
2019-11-10 10:08:44 +00:00
<vn-icon
icon="{{
::hour.direction == 'in' ? 'arrow_forward' : 'arrow_back'
}}"
title="{{
::(hour.direction == 'in' ? 'In' : 'Out') | translate
}}"
ng-class="::{'invisible': hour.direction == 'middle'}">
2019-11-10 10:08:44 +00:00
</vn-icon>
<vn-chip
ng-class="::{'colored': hour.manual}"
removable="::hour.manual"
on-remove="$ctrl.showDeleteDialog(hour)">
{{::hour.timed | date: 'HH:mm'}}
2019-11-05 07:59:48 +00:00
</vn-chip>
2019-11-10 10:08:44 +00:00
</section>
</vn-td>
</vn-tr>
</vn-tbody>
<vn-tfoot>
<vn-tr>
<vn-td ng-repeat="weekday in $ctrl.weekDays" center>
{{$ctrl.formatHours(weekday.workedHours)}} h.
2019-11-10 10:08:44 +00:00
</vn-td>
</vn-tr>
<vn-tr>
<vn-td center ng-repeat="weekday in $ctrl.weekDays">
<vn-icon-button
icon="add_circle"
vn-tooltip="Add time"
ng-click="$ctrl.showAddTimeDialog(weekday)">
</vn-icon-button>
</vn-td>
</vn-tr>
</vn-tfoot>
</vn-table>
</vn-card>
<vn-side-menu side="right">
<div class="vn-pa-md">
<div class="totalBox" style="text-align: center;">
<h6 translate>Hours</h6>
<vn-label-value
label="Week total"
value="{{$ctrl.weekTotalHours}} h.">
</vn-label-value>
<vn-label-value
label="Finish at"
value="{{$ctrl.getFinishTime()}}">
</vn-label-value>
2019-10-23 15:38:35 +00:00
</div>
2019-11-10 10:08:44 +00:00
<vn-calendar
class="vn-pt-md"
ng-model="$ctrl.date"
has-events="$ctrl.hasEvents($day)">
</vn-calendar>
</div>
</vn-side-menu>
2019-10-23 15:38:35 +00:00
<vn-dialog
vn-id="addTimeDialog"
2020-05-06 12:38:09 +00:00
on-response="$ctrl.addTime($response)"
message="Add time">
2019-05-17 11:27:51 +00:00
<tpl-body>
2020-05-06 12:38:09 +00:00
<vn-input-time
vn-one
ng-model="$ctrl.newTime"
label="Hour"
vn-focus>
</vn-input-time>
2019-05-17 11:27:51 +00:00
</tpl-body>
<tpl-buttons>
2019-10-30 15:57:14 +00:00
<input type="button" response="cancel" translate-attr="{value: 'Cancel'}"/>
<button response="accept" translate>Save</button>
2019-05-17 11:27:51 +00:00
</tpl-buttons>
2019-11-05 07:59:48 +00:00
</vn-dialog>
<vn-confirm
vn-id="delete-entry-dialog"
2019-11-05 10:57:05 +00:00
on-accept="$ctrl.deleteTimeEntry()"
2019-11-05 07:59:48 +00:00
message="This time entry will be deleted"
question="Are you sure you want to delete this entry?">
</vn-confirm>