Aggiornamenti Flotta, Nave, Dashboard, Tabelle, Popupmenu

This commit is contained in:
Paolo Arena
2020-06-02 22:19:20 +02:00
parent 3fb1de9b70
commit bd6ccad236
18 changed files with 993 additions and 254 deletions

View File

@@ -198,6 +198,14 @@ export default class CMyNave extends MixinNave {
}
}
}
if (this.sonoDonatore()) {
this.tabnave = 'donatore'
} else if (this.sonoMediatore()) {
this.tabnave = 'mediatore'
} else if (this.sonoSognatore()) {
this.tabnave = 'sognatore'
}
}
public getListaDonatoriDaConfermare() {
@@ -676,7 +684,8 @@ export default class CMyNave extends MixinNave {
const navemediatore = {
id: this.mediatore._id,
riga: this.mediatore.riga,
col: this.mediatore.col
col: this.mediatore.col,
username: this.mediatore.username
}
this.InviaMsgANave(msgobj, navemediatore)
@@ -1076,5 +1085,8 @@ export default class CMyNave extends MixinNave {
})
}
get rendivisibile() {
return !this.FattoDono && !this.sonoSecondaTessituraDonatore() && !this.listanavi
}
}