closes #4834 create-worker-module #28

Merged
joan merged 27 commits from 4834-create-worker-module into dev 2023-03-08 09:54:59 +00:00
1 changed files with 4 additions and 2 deletions
Showing only changes of commit 9ed9e03b42 - Show all commits

View File

@ -143,13 +143,15 @@ function openDescriptorDialog(id) {
<q-item>
<q-item-section>
<q-item-label caption>{{ t('worker.summary.entPhone') }} </q-item-label>
<q-item-label>{{ worker.phone }}</q-item-label>
<q-item-label>{{ worker.phone == '' ? worker.phone : '-' }}</q-item-label>
</q-item-section>
</q-item>
<q-item>
<q-item-section>
<q-item-label caption>{{ t('worker.summary.personalPhone') }} </q-item-label>
<q-item-label>{{ worker.client.phone }}</q-item-label>
<q-item-label>{{
worker.client.phone == '' ? worker.client.phone : '-'
}}</q-item-label>
</q-item-section>
</q-item>
</q-list>