ver "0.5.9"
Saldo ora comprende anche le transazioni Pendenti (e le visualizza)
This commit is contained in:
@@ -4746,9 +4746,9 @@ export const tools = {
|
||||
|
||||
// console.log('OUT', res)
|
||||
|
||||
if (res && res.user) {
|
||||
if (res && res.userprofile) {
|
||||
console.log('updateMyData')
|
||||
userStore.my = res.user
|
||||
userStore.my.profile = res.userprofile
|
||||
|
||||
if (res.listcircuits) {
|
||||
circuitStore.listcircuits = res.listcircuits
|
||||
@@ -6356,12 +6356,12 @@ export const tools = {
|
||||
try {
|
||||
if (circuit.symbol) {
|
||||
return circuit.symbol
|
||||
} else if (circuit.hasOwnProperty('circuitfrom') && circuit.circuitfrom.symbol) {
|
||||
return circuit.circuitfrom.symbol
|
||||
} else if (circuit.hasOwnProperty('extrarec') && circuit.extrarec.hasOwnProperty('symbol')) {
|
||||
return circuit.extrarec.symbol
|
||||
} else {
|
||||
if (circuit.circuitfrom.symbol) {
|
||||
return circuit.circuitfrom.symbol
|
||||
} else {
|
||||
return ''
|
||||
}
|
||||
return ''
|
||||
}
|
||||
} catch (e) {
|
||||
return ''
|
||||
|
||||
Reference in New Issue
Block a user