fix: refs #7229 set right urls
gitea/salix/pipeline/pr-dev Build queued... Details

This commit is contained in:
Jorge Penadés 2024-11-20 13:52:24 +01:00
parent cde3c8c50a
commit bbb7815765
1 changed files with 12 additions and 12 deletions

View File

@ -86,30 +86,30 @@ module.exports = Self => {
'Tipo Documento': 'description', 'Tipo Documento': 'description',
'Stored on': 'created', 'Stored on': 'created',
'Document ID': 'id', 'Document ID': 'id',
'URL': 'download', 'URL': 'url',
'Stored by': 'name', 'Stored by': 'name',
'Estado': 'state' 'Estado': 'state'
}; };
workerDocuware = workerDocuware =
await models.Docuware.getById('hr', worker.lastName + ' ' + worker.firstName, docuwareParse) ?? []; await models.Docuware.getById('hr', worker?.lastName + ' ' + worker?.firstName, docuwareParse) ?? [];
const url = (await Self.app.models.Url.getUrl('docuware')) + 'WebClient';
for (document of workerDocuware) { for (document of workerDocuware) {
const docuwareId = document.id; const documentId = document.id;
const defaultData = { const defaultData = {
id: docuwareId, id: documentId,
workerFk: id, workerFk: id,
dmsFk: docuwareId, dmsFk: document.dmsFk,
dms: { dms: {
id: docuwareId, id: documentId,
file: docuwareId + '.pdf', file: document.dmsFk + '.pdf',
isDocuware: true, isDocuware: true,
hasFile: false, hasFile: false,
reference: worker.fi, reference: worker?.fi,
dmsFk: docuwareId, dmsFk: document.dmsFk,
url, url: document.url,
download: `WorkerDms/${document.dmsFk}/docuwareDownload`,
description: document.description + ' - ' + document.state, description: document.description + ' - ' + document.state,
download: document.download,
created: document.created, created: document.created,
dmsType: {name: 'Docuware'}, dmsType: {name: 'Docuware'},
worker: {id: null, user: {name: document.name}}, worker: {id: null, user: {name: document.name}},