mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
filter pass dates
This commit is contained in:
@@ -7,12 +7,12 @@
|
|||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-title{
|
.header-title {
|
||||||
font-family: Roboto;
|
font-family: Roboto;
|
||||||
font-size: rem(25);
|
font-size: rem(25);
|
||||||
padding: 0;
|
padding: 0;
|
||||||
color:#000;
|
color:#000;
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
/* .content{
|
/* .content{
|
||||||
overflow: auto !important; */
|
overflow: auto !important; */
|
||||||
|
|||||||
@@ -129,7 +129,8 @@ export class EditEventPage implements OnInit {
|
|||||||
role: 'cancel',
|
role: 'cancel',
|
||||||
cssClass: 'secondary',
|
cssClass: 'secondary',
|
||||||
handler: () => { }
|
handler: () => { }
|
||||||
}, {
|
},
|
||||||
|
{
|
||||||
text: 'Sim',
|
text: 'Sim',
|
||||||
handler: () => {
|
handler: () => {
|
||||||
this.Delete();
|
this.Delete();
|
||||||
|
|||||||
@@ -102,7 +102,7 @@ export class ChatSystemService {
|
|||||||
|
|
||||||
|
|
||||||
document.addEventListener('resume', function () {
|
document.addEventListener('resume', function () {
|
||||||
if(this._dm?.length == 0 && this._group?.length == 0) {
|
if(this._dm?.length == 0 || this._group?.length == 0) {
|
||||||
this.getAllRooms();
|
this.getAllRooms();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ import { ToastService } from 'src/app/services/toast.service';
|
|||||||
import { ViewDocumentPage } from 'src/app/modals/view-document/view-document.page';
|
import { ViewDocumentPage } from 'src/app/modals/view-document/view-document.page';
|
||||||
import { ThemeService } from 'src/app/services/theme.service';
|
import { ThemeService } from 'src/app/services/theme.service';
|
||||||
import { HttpErrorHandle } from 'src/app/services/http-error-handle.service';
|
import { HttpErrorHandle } from 'src/app/services/http-error-handle.service';
|
||||||
import { TaskService } from 'src/app/services/task.service'
|
import { TaskService } from 'src/app/services/task.service';
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
@@ -110,7 +110,6 @@ export class ApproveEventPage implements OnInit {
|
|||||||
|
|
||||||
let body = { "serialNumber": serialNumber, "action": "Descartar" }
|
let body = { "serialNumber": serialNumber, "action": "Descartar" }
|
||||||
|
|
||||||
|
|
||||||
const loader = this.toastService.loading()
|
const loader = this.toastService.loading()
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@@ -133,8 +132,6 @@ export class ApproveEventPage implements OnInit {
|
|||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('getAttchaments',error)
|
console.error('getAttchaments',error)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async viewDocument(DocId:string, Document) {
|
async viewDocument(DocId:string, Document) {
|
||||||
|
|||||||
@@ -89,6 +89,8 @@ export class EventoaprovacaoStoreService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
value = value.filter((e)=> new Date(e.workflowInstanceDataFields.StartDate).getTime() >= new Date().getTime())
|
||||||
|
|
||||||
value = value.filter(e => e.activityInstanceName != 'Comunicar Evento')
|
value = value.filter(e => e.activityInstanceName != 'Comunicar Evento')
|
||||||
value = value.map( e => this.EventoApprovePipe.transform(e, e))
|
value = value.map( e => this.EventoApprovePipe.transform(e, e))
|
||||||
|
|
||||||
|
|||||||
+6
-1
@@ -24,5 +24,10 @@
|
|||||||
"fullTemplateTypeCheck": true,
|
"fullTemplateTypeCheck": true,
|
||||||
"strictInjectionParameters": true
|
"strictInjectionParameters": true
|
||||||
},
|
},
|
||||||
"esModuleInterop": true
|
"esModuleInterop": true,
|
||||||
|
"exclude": [
|
||||||
|
"src/models",
|
||||||
|
"src/sql",
|
||||||
|
"src/connection",
|
||||||
|
]
|
||||||
}
|
}
|
||||||
File diff suppressed because one or more lines are too long
@@ -2,14 +2,12 @@
|
|||||||
"folders": [
|
"folders": [
|
||||||
{
|
{
|
||||||
"path": "."
|
"path": "."
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "..\\powercon"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"settings": {
|
"settings": {
|
||||||
"cSpell.words": [
|
"cSpell.words": [
|
||||||
"Chatmessage"
|
"Chatmessage"
|
||||||
]
|
],
|
||||||
|
"nuxt.isNuxtApp": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user