C.vasco Posted August 8, 2022 Share Posted August 8, 2022 Ciao non riesco a capire come inviare id_shop differenti alla stessa categoria, riesco solo ad inviare id_shop_default ma se io volessi inviare una categoria con 3 diversi id_shop ? Grazie Link to comment Share on other sites More sharing options...
Codencode Posted August 11, 2022 Share Posted August 11, 2022 Non è chiaro quello che chiedi, cosa intendi per inviare id_shop differenti alla stessa categoria? Link to comment Share on other sites More sharing options...
C.vasco Posted August 12, 2022 Author Share Posted August 12, 2022 scusami ti spiego meglio io creo questo invio tramite la mia applicazione, adesso volevo aggiungere anche id_shop corrispondente ad un nostro negozio ma avendo noi 3 id_shop volevo capire se fare 3 invi separati ognuno per id o ce un metodo alternativo con altro parametro function updateCategoriaXML(xmlData, record) { xmlData.category.active = 1; // Delete proprieta' non scrivibili if (xmlData.category.level_depth) { delete xmlData.category.level_depth; } if (xmlData.category.nb_products_recursive) { delete xmlData.category.nb_products_recursive; } // Tutte sono sotto categoria di Home xmlData.category.id_parent = CATEGORIA_HOME; // Nome var xmlNameList = xmlData.category.child('name').children(); for (var xmlNameLang in xmlNameList) { xmlNameList[xmlNameLang].setChildren(record.categoria_ec); } // Link Rewrite ( Required ) xmlNameList = xmlData.category.child('link_rewrite').children(); for (xmlNameLang in xmlNameList) { xmlNameList[xmlNameLang].setChildren(record.categoria_ec.toLowerCase().replace(/ /g,"-").replace(/[^a-zA-Z0-9]/g,'')); } return xmlData; } Link to comment Share on other sites More sharing options...
Codencode Posted August 12, 2022 Share Posted August 12, 2022 Io continuo a non capire quello che ti occorre. Provo ad interpretare. Forse a te serve capire come poter associare una categoria a più shop, avendo il multishop attivo con 3 negozi. Se è questo il caso, una volta che crei la categoria, va associata al singolo negozio. La tabella del db è category_shop. Ora non so come invii queste informazioni, se sfrutti i webservice o cosa, quindi non posso essere più preciso. Link to comment Share on other sites More sharing options...
C.vasco Posted August 17, 2022 Author Share Posted August 17, 2022 Grazie si uso un web service, e non trovo un category_shop nei servizi di prestashop Link to comment Share on other sites More sharing options...
C.vasco Posted August 17, 2022 Author Share Posted August 17, 2022 Praticamente io vorrei capire il modo x dire che questa categoria è associata a piu shop oltre al id_shop_default Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now