mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 21:35:50 +00:00
Merge branch 'define-occurrence' of https://bitbucket.org/equilibriumito/gabinete-digital into developer
This commit is contained in:
@@ -66,9 +66,14 @@
|
|||||||
<ion-label>
|
<ion-label>
|
||||||
<p>{{customDate}}</p>
|
<p>{{customDate}}</p>
|
||||||
<p *ngIf="toDateString(loadedEvent.workflowInstanceDataFields.StartDate) == toDateString(loadedEvent.workflowInstanceDataFields.EndDate)">das {{loadedEvent.workflowInstanceDataFields.StartDate | date: 'HH:mm'}} às {{loadedEvent.workflowInstanceDataFields.EndDate | date: 'HH:mm'}}</p>
|
<p *ngIf="toDateString(loadedEvent.workflowInstanceDataFields.StartDate) == toDateString(loadedEvent.workflowInstanceDataFields.EndDate)">das {{loadedEvent.workflowInstanceDataFields.StartDate | date: 'HH:mm'}} às {{loadedEvent.workflowInstanceDataFields.EndDate | date: 'HH:mm'}}</p>
|
||||||
<p *ngIf="toDateString(loadedEvent.workflowInstanceDataFields.StartDate) != toDateString(loadedEvent.workflowInstanceDataFields.EndDate)">{{loadedEvent.workflowInstanceDataFields.StartDate | date: 'd/M/yy' }} - {{ loadedEvent.workflowInstanceDataFields.StartDate | date: 'dd/M/yy'}} </p>
|
<p *ngIf="toDateString(loadedEvent.workflowInstanceDataFields.StartDate) != toDateString(loadedEvent.workflowInstanceDataFields.EndDate)">{{loadedEvent.workflowInstanceDataFields.StartDate | date: 'd/M/yy' }} - {{ loadedEvent.workflowInstanceDataFields.EndDate | date: 'dd/M/yy'}} </p>
|
||||||
<p *ngIf="!loadedEvent.workflowInstanceDataFields.IsRecurring">(Não se repete)</p>
|
<p>
|
||||||
<p *ngIf="loadedEvent.workflowInstanceDataFields.IsRecurring">Repete</p>
|
<span *ngIf="loadedEvent.workflowInstanceDataFields.OccurrenceType == 0">Diário</span>
|
||||||
|
<span *ngIf="loadedEvent.workflowInstanceDataFields.OccurrenceType == 1">Semanal</span>
|
||||||
|
<span *ngIf="loadedEvent.workflowInstanceDataFields.OccurrenceType == 2">Mensal</span>
|
||||||
|
<span *ngIf="loadedEvent.workflowInstanceDataFields.OccurrenceType == 3">Anual</span>
|
||||||
|
<span *ngIf="loadedEvent.workflowInstanceDataFields.OccurrenceType == -1">(Não se repete)</span>
|
||||||
|
</p>
|
||||||
|
|
||||||
</ion-label>
|
</ion-label>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -71,6 +71,7 @@ export class ApproveEventPage implements OnInit {
|
|||||||
this.processes.GetTask(this.serialNumber).subscribe(res => {
|
this.processes.GetTask(this.serialNumber).subscribe(res => {
|
||||||
|
|
||||||
this.loadedEvent = res;
|
this.loadedEvent = res;
|
||||||
|
console.log(this.loadedEvent);
|
||||||
this.today = new Date(res.workflowInstanceDataFields.StartDate);
|
this.today = new Date(res.workflowInstanceDataFields.StartDate);
|
||||||
//
|
//
|
||||||
this.customDate = this.days[this.today.getDay()]+ ", " + this.today.getDate() +" de " + ( this.months[this.today.getMonth()]);
|
this.customDate = this.days[this.today.getDay()]+ ", " + this.today.getDate() +" de " + ( this.months[this.today.getMonth()]);
|
||||||
|
|||||||
@@ -179,6 +179,9 @@ export class EditEventToApprovePage implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
onSelectedRecurringChanged(ev:any) {
|
onSelectedRecurringChanged(ev:any) {
|
||||||
|
|
||||||
|
this.calculetedLastOccurrence(ev);
|
||||||
|
|
||||||
if(ev.length > 1) {
|
if(ev.length > 1) {
|
||||||
|
|
||||||
this.eventProcess.workflowInstanceDataFields.OccurrenceType = ev.filter(data => data != '-1');
|
this.eventProcess.workflowInstanceDataFields.OccurrenceType = ev.filter(data => data != '-1');
|
||||||
@@ -188,6 +191,45 @@ export class EditEventToApprovePage implements OnInit {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
calculetedLastOccurrence(type:number){
|
||||||
|
console.log(type);
|
||||||
|
var valor;
|
||||||
|
var opcao: boolean;
|
||||||
|
if (type == 0) {
|
||||||
|
valor = 7;
|
||||||
|
opcao = true;
|
||||||
|
} else if(type == 1){
|
||||||
|
valor = 30;
|
||||||
|
opcao = true;
|
||||||
|
} else if(type == 2){
|
||||||
|
valor = 1;
|
||||||
|
opcao = false;
|
||||||
|
}else if(type == 3){
|
||||||
|
valor = 5;
|
||||||
|
opcao = false;
|
||||||
|
}
|
||||||
|
this.defineLastOccurrence(valor, opcao);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
defineLastOccurrence(valor:number, opcao:boolean){
|
||||||
|
var time = new Date(this.eventProcess.workflowInstanceDataFields.EndDate);
|
||||||
|
if (opcao == true) {
|
||||||
|
time.setDate(time.getDate() + valor);
|
||||||
|
this.eventProcess.workflowInstanceDataFields.LastOccurrence = time;
|
||||||
|
} else {
|
||||||
|
time = new Date(
|
||||||
|
time.getFullYear() + valor,
|
||||||
|
time.getMonth(),
|
||||||
|
time.getDate(),
|
||||||
|
time.getHours(),
|
||||||
|
time.getMinutes()
|
||||||
|
);
|
||||||
|
this.eventProcess.workflowInstanceDataFields.LastOccurrence = time;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
setOtherData() {
|
setOtherData() {
|
||||||
if(this.eventProcess.workflowInstanceDataFields.ParticipantsList) {
|
if(this.eventProcess.workflowInstanceDataFields.ParticipantsList) {
|
||||||
this.eventProcess.workflowInstanceDataFields.ParticipantsList.forEach(e => {
|
this.eventProcess.workflowInstanceDataFields.ParticipantsList.forEach(e => {
|
||||||
@@ -291,6 +333,8 @@ export class EditEventToApprovePage implements OnInit {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
console.log(this.eventProcess);
|
||||||
|
|
||||||
const event: EventToApproveEdit = {
|
const event: EventToApproveEdit = {
|
||||||
SerialNumber: this.eventProcess.serialNumber,
|
SerialNumber: this.eventProcess.serialNumber,
|
||||||
Body: this.eventProcess.workflowInstanceDataFields.Body,
|
Body: this.eventProcess.workflowInstanceDataFields.Body,
|
||||||
|
|||||||
@@ -119,14 +119,6 @@ export class EditEventPage implements OnInit {
|
|||||||
this.setIntervenient.emit(this.taskParticipants);
|
this.setIntervenient.emit(this.taskParticipants);
|
||||||
this.setIntervenientCC.emit(this.taskParticipantsCc);
|
this.setIntervenientCC.emit(this.taskParticipantsCc);
|
||||||
|
|
||||||
this.isEventEdited = false;
|
|
||||||
|
|
||||||
if(this.postEvent.IsRecurring == false) {
|
|
||||||
this.isRecurring = "Não se repete";
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
this.isRecurring = "Repete";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
this.initCalendarName = this.postEvent.CalendarName;
|
this.initCalendarName = this.postEvent.CalendarName;
|
||||||
@@ -137,6 +129,8 @@ export class EditEventPage implements OnInit {
|
|||||||
|
|
||||||
this.postEvent.EventRecurrence.Type = this.postEvent.EventRecurrence.Type.toString();
|
this.postEvent.EventRecurrence.Type = this.postEvent.EventRecurrence.Type.toString();
|
||||||
|
|
||||||
|
this.postEvent.EventRecurrence.LastOccurrence = this.currentDate;
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.postEvent.EventRecurrence.Type = this.postEvent.EventRecurrence.Type.toString();
|
this.postEvent.EventRecurrence.Type = this.postEvent.EventRecurrence.Type.toString();
|
||||||
|
|
||||||
@@ -227,6 +221,8 @@ export class EditEventPage implements OnInit {
|
|||||||
|
|
||||||
onSelectedRecurringChanged(ev:any){
|
onSelectedRecurringChanged(ev:any){
|
||||||
|
|
||||||
|
this.calculetedLastOccurrence(ev);
|
||||||
|
|
||||||
if(ev.length > 1){
|
if(ev.length > 1){
|
||||||
|
|
||||||
this.postEvent.EventRecurrence.Type = ev.filter(data => data != '-1');
|
this.postEvent.EventRecurrence.Type = ev.filter(data => data != '-1');
|
||||||
@@ -236,6 +232,45 @@ export class EditEventPage implements OnInit {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
calculetedLastOccurrence(type:number){
|
||||||
|
console.log(type);
|
||||||
|
var valor;
|
||||||
|
var opcao: boolean;
|
||||||
|
if (type == 0) {
|
||||||
|
valor = 7;
|
||||||
|
opcao = true;
|
||||||
|
} else if(type == 1){
|
||||||
|
valor = 30;
|
||||||
|
opcao = true;
|
||||||
|
} else if(type == 2){
|
||||||
|
valor = 1;
|
||||||
|
opcao = false;
|
||||||
|
}else if(type == 3){
|
||||||
|
valor = 5;
|
||||||
|
opcao = false;
|
||||||
|
}
|
||||||
|
this.defineLastOccurrence(valor, opcao);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
defineLastOccurrence(valor:number, opcao:boolean){
|
||||||
|
var time = new Date(this.postEvent.EndDate);
|
||||||
|
if (opcao == true) {
|
||||||
|
time.setDate(time.getDate() + valor);
|
||||||
|
this.postEvent.EventRecurrence.LastOccurrence = time;
|
||||||
|
} else {
|
||||||
|
time = new Date(
|
||||||
|
time.getFullYear() + valor,
|
||||||
|
time.getMonth(),
|
||||||
|
time.getDate(),
|
||||||
|
time.getHours(),
|
||||||
|
time.getMinutes()
|
||||||
|
);
|
||||||
|
this.postEvent.EventRecurrence.LastOccurrence = time;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
async save() {
|
async save() {
|
||||||
|
|
||||||
|
|||||||
@@ -365,6 +365,8 @@ export class NewEventPage implements OnInit {
|
|||||||
|
|
||||||
onSelectedRecurringChanged(ev:any){
|
onSelectedRecurringChanged(ev:any){
|
||||||
|
|
||||||
|
this.calculetedLastOccurrence(ev);
|
||||||
|
|
||||||
if(ev.length > 1){
|
if(ev.length > 1){
|
||||||
|
|
||||||
this.postEvent.EventRecurrence.Type = ev.filter(data => data != '-1');
|
this.postEvent.EventRecurrence.Type = ev.filter(data => data != '-1');
|
||||||
@@ -374,8 +376,45 @@ export class NewEventPage implements OnInit {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
calculetedLastOccurrence(type:number){
|
||||||
|
console.log(type);
|
||||||
|
var valor;
|
||||||
|
var opcao: boolean;
|
||||||
|
if (type == 0) {
|
||||||
|
valor = 7;
|
||||||
|
opcao = true;
|
||||||
|
} else if(type == 1){
|
||||||
|
valor = 30;
|
||||||
|
opcao = true;
|
||||||
|
} else if(type == 2){
|
||||||
|
valor = 1;
|
||||||
|
opcao = false;
|
||||||
|
}else if(type == 3){
|
||||||
|
valor = 5;
|
||||||
|
opcao = false;
|
||||||
|
}
|
||||||
|
this.defineLastOccurrence(valor, opcao);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
defineLastOccurrence(valor:number, opcao:boolean){
|
||||||
|
var time = new Date(this.postEvent.EndDate);
|
||||||
|
if (opcao == true) {
|
||||||
|
time.setDate(time.getDate() + valor);
|
||||||
|
this.postEvent.EventRecurrence.LastOccurrence = time;
|
||||||
|
} else {
|
||||||
|
time = new Date(
|
||||||
|
time.getFullYear() + valor,
|
||||||
|
time.getMonth(),
|
||||||
|
time.getDate(),
|
||||||
|
time.getHours(),
|
||||||
|
time.getMinutes()
|
||||||
|
);
|
||||||
|
this.postEvent.EventRecurrence.LastOccurrence = time;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
async save() {
|
async save() {
|
||||||
|
|
||||||
this.injectValidation()
|
this.injectValidation()
|
||||||
|
|||||||
@@ -53,13 +53,12 @@
|
|||||||
<p>{{customDate}}</p>
|
<p>{{customDate}}</p>
|
||||||
<p *ngIf="toDateString(loadedEvent.StartDate) == toDateString(loadedEvent.EndDate)">das {{loadedEvent.StartDate | date: 'HH:mm'}} às {{loadedEvent.EndDate | date: 'HH:mm'}}</p>
|
<p *ngIf="toDateString(loadedEvent.StartDate) == toDateString(loadedEvent.EndDate)">das {{loadedEvent.StartDate | date: 'HH:mm'}} às {{loadedEvent.EndDate | date: 'HH:mm'}}</p>
|
||||||
<p *ngIf="toDateString(loadedEvent.StartDate) != toDateString(loadedEvent.EndDate)">{{loadedEvent.StartDate | date: 'd/M/yy' }} - {{ loadedEvent.StartDate | date: 'dd/M/yy'}} </p>
|
<p *ngIf="toDateString(loadedEvent.StartDate) != toDateString(loadedEvent.EndDate)">{{loadedEvent.StartDate | date: 'd/M/yy' }} - {{ loadedEvent.StartDate | date: 'dd/M/yy'}} </p>
|
||||||
<p *ngIf="!loadedEvent.IsRecurring">(Não se repete)</p>
|
<p>
|
||||||
<p *ngIf="loadedEvent.IsRecurring">
|
|
||||||
<span *ngIf="loadedEvent.EventRecurrence.Type == 0">Diário</span>
|
<span *ngIf="loadedEvent.EventRecurrence.Type == 0">Diário</span>
|
||||||
<span *ngIf="loadedEvent.EventRecurrence.Type == 1">Semanal</span>
|
<span *ngIf="loadedEvent.EventRecurrence.Type == 1">Semanal</span>
|
||||||
<span *ngIf="loadedEvent.EventRecurrence.Type == 2">Mensal</span>
|
<span *ngIf="loadedEvent.EventRecurrence.Type == 2">Mensal</span>
|
||||||
<span *ngIf="loadedEvent.EventRecurrence.Type == 3">Anual</span>
|
<span *ngIf="loadedEvent.EventRecurrence.Type == 3">Anual</span>
|
||||||
<span *ngIf="loadedEvent.EventRecurrence.Type == -1">Nunca</span>
|
<span *ngIf="loadedEvent.EventRecurrence.Type == -1">(Não se repete)</span>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
</ion-label>
|
</ion-label>
|
||||||
|
|||||||
@@ -105,6 +105,7 @@ export class ViewEventPage implements OnInit {
|
|||||||
this.eventsService.getEvent(this.eventId).subscribe(res => {
|
this.eventsService.getEvent(this.eventId).subscribe(res => {
|
||||||
|
|
||||||
this.loadedEvent = res;
|
this.loadedEvent = res;
|
||||||
|
console.log(this.loadedEvent);
|
||||||
this.today = new Date(res.StartDate);
|
this.today = new Date(res.StartDate);
|
||||||
this.customDate = this.days[this.today.getDay()]+ ", " + this.today.getDate() +" de " + ( this.months[this.today.getMonth()]);
|
this.customDate = this.days[this.today.getDay()]+ ", " + this.today.getDate() +" de " + ( this.months[this.today.getMonth()]);
|
||||||
}, (error)=> {
|
}, (error)=> {
|
||||||
|
|||||||
Reference in New Issue
Block a user