Aggiornamento APP RISO:
 Inviando i RIS, deve comparire prima il Circuito della Provincia, e poi quello Nazionale
 Risolto problema per vecchie registrazioni, la provincia compariva "undefined".
This commit is contained in:
Surya Paolo
2024-06-19 00:21:39 +02:00
parent b6c6330872
commit 8dbdad1e02
7 changed files with 447 additions and 14 deletions

View File

@@ -95,7 +95,11 @@ async function completaSettaggioProduct_AndProductInfo(arrcampi_productInfo, arr
productInfo.img = 'upload/products/' + product.code + '.jpg';
} else {
if (rec.hasOwnProperty('img')) {
productInfo.img = 'upload/products/' + rec['img'];
if (rec['img']) {
productInfo.img = 'upload/products/' + rec['img'];
} else {
productInfo.img = '';
}
}
}