- Aggiornamento dal DB di GM al DB Locale
This commit is contained in:
@@ -1388,7 +1388,7 @@ export const useProducts = defineStore('Products', {
|
||||
}
|
||||
|
||||
const autori = this.getAutoriByArrayAuthors(myproduct.productInfo.authors)
|
||||
const collana = myproduct.productInfo.collana
|
||||
const collana = tools.formatCollane(myproduct.productInfo.idCollana)
|
||||
|
||||
const maxDescriptionLength = testo.maxlength ?? 100;
|
||||
const description = myproduct.productInfo.short_descr || '';
|
||||
@@ -1480,7 +1480,7 @@ export const useProducts = defineStore('Products', {
|
||||
'{ranking_globale}': ranking_globale || '',
|
||||
'{venduti}': venduti || '',
|
||||
'{formato}': formato || '',
|
||||
'{collana_title}': collana ? collana.title || '' : '',
|
||||
'{collana}': collana ? collana || '' : '',
|
||||
'{prezzo}': prezzo || '',
|
||||
'{scale}': scale || '',
|
||||
'{prezzo_scontato}': prezzo_scontato || '',
|
||||
@@ -1493,6 +1493,7 @@ export const useProducts = defineStore('Products', {
|
||||
'{imagefile}': imagefile || '',
|
||||
};
|
||||
|
||||
|
||||
// Esegue le sostituzioni
|
||||
let result = testo.contenuto;
|
||||
for (const [key, value] of Object.entries(replacements)) {
|
||||
|
||||
Reference in New Issue
Block a user