ver 1.1.20:

- corretto campo foto che non compariva più.
 - sistemato i campi aggiuntivi e i richiesti.
- migliorato la barra in alto di selezione.
- aggiunto alcune icone.
This commit is contained in:
Surya Paolo
2025-02-03 17:18:27 +01:00
parent 341b4b8ec7
commit 41d5f562ec
21 changed files with 292 additions and 298 deletions

View File

@@ -21,7 +21,7 @@ const CollanaSchema = new Schema({
descrizione: {
type: String,
},
Descrizione_Estesa: {
descrizione_estesa: {
type: String,
},
dataOra: {
@@ -52,7 +52,7 @@ module.exports.executeQueryTable = function (idapp, params) {
module.exports.findAllIdApp = async function (idapp) {
const myfind = { idapp };
return await Collana.find(myfind).sort({name: 1, surname: 1});
return await Collana.find(myfind).sort({descrizione: 1});
};
module.exports.createIndexes((err) => {