refs #5836 defaulter
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Carlos Satorres 2023-06-22 11:42:21 +02:00
parent 56917fbfc4
commit 7f9d8da7a7
2 changed files with 15 additions and 0 deletions

View File

@ -54,6 +54,9 @@
<th field="clientFk">
<span translate>Client</span>
</th>
<th field="businessTypeFk">
<span translate>Es trabajador</span>
</th>
<th field="salesPersonFk">
<span translate>Comercial</span>
</th>
@ -110,6 +113,13 @@
{{::defaulter.clientName}}
</span>
</td>
<td>
<vn-check
label="isWorker"
ng-model="$ctrl.summary.isWorker"
disabled="true">
</vn-check>
</td>
<td>
<span
title="{{::defaulter.salesPersonName}}"

View File

@ -177,6 +177,11 @@ export default class Controller extends Section {
return [minHour, maxHour];
}
isWorker(){
if (businessFk === 'worker')
return true;
}
}
ngModule.vnComponent('vnClientDefaulter', {