- Sistemato link pdf che ogni volta che si aggiorna prendeva il PDF dalla cache...

- Raccolta Cataloghi, procedura che li AUTO genera in automatico.
This commit is contained in:
Surya Paolo
2025-06-13 17:45:57 +02:00
parent 286cc4e3a7
commit f146b36173
24 changed files with 353 additions and 188 deletions

View File

@@ -10682,11 +10682,11 @@ export const tools = {
return 0;
}
},
getURLByHostAndFilePath(filepath: string) {
getURLByHostAndFilePath(filepath: string, timestamp: string = '') {
try {
let myurl = filepath.startsWith('/')
? tools.getHost() + filepath
: tools.getHost() + '/' + filepath;
: tools.getHost() + '/' + filepath + `?ts=${timestamp}`;
return myurl;
} catch (e) {
return filepath;