- sendcoins

- font
- catalogo
This commit is contained in:
Surya Paolo
2025-03-26 23:23:35 +01:00
parent 285db5f995
commit 7624f16723
134 changed files with 3594798 additions and 1941 deletions

View File

@@ -441,7 +441,7 @@ export const useUserStore = defineStore('UserStore', {
let img = ''
if (tipoconto === shared_consts.AccountType.USER) {
img = this.getImgByUsername(value)
} else if (tipoconto === shared_consts.AccountType.COLLECTIVE_ACCOUNT) {
} else if (tipoconto === shared_consts.AccountType.CONTO_DI_GRUPPO) {
img = this.getImgByGroupname(value)
} else if (tipoconto === shared_consts.AccountType.COMMUNITY_ACCOUNT) {
img = this.getImgByCircuitpath(value)
@@ -469,7 +469,7 @@ export const useUserStore = defineStore('UserStore', {
tipoconto = col.tipoconto
}
if (tipoconto === shared_consts.AccountType.COLLECTIVE_ACCOUNT) {
if (tipoconto === shared_consts.AccountType.CONTO_DI_GRUPPO) {
img = this.getImgByGroupname(myrec.groupname)
} else if (tipoconto === shared_consts.AccountType.COMMUNITY_ACCOUNT) {
img = this.getImgByCircuitpath(myrec.path)
@@ -496,7 +496,7 @@ export const useUserStore = defineStore('UserStore', {
if (!reale)
img = '/images/noimg-user.svg'
if (tipoconto === shared_consts.AccountType.COLLECTIVE_ACCOUNT) {
if (tipoconto === shared_consts.AccountType.CONTO_DI_GRUPPO) {
img = this.getImgByGroup(from ? mov.groupfrom : mov.groupto)
// img = this.getImgByGroupname(from ? mov.groupfrom.groupname : mov.groupto.groupname)
} else if (tipoconto === shared_consts.AccountType.COMMUNITY_ACCOUNT) {
@@ -802,7 +802,7 @@ export const useUserStore = defineStore('UserStore', {
if (col && col.field === 'extrarec' && !name) {
name = myrec.dest
}
} else if (tipoconto === shared_consts.AccountType.COLLECTIVE_ACCOUNT) {
} else if (tipoconto === shared_consts.AccountType.CONTO_DI_GRUPPO) {
if (tools.existProp(myrec, 'descr'))
return myrec.descr
else if (tools.existProp(myrec, 'groupname'))