diff --git a/src/app/pages/gabinete-digital/despachos-pr/despacho-pr/despacho-pr.page.ts b/src/app/pages/gabinete-digital/despachos-pr/despacho-pr/despacho-pr.page.ts index 516c1c439..554908a6f 100644 --- a/src/app/pages/gabinete-digital/despachos-pr/despacho-pr/despacho-pr.page.ts +++ b/src/app/pages/gabinete-digital/despachos-pr/despacho-pr/despacho-pr.page.ts @@ -19,7 +19,7 @@ import { ToastService } from 'src/app/services/toast.service'; import { Location } from '@angular/common' import { DespachoService } from 'src/app/Rules/despacho.service'; import { ViewDocumentPage } from 'src/app/modals/view-document/view-document.page'; - +import { Platform } from '@ionic/angular'; import { SqliteService } from 'src/app/services/sqlite.service'; import { BackgroundService } from 'src/app/services/background.service'; @@ -57,7 +57,8 @@ export class DespachoPrPage implements OnInit { private location: Location, private despachoService: DespachoService, private sqliteservice: SqliteService, - private backgroundservice: BackgroundService + private backgroundservice: BackgroundService, + private platform: Platform, ) { this.activatedRoute.paramMap.subscribe(params => { if (params["params"].SerialNumber) { @@ -123,16 +124,14 @@ export class DespachoPrPage implements OnInit { console.log(this.task); console.log('GetTask', res); - this.sqliteservice.updateProcess(res) + this.updateProcessOnDB(res); let thedate = new Date(this.task.CreateDate); this.customDate = this.days[thedate.getDay()] + ", " + thedate.getDate() + " de " + (this.months[thedate.getMonth()]); this.processes.GetTaskParticipants(this.task.FolderId).subscribe(users => { - this.sqliteservice.updateProcessInterveners(JSON.stringify(this.serialNumber), JSON.stringify(users)).then(() => { - console.log('internen despacho pr ') - }) + this.updateProcessInterveners(users) this.intervenientes = users.filter(user => { return user.Type == 'I'; }); @@ -162,6 +161,19 @@ export class DespachoPrPage implements OnInit { }); } + updateProcessOnDB(res) { + if (this.platform.is('desktop') || this.platform.is('mobileweb')) { + } else { + this.sqliteservice.updateProcess(res); + } + } + updateProcessInterveners(users) { + if (this.platform.is('desktop') || this.platform.is('mobileweb')) { + } else { + this.sqliteservice.updateProcessInterveners(JSON.stringify(this.serialNumber), JSON.stringify(users)) + } + } + getFromDB() { this.sqliteservice.getProcessById(this.serialNumber).then((process: any[]) => { diff --git a/src/app/pages/gabinete-digital/despachos/despacho/despacho.page.ts b/src/app/pages/gabinete-digital/despachos/despacho/despacho.page.ts index fe7b6f9f5..8a3f01708 100644 --- a/src/app/pages/gabinete-digital/despachos/despacho/despacho.page.ts +++ b/src/app/pages/gabinete-digital/despachos/despacho/despacho.page.ts @@ -144,14 +144,14 @@ export class DespachoPage implements OnInit { "Status": res.workflowInstanceDataFields.Status, } - this.sqliteservice.updateProcess(res); + this.updateProcessOnDB(res); this.fulltask = res; let thedate = new Date(this.task.CreateDate); this.customDate = this.days[thedate.getDay()] + ", " + thedate.getDate() + " de " + (this.months[thedate.getMonth()]); this.processes.GetTaskParticipants(this.task.FolderID).subscribe(users => { - this.sqliteservice.updateProcessInterveners(JSON.stringify(this.serialnumber), JSON.stringify(users)) + this.updateProcessInterveners(users) console.log('interveniers online', users) this.intervenientes = users.filter(user => { @@ -177,72 +177,88 @@ export class DespachoPage implements OnInit { }); } + updateProcessOnDB(res) { + if (this.platform.is('desktop') || this.platform.is('mobileweb')) { + } else { + this.sqliteservice.updateProcess(res); + } + } + updateProcessInterveners(users) { + if (this.platform.is('desktop') || this.platform.is('mobileweb')) { + } else { + this.sqliteservice.updateProcessInterveners(JSON.stringify(this.serialnumber), JSON.stringify(users)) + } + } + getFromDb() { this.platform.ready().then(() => { - this.sqliteservice.getProcessById(this.serialnumber).then((process) => { + if (this.platform.is('desktop') || this.platform.is('mobileweb')) { + } else { + this.sqliteservice.getProcessById(this.serialnumber).then((process) => { - var workflow = JSON.parse(process[0].workflowInstanceDataFields); - var intervine = JSON.parse(process[0].interveners) - var origina - if (process[0].originator === "undefined") { - origina = "" - } else { - origina = JSON.parse(process[0].originator) - } + var workflow = JSON.parse(process[0].workflowInstanceDataFields); + var intervine = JSON.parse(process[0].interveners) + var origina + if (process[0].originator === "undefined") { + origina = "" + } else { + origina = JSON.parse(process[0].originator) + } - console.log('sqlite', process) + console.log('sqlite', process) - this.task = { - "SerialNumber": process[0].serialNumber, - "Folio": workflow.Subject, - "Senders": origina.email || process[0].originator, - "CreateDate": momentG(new Date(process[0].taskStartDate), 'yyyy-MM-dd HH:mm:ss'), - "DocumentURL": workflow.ViewerRequest, - "Remetente": workflow.Sender, - "Note": workflow.TaskMessage || workflow.Note, - "FolderId": workflow.FolderID, - "FsId": workflow.FsId, - "DocId": workflow.DocID, - "DocumentsQty": process[0].DocumentsQty, - "WorkflowName": process[0].workflowDisplayName, - "DeadlineType": workflow.DeadlineType, - "activityInstanceName": process[0].activityInstanceName, - "Status": workflow.Status, - } + this.task = { + "SerialNumber": process[0].serialNumber, + "Folio": workflow.Subject, + "Senders": origina.email || process[0].originator, + "CreateDate": momentG(new Date(process[0].taskStartDate), 'yyyy-MM-dd HH:mm:ss'), + "DocumentURL": workflow.ViewerRequest, + "Remetente": workflow.Sender, + "Note": workflow.TaskMessage || workflow.Note, + "FolderId": workflow.FolderID, + "FsId": workflow.FsId, + "DocId": workflow.DocID, + "DocumentsQty": process[0].DocumentsQty, + "WorkflowName": process[0].workflowDisplayName, + "DeadlineType": workflow.DeadlineType, + "activityInstanceName": process[0].activityInstanceName, + "Status": workflow.Status, + } - let thedate = new Date(this.task.CreateDate); - this.customDate = this.days[thedate.getDay()] + ", " + thedate.getDate() + " de " + (this.months[thedate.getMonth()]); + let thedate = new Date(this.task.CreateDate); + this.customDate = this.days[thedate.getDay()] + ", " + thedate.getDate() + " de " + (this.months[thedate.getMonth()]); - let fulltak = { - Documents: JSON.parse(process[0].Documents), - actions: JSON.parse(process[0].actions), - activityInstanceName: process[0].activityInstanceName, - formURL: process[0].formURL, - originator: JSON.parse(process[0].originator), - serialNumber: process[0].serialNumber, - taskStartDate: process[0].taskStartDate, - totalDocuments: process[0].totalDocuments, - workflowDisplayName: process[0].workflowDisplayName, - workflowID: process[0].workflowID, - workflowInstanceDataFields: JSON.parse(process[0].workflowInstanceDataFields), - workflowInstanceFolio: process[0].workflowInstanceFolio, - workflowInstanceID: process[0].workflowInstanceID, - workflowName: process[0].workflowName - } - this.fulltask = fulltak; + let fulltak = { + Documents: JSON.parse(process[0].Documents), + actions: JSON.parse(process[0].actions), + activityInstanceName: process[0].activityInstanceName, + formURL: process[0].formURL, + originator: JSON.parse(process[0].originator), + serialNumber: process[0].serialNumber, + taskStartDate: process[0].taskStartDate, + totalDocuments: process[0].totalDocuments, + workflowDisplayName: process[0].workflowDisplayName, + workflowID: process[0].workflowID, + workflowInstanceDataFields: JSON.parse(process[0].workflowInstanceDataFields), + workflowInstanceFolio: process[0].workflowInstanceFolio, + workflowInstanceID: process[0].workflowInstanceID, + workflowName: process[0].workflowName + } + this.fulltask = fulltak; - console.log('interveniers offline', intervine) - this.intervenientes = intervine.filter(user => { - console.log('interveniers offline 2', user) - return user.Type == 'I'; - }); - this.cc = intervine.filter(user => { - console.log('interveniers offline 3', user) - return user.Type == 'CC'; - }); + console.log('interveniers offline', intervine) + this.intervenientes = intervine.filter(user => { + console.log('interveniers offline 2', user) + return user.Type == 'I'; + }); + this.cc = intervine.filter(user => { + console.log('interveniers offline 3', user) + return user.Type == 'CC'; + }); - }) + }) + } }) } diff --git a/src/app/pages/gabinete-digital/despachos/despachos.page.ts b/src/app/pages/gabinete-digital/despachos/despachos.page.ts index cf1beeaa0..d55459f72 100644 --- a/src/app/pages/gabinete-digital/despachos/despachos.page.ts +++ b/src/app/pages/gabinete-digital/despachos/despachos.page.ts @@ -76,32 +76,35 @@ export class DespachosPage implements OnInit { getFromDb() { this.platform.ready().then(() => { - this.sqliteservice.getprocessByworkflow('Despacho').then((process: any[]) => { - var listtopresent = []; - process.forEach(element => { - var workflow = JSON.parse(element.workflowInstanceDataFields); - let task = { - "CreateDate": element.taskStartDate, - "DocId": workflow.DispatchDocID, - "DocumentURL": undefined, - "DocumentsQty": element.totalDocuments, - "FolderID": workflow.FolderID, - "Folio": workflow.Subject, - "Remetente": undefined, - "Senders": workflow.Sender, - "SerialNumber": element.serialNumber, - "Status": workflow.Status, - "WorkflowName": element.workflowDisplayName - } + if (this.platform.is('desktop') || this.platform.is('mobileweb')) { + } else { + this.sqliteservice.getprocessByworkflow('Despacho').then((process: any[]) => { + var listtopresent = []; + process.forEach(element => { + var workflow = JSON.parse(element.workflowInstanceDataFields); + let task = { + "CreateDate": element.taskStartDate, + "DocId": workflow.DispatchDocID, + "DocumentURL": undefined, + "DocumentsQty": element.totalDocuments, + "FolderID": workflow.FolderID, + "Folio": workflow.Subject, + "Remetente": undefined, + "Senders": workflow.Sender, + "SerialNumber": element.serialNumber, + "Status": workflow.Status, + "WorkflowName": element.workflowDisplayName + } - listtopresent.push(task); + listtopresent.push(task); - }); + }); - this.listToPresent = listtopresent; - console.log('Tarefas de despach', this.listToPresent) + this.listToPresent = listtopresent; + console.log('Tarefas de despach', this.listToPresent) - }) + }) + } }) } diff --git a/src/app/pages/gabinete-digital/diplomas/diploma/diploma.page.ts b/src/app/pages/gabinete-digital/diplomas/diploma/diploma.page.ts index ae310da3d..757cc5000 100644 --- a/src/app/pages/gabinete-digital/diplomas/diploma/diploma.page.ts +++ b/src/app/pages/gabinete-digital/diplomas/diploma/diploma.page.ts @@ -12,7 +12,7 @@ import { DeplomaOptionsPage } from 'src/app/shared/popover/deploma-options/deplo import { ToastService } from 'src/app/services/toast.service'; import { Location } from '@angular/common'; import { ViewDocumentPage } from 'src/app/modals/view-document/view-document.page'; - +import { Platform } from '@ionic/angular'; import { SqliteService } from 'src/app/services/sqlite.service'; import { BackgroundService } from 'src/app/services/background.service'; @@ -47,7 +47,8 @@ export class DiplomaPage implements OnInit { private toastService: ToastService, private location: Location, private sqliteservice: SqliteService, - private backgroundservice: BackgroundService + private backgroundservice: BackgroundService, + private platform: Platform, ) { this.activatedRoute.paramMap.subscribe(params => { // console.log(params["params"]); @@ -134,15 +135,13 @@ export class DiplomaPage implements OnInit { "activityInstanceName": res.activityInstanceName, } this.fulltask = res; - this.sqliteservice.updateProcess(res) + this.updateProcessOnDB(res) let thedate = new Date(this.task.CreateDate); this.customDate = this.days[thedate.getDay()] + ", " + thedate.getDate() + " de " + (this.months[thedate.getMonth()]); this.processes.GetTaskParticipants(this.task.FolderId).subscribe(users => { - this.sqliteservice.updateProcessInterveners(JSON.stringify(this.serialNumber), JSON.stringify(users)).then(() => { - console.log('internen diploma ') - }) + this.updateProcessInterveners(users) this.intervenientes = users.filter(user => { return user.Type == 'I'; }); @@ -167,6 +166,19 @@ export class DiplomaPage implements OnInit { } + updateProcessOnDB(res) { + if (this.platform.is('desktop') || this.platform.is('mobileweb')) { + } else { + this.sqliteservice.updateProcess(res); + } + } + updateProcessInterveners(users) { + if (this.platform.is('desktop') || this.platform.is('mobileweb')) { + } else { + this.sqliteservice.updateProcessInterveners(JSON.stringify(this.serialNumber), JSON.stringify(users)) + } + } + getFromDb() { this.sqliteservice.getProcessById(this.serialNumber).then((process) => { diff --git a/src/app/pages/gabinete-digital/gabinete-digital.page.ts b/src/app/pages/gabinete-digital/gabinete-digital.page.ts index 346fe3e06..31df012f0 100644 --- a/src/app/pages/gabinete-digital/gabinete-digital.page.ts +++ b/src/app/pages/gabinete-digital/gabinete-digital.page.ts @@ -268,27 +268,31 @@ export class GabineteDigitalPage implements OnInit, DoCheck { addProcessToDB(data) { this.platform.ready().then(() => { - data.forEach(element => { + if (this.platform.is('desktop') || this.platform.is('mobileweb')) { - let process = { - "serialNumber": element.serialNumber, - "workflowInstanceFolio": element.workflowInstanceFolio, - "Documents": element.Documents, - "actions": element.actions, - "activityInstanceName": element.activityInstanceName, - "formURL": element.formURL, - "originator": element.originator, - "taskStartDate": element.taskStartDate, - "totalDocuments": element.totalDocuments, - "workflowDisplayName": element.workflowDisplayName, - "workflowID": element.workflowID, - "workflowInstanceDataFields": element.workflowInstanceDataFields, - "workflowInstanceID": element.workflowInstanceID, - "workflowName": element.workflowName - } + } else { + data.forEach(element => { - this.sqliteservice.addProcess(process); - }); + let process = { + "serialNumber": element.serialNumber, + "workflowInstanceFolio": element.workflowInstanceFolio, + "Documents": element.Documents, + "actions": element.actions, + "activityInstanceName": element.activityInstanceName, + "formURL": element.formURL, + "originator": element.originator, + "taskStartDate": element.taskStartDate, + "totalDocuments": element.totalDocuments, + "workflowDisplayName": element.workflowDisplayName, + "workflowID": element.workflowID, + "workflowInstanceDataFields": element.workflowInstanceDataFields, + "workflowInstanceID": element.workflowInstanceID, + "workflowName": element.workflowName + } + + this.sqliteservice.addProcess(process); + }); + } }); } diff --git a/src/app/pages/gabinete-digital/pedidos/pedido/pedido.page.ts b/src/app/pages/gabinete-digital/pedidos/pedido/pedido.page.ts index 3e8365b55..a41a13c1a 100644 --- a/src/app/pages/gabinete-digital/pedidos/pedido/pedido.page.ts +++ b/src/app/pages/gabinete-digital/pedidos/pedido/pedido.page.ts @@ -16,7 +16,7 @@ import { AuthService } from 'src/app/services/auth.service'; import { LoginUserRespose } from 'src/app/models/user.model'; import { ToastService } from 'src/app/services/toast.service'; import { ForwardPage } from 'src/app/modals/forward/forward.page'; - +import { Platform } from '@ionic/angular'; import { Location } from '@angular/common'; import { PedidoService } from 'src/app/Rules/pedido.service'; @@ -62,7 +62,8 @@ export class PedidoPage implements OnInit { private location: Location, private pedidoService: PedidoService, private sqliteservice: SqliteService, - private backgroundservices: BackgroundService + private backgroundservices: BackgroundService, + private platform: Platform ) { this.loggeduser = authService.ValidatedUser; @@ -127,7 +128,7 @@ export class PedidoPage implements OnInit { "Status": res.workflowInstanceDataFields.Status, } console.log(this.task); - this.sqliteservice.updateProcess(res); + this.updateProcess(res); } else if (res.workflowDisplayName == 'Pedido de Deferimento') { @@ -152,16 +153,14 @@ export class PedidoPage implements OnInit { "activityInstanceName": res.activityInstanceName, "Status": res.workflowInstanceDataFields.Status, } - this.sqliteservice.updateProcess(res); + this.updateProcess(res) } let thedate = new Date(res.taskStartDate); this.customDate = this.days[thedate.getDay()] + ", " + thedate.getDate() + " de " + (this.months[thedate.getMonth()]); this.processes.GetTaskParticipants(res.workflowInstanceDataFields.FolderID).subscribe(users => { - this.sqliteservice.updateProcessInterveners(JSON.stringify(this.serialnumber), JSON.stringify(users)).then(() => { - console.log('Pedido ') - }) + this.updateProcessInterveners(users) this.intervenientes = users.filter(user => { return user.Type == 'I'; }); @@ -186,93 +185,109 @@ export class PedidoPage implements OnInit { }); } + updateProcess(res) { + if (this.platform.is('desktop') || this.platform.is('mobileweb')) { + } else { + this.sqliteservice.updateProcess(res); + } + } + + updateProcessInterveners(users) { + if (this.platform.is('desktop') || this.platform.is('mobileweb')) { + } else { + this.sqliteservice.updateProcessInterveners(JSON.stringify(this.serialnumber), JSON.stringify(users)); + } + } + getfromDb() { + if (this.platform.is('desktop') || this.platform.is('mobileweb')) { + } else { + this.sqliteservice.getProcessById(this.serialnumber).then((process) => { - this.sqliteservice.getProcessById(this.serialnumber).then((process) => { + console.log('PROCESS BY ID', process, this.serialnumber) - console.log('PROCESS BY ID', process, this.serialnumber) - - let fulltak = { - Documents: JSON.parse(process[0].Documents) || [], - actions: JSON.parse(process[0].actions), - activityInstanceName: process[0].activityInstanceName, - formURL: process[0].formURL, - originator: JSON.parse(process[0].originator), - serialNumber: process[0].serialNumber, - taskStartDate: process[0].taskStartDate, - totalDocuments: process[0].totalDocuments, - workflowDisplayName: process[0].workflowDisplayName, - workflowID: process[0].workflowID, - workflowInstanceDataFields: JSON.parse(process[0].workflowInstanceDataFields), - workflowInstanceFolio: process[0].workflowInstanceFolio, - workflowInstanceID: process[0].workflowInstanceID, - workflowName: process[0].workflowName - } - - this.fulltask = fulltak; - console.log('FULLTAK OFFLINE', this.fulltask); - - if (process[0].workflowDisplayName == 'Pedido de Parecer' || process[0].workflowDisplayName == 'Pedido de Parecer do Presidente') { - let date = new Date(process[0].taskStartDate); - date.setMonth(date.getMonth() + 1); - let taskDate = date.getFullYear() + "-" + date.getMonth() + "-" + date.getDate() + " " + date.getHours() + ":" + date.getMinutes() + ":" + date.getSeconds(); - - this.task = { - "SerialNumber": process[0].serialNumber, - "Folio": JSON.parse(process[0].workflowInstanceDataFields).Subject, - "Senders": JSON.parse(process[0].workflowInstanceDataFields).Sender, - "CreateDate": taskDate, - "DocumentURL": JSON.parse(process[0].workflowInstanceDataFields).ViewerRequest, - "Remetente": JSON.parse(process[0].workflowInstanceDataFields).Sender, - "Note": JSON.parse(process[0].workflowInstanceDataFields).TaskMessage, - "FolderId": JSON.parse(process[0].workflowInstanceDataFields).FolderID, - "FsId": '361', - "DocId": JSON.parse(process[0].workflowInstanceDataFields).DocIdDeferimento, - "WorkflowName": process[0].workflowDisplayName, - "DeadlineType": JSON.parse(process[0].workflowInstanceDataFields).DeadlineType, - "ProcessInstanceID": JSON.parse(process[0].workflowInstanceDataFields).InstanceID, - "activityInstanceName": process[0].activityInstanceName, - "Status": JSON.parse(process[0].workflowInstanceDataFields).Status, + let fulltak = { + Documents: JSON.parse(process[0].Documents) || [], + actions: JSON.parse(process[0].actions), + activityInstanceName: process[0].activityInstanceName, + formURL: process[0].formURL, + originator: JSON.parse(process[0].originator), + serialNumber: process[0].serialNumber, + taskStartDate: process[0].taskStartDate, + totalDocuments: process[0].totalDocuments, + workflowDisplayName: process[0].workflowDisplayName, + workflowID: process[0].workflowID, + workflowInstanceDataFields: JSON.parse(process[0].workflowInstanceDataFields), + workflowInstanceFolio: process[0].workflowInstanceFolio, + workflowInstanceID: process[0].workflowInstanceID, + workflowName: process[0].workflowName } - this.attachments = JSON.parse(process[0].Documents); - } else if (process[0].workflowDisplayName == 'Pedido de Deferimento') { + this.fulltask = fulltak; + console.log('FULLTAK OFFLINE', this.fulltask); - let date = new Date(process[0].taskStartDate); - date.setMonth(date.getMonth() + 1); - let taskDate = date.getFullYear() + "-" + date.getMonth() + "-" + date.getDate() + " " + date.getHours() + ":" + date.getMinutes() + ":" + date.getSeconds(); - this.task = { - "SerialNumber": process[0].serialNumber, - "Folio": JSON.parse(process[0].workflowInstanceDataFields).Subject, - "Senders": JSON.parse(process[0].workflowInstanceDataFields).Sender, - "CreateDate": taskDate, - "DocumentURL": JSON.parse(process[0].workflowInstanceDataFields).ViewerRequest, - "Remetente": JSON.parse(process[0].workflowInstanceDataFields).Sender, - "Note": JSON.parse(process[0].workflowInstanceDataFields).TaskMessage, - "FolderId": JSON.parse(process[0].workflowInstanceDataFields).FolderID, - "FsId": '361', - "DocId": JSON.parse(process[0].workflowInstanceDataFields).DocIdDeferimento, - "WorkflowName": process[0].workflowDisplayName, - "DeadlineType": JSON.parse(process[0].workflowInstanceDataFields).DeadlineType, - "ProcessInstanceID": JSON.parse(process[0].workflowInstanceDataFields).InstanceID, - "activityInstanceName": process[0].activityInstanceName, - "Status": JSON.parse(process[0].workflowInstanceDataFields).Status, + if (process[0].workflowDisplayName == 'Pedido de Parecer' || process[0].workflowDisplayName == 'Pedido de Parecer do Presidente') { + let date = new Date(process[0].taskStartDate); + date.setMonth(date.getMonth() + 1); + let taskDate = date.getFullYear() + "-" + date.getMonth() + "-" + date.getDate() + " " + date.getHours() + ":" + date.getMinutes() + ":" + date.getSeconds(); + + this.task = { + "SerialNumber": process[0].serialNumber, + "Folio": JSON.parse(process[0].workflowInstanceDataFields).Subject, + "Senders": JSON.parse(process[0].workflowInstanceDataFields).Sender, + "CreateDate": taskDate, + "DocumentURL": JSON.parse(process[0].workflowInstanceDataFields).ViewerRequest, + "Remetente": JSON.parse(process[0].workflowInstanceDataFields).Sender, + "Note": JSON.parse(process[0].workflowInstanceDataFields).TaskMessage, + "FolderId": JSON.parse(process[0].workflowInstanceDataFields).FolderID, + "FsId": '361', + "DocId": JSON.parse(process[0].workflowInstanceDataFields).DocIdDeferimento, + "WorkflowName": process[0].workflowDisplayName, + "DeadlineType": JSON.parse(process[0].workflowInstanceDataFields).DeadlineType, + "ProcessInstanceID": JSON.parse(process[0].workflowInstanceDataFields).InstanceID, + "activityInstanceName": process[0].activityInstanceName, + "Status": JSON.parse(process[0].workflowInstanceDataFields).Status, + } + + this.attachments = JSON.parse(process[0].Documents); + } else if (process[0].workflowDisplayName == 'Pedido de Deferimento') { + + let date = new Date(process[0].taskStartDate); + date.setMonth(date.getMonth() + 1); + let taskDate = date.getFullYear() + "-" + date.getMonth() + "-" + date.getDate() + " " + date.getHours() + ":" + date.getMinutes() + ":" + date.getSeconds(); + this.task = { + "SerialNumber": process[0].serialNumber, + "Folio": JSON.parse(process[0].workflowInstanceDataFields).Subject, + "Senders": JSON.parse(process[0].workflowInstanceDataFields).Sender, + "CreateDate": taskDate, + "DocumentURL": JSON.parse(process[0].workflowInstanceDataFields).ViewerRequest, + "Remetente": JSON.parse(process[0].workflowInstanceDataFields).Sender, + "Note": JSON.parse(process[0].workflowInstanceDataFields).TaskMessage, + "FolderId": JSON.parse(process[0].workflowInstanceDataFields).FolderID, + "FsId": '361', + "DocId": JSON.parse(process[0].workflowInstanceDataFields).DocIdDeferimento, + "WorkflowName": process[0].workflowDisplayName, + "DeadlineType": JSON.parse(process[0].workflowInstanceDataFields).DeadlineType, + "ProcessInstanceID": JSON.parse(process[0].workflowInstanceDataFields).InstanceID, + "activityInstanceName": process[0].activityInstanceName, + "Status": JSON.parse(process[0].workflowInstanceDataFields).Status, + } + this.attachments = JSON.parse(process[0].Documents); } - this.attachments = JSON.parse(process[0].Documents); - } - let thedate = new Date(process[0].taskStartDate); - this.customDate = this.days[thedate.getDay()] + ", " + thedate.getDate() + " de " + (this.months[thedate.getMonth()]); + let thedate = new Date(process[0].taskStartDate); + this.customDate = this.days[thedate.getDay()] + ", " + thedate.getDate() + " de " + (this.months[thedate.getMonth()]); - this.intervenientes = JSON.parse(process[0].interveners).filter(user => { - return user.Type == 'I'; - }); - this.cc = JSON.parse(process[0].interveners).filter(user => { - return user.Type == 'CC'; - }); - this.getDocumentDetails(JSON.parse(process[0].workflowInstanceDataFields).FolderID, '361'); + this.intervenientes = JSON.parse(process[0].interveners).filter(user => { + return user.Type == 'I'; + }); + this.cc = JSON.parse(process[0].interveners).filter(user => { + return user.Type == 'CC'; + }); + this.getDocumentDetails(JSON.parse(process[0].workflowInstanceDataFields).FolderID, '361'); - }) + }) + } } getDocumentDetails(forlderId: string, applicationId: string) { diff --git a/src/app/pages/publications/publications.page.ts b/src/app/pages/publications/publications.page.ts index f98774851..81a1d09b0 100644 --- a/src/app/pages/publications/publications.page.ts +++ b/src/app/pages/publications/publications.page.ts @@ -1,6 +1,6 @@ import { Component, OnInit } from '@angular/core'; import { Router, NavigationEnd } from '@angular/router'; -import { ModalController } from '@ionic/angular'; +import { ModalController, Platform } from '@ionic/angular'; import { PublicationFolder } from 'src/app/models/publicationfolder'; import { PublicationsService } from 'src/app/services/publications.service'; import { NewActionPage } from './new-action/new-action.page'; @@ -65,7 +65,8 @@ export class PublicationsPage implements OnInit { private publications: PublicationsService, private toastService: ToastService, private sqliteservice: SqliteService, - private backgroundservice: BackgroundService + private backgroundservice: BackgroundService, + private platform: Platform ) { this.months = ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"]; this.days = ["Domingo", "Segunda-feira", "Terça-feira", "Quarta-feira", "Quinta-feira", "Sexta-feira", "Sábado"]; @@ -150,7 +151,7 @@ export class PublicationsPage implements OnInit { ActionType: data.ActionType, } - this.sqliteservice.addactions(folder); + this.addActionToDB(folder) if (data.ActionType == "Evento") { console.log('Evento', folder) @@ -172,35 +173,45 @@ export class PublicationsPage implements OnInit { }); } + addActionToDB(folder) { + if (this.platform.is('desktop') || this.platform.is('mobileweb')) { + } else { + this.sqliteservice.addactions(folder); + } + } + getFromDB() { + + if (this.platform.is('desktop') || this.platform.is('mobileweb')) { + } else { + this.sqliteservice.getAllActions().then((actions: any[]) => { - this.sqliteservice.getAllActions().then((actions: any[]) => { + console.log('offline publi', actions) - console.log('offline publi', actions) + this.publicationsEventFolderList = new Array(); + this.publicationsTravelFolderList = new Array(); - this.publicationsEventFolderList = new Array(); - this.publicationsTravelFolderList = new Array(); + actions.forEach(data => { + let folder: PublicationFolder = { + ProcessId: data.ProcessId, + Description: data.Description, + Detail: data.Detail, + DateBegin: data.DateBegin, + DateEnd: data.DateEnd, + ActionType: data.ActionType, + } - actions.forEach(data => { - let folder: PublicationFolder = { - ProcessId: data.ProcessId, - Description: data.Description, - Detail: data.Detail, - DateBegin: data.DateBegin, - DateEnd: data.DateEnd, - ActionType: data.ActionType, - } + if (data.ActionType == "Evento") { + this.publicationsEventFolderList.push(folder); + } + else { + this.publicationsTravelFolderList.push(folder); + } + this.showLoader = false; + }); - if (data.ActionType == "Evento") { - this.publicationsEventFolderList.push(folder); - } - else { - this.publicationsTravelFolderList.push(folder); - } - this.showLoader = false; - }); - - }) + }) + } } async editAction(folderId?: string) {