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

This commit is contained in:
Carlos Satorres 2023-06-26 13:55:39 +02:00
parent 7f9d8da7a7
commit 24ea18aeb0
4 changed files with 19 additions and 4 deletions

View File

@ -60,6 +60,7 @@ module.exports = Self => {
DISTINCT c.id clientFk,
c.name clientName,
c.salesPersonFk,
c.businessTypeFk businessType,
u.name salesPersonName,
d.amount,
co.created,

View File

@ -39,6 +39,11 @@
"type": "belongsTo",
"model": "PayMethod",
"foreignKey": "payMethod"
},
"businessType": {
"type":"belongsTo",
"model": "businessType",
"foreignKey": "businessTypeFk"
}
}
}

View File

@ -54,7 +54,7 @@
<th field="clientFk">
<span translate>Client</span>
</th>
<th field="businessTypeFk">
<th field="businessType">
<span translate>Es trabajador</span>
</th>
<th field="salesPersonFk">
@ -116,7 +116,7 @@
<td>
<vn-check
label="isWorker"
ng-model="$ctrl.summary.isWorker"
ng-model="$ctrl.isWorker"
disabled="true">
</vn-check>
</td>

View File

@ -62,6 +62,14 @@ export default class Controller extends Section {
{
field: 'defaulterSinced',
datepicker: true
},
{
field: 'businessType',
autocomplete: {
url: 'Clients',
showField: 'businessTypeFk',
valueField: 'id'
}
}
]
};
@ -152,6 +160,7 @@ export default class Controller extends Section {
switch (param) {
case 'creditInsurance':
case 'amount':
case 'businessTypeFk':
case 'clientFk':
case 'workerFk':
case 'country':
@ -179,7 +188,7 @@ export default class Controller extends Section {
}
isWorker() {
if (businessFk === 'worker')
if (businessType === 'worker')
return true;
}
}