- Export Email

- Etichetta Facilitatori
This commit is contained in:
Paolo Arena
2022-07-11 23:19:52 +02:00
parent 42cb624f41
commit 7f25ca4717
31 changed files with 114 additions and 94 deletions

View File

@@ -1735,10 +1735,10 @@ export const tools = {
|| (elem.onlySocioResidente && userStore.my.profile.socioresidente)
|| (elem.onlyConsiglio && userStore.my.profile.consiglio)
|| (elem.onlyNotSoci && !userStore.my.profile.socio)
|| (elem.onlyTutor && userStore.isTutor)
|| (elem.onlyFacilitatore && userStore.isTutor)
|| (elem.onlyEditor && userStore.isEditor)
|| (elem.onlyDepartment && userStore.isDepartment)
|| ((!elem.onlyAdmin) && (!elem.onlyManager) && (!elem.onlyTutor) && (!elem.onlyEditor) && (!elem.onlyDepartment)
|| ((!elem.onlyAdmin) && (!elem.onlyManager) && (!elem.onlyFacilitatore) && (!elem.onlyEditor) && (!elem.onlyDepartment)
&& (!elem.onlySocioResidente) && (!elem.onlyConsiglio) && (!elem.onlyNotSoci))) && elem.active
if (!this.isLoggedToSystem()) {
@@ -5487,7 +5487,7 @@ export const tools = {
return []
},
loadrecProfile() {
async loadrecProfile() {
const userStore = useUserStore()
const globalStore = useGlobalStore()
@@ -5499,7 +5499,7 @@ export const tools = {
console.log('loadrecProfile', params)
return globalStore.loadExp(params)
return await globalStore.loadExp(params)
},
@@ -5507,6 +5507,8 @@ export const tools = {
let myrec = await this.loadrecProfile()
console.log('myrec', myrec)
const sep = ';'
let mystr = ''
@@ -5516,11 +5518,11 @@ export const tools = {
for (const rec of myrec) {
mystr += rec.username + sep
mystr += rec.profile.username_telegram + sep
mystr += rec.profile.firstname_telegram + sep
mystr += rec.profile.lastname_telegram + sep
mystr += !!rec.profile.firstname_telegram ? rec.profile.firstname_telegram + sep : sep
mystr += !!rec.profile.lastname_telegram ? rec.profile.lastname_telegram + sep : sep
mystr += rec.email + sep
mystr += (rec.profile.teleg_id) ? 'SI' : 'NO'
mystr += (rec.verified_by_aportador) ? 'SI' : 'NO'
mystr += ((rec.profile.teleg_id) ? 'SI' : 'NO') + sep
mystr += ((rec.verified_by_aportador) ? 'SI' : 'NO') + sep
mystr += '\n'
index++
}