Kostenloser Standardversand ab 99 EUR

Prodotti Swarovski

Title:

Sostituzioni e riparazioni

Il mio articolo si può riparare?

Potrai portare l'articolo, corredato della prova d’acquisto, al più vicino negozio Swarovski, dove il personale sarà lieto di fornirti assistenza e valutare l'articolo. ​

Se viene rilevato un difetto che si considera coperto da garanzia, ti sarà offerta la possibilità di uno scambio o di una riparazione. ​

Se il danno non è coperto dalla garanzia, potremmo essere in grado di provvedere a una riparazione a pagamento.​

Potrai trovare il negozio più vicino mediante il nostro Store finder online: www.swarovski.com/store-finder/​

Ti ricordiamo che, anche in caso di assenza di prova d'acquisto e di garanzia non più valida, potremmo comunque essere in grado di provvedere a una riparazione a pagamento.​

 

Creators Lab 
I prodotti Creators Lab sono venduti solo online; pertanto, possiamo accettare esclusivamente resi online. Questo si applica anche per i resi di prodotti difettosi. Si prega di notare che non possiamo garantire la riparazione o la sostituzione del prodotto. In questo caso, verrà effettuato un rimborso completo.

Qual è lo stato della mia riparazione?

Bitte geben Sie die Reparaturdetails ein, die in der Bestätigungs-E-Mail angegeben sind

Reparaturnummer *
Familienname
$(this).closest('#checkRepairStatusFormConfigWrapper').find('.js-checkRepairStatusFormConfig') .formValidation( { autoFocus: false, framework: 'bootstrap', icon: { valid: null, invalid: null, validating: null }, fields: { 'values[checkRepairStatusFormDefinition_repairNumber]': { trigger: 'blur', validators: { notEmpty: { message: 'Reparaturnummer ist leer', message_en: 'Reparaturnummer ist leer' }, stringLength: { message: 'In diesem Feld darf die Anzahl der Zeichen nur zwischen 0 und 18 liegen', message_en: 'The number of characters for this field must be between 0 and 18', min: 0 , max: 18 }, } }, 'values[checkRepairStatusFormDefinition_lastName]': { trigger: 'blur', validators: { stringLength: { message: 'In diesem Feld darf die Anzahl der Zeichen nur zwischen 0 und 35 liegen', message_en: 'The number of characters for this field must be between 0 and 35', min: 0 , max: 35 }, } } } } ) .on('success.field.fv', function() { /* note: we need to check if there is an error in the form, as the plugin does a validation on field level. Validating the whole form on blur of a field is no option, as the customer does not want to see error messages on all fields when entering one field. In case of an error on at least one field we disable the submit button manually */ var $form = $(this).closest('form'); if ($form.find('.form-group.has-error').length > 0) { var $button = $form.find('.js-button'); if (!$button.hasClass('disabled')) { $button.addClass('disabled'); } } }) .on('err.field.fv', function(e, data) { /* * On error field validation, enable submit button. * Source: https://old.formvalidation.io/examples/enabling-submit-button/ */ data.fv.disableSubmitButtons(false); $(data.element).attr('aria-invalid', 'true'); // Get error messages var messages = data.fv.getMessages(data.element); // ✅ Announce error to screen readers if ($(data.element).closest('.js-advent-calendar-container').length > 0 && messages.length > 0 && window.ACC && window.ACC.adventcalendar && typeof ACC.adventcalendar.adventcalendarUpdateErrorSpanAttributes === 'function') { const selectedField = data.element.attr('id'); ACC.adventcalendar.adventcalendarUpdateErrorSpanAttributes(selectedField, true); ACC.adventcalendar.announceToScreenReader('Error: ' + messages[0]); } if(data.element.closest('.form-combo-molecule').length){ /* Get the messages of field */ var messages = data.fv.getMessages(data.element); /* Get the error message content of the field */ var errorContent = data.element.closest('.form-combo-molecule').find('.errors'); /* Get the hidden error message of the field */ var errorField = errorContent.find('.swa-form-input__error-message[data-field="' + data.field + '"][style="display: none;"]'); /* Loop over the messages */ for (var i in messages) { if (errorField[1] == undefined) { var newErrorContainer = document.createElement("small"); $(newErrorContainer).attr("class", "swa-form-input__error-message swa-headline-sans--supertiny"); $(newErrorContainer).attr("data-field", data.field); $(newErrorContainer).attr("data-fv-validator", "callback"); $(newErrorContainer).attr("data-fv-for", $(data.element[0]).attr("name") ); $(newErrorContainer).attr("data-fv-result", "INVALID"); $(newErrorContainer).attr("data-tracked", "true"); $(newErrorContainer).html(messages[i]); if (errorContent.text().includes(messages[i])) { $(newErrorContainer).hide(); } errorContent.append(newErrorContainer); } } } }) .on('success.field.fv', function(e, data) { /* * On success field validation, enable submit button. * Source: https://old.formvalidation.io/examples/enabling-submit-button/ */ if ($(data.element).closest('.js-advent-calendar-container').length > 0 && window.ACC && window.ACC.adventcalendar && typeof ACC.adventcalendar.adventcalendarUpdateErrorSpanAttributes === 'function') { const selectedField = data.element.attr('id'); ACC.adventcalendar.adventcalendarUpdateErrorSpanAttributes(selectedField, false); } data.fv.disableSubmitButtons(false); // ✅ Remove aria-invalid on field $(data.element).attr('aria-invalid', 'false'); /* Remove the field messages */ $errorContent = data.element.closest('.form-combo-molecule').find('.errors'); $errorContent.find('.swa-form-input__error-message[data-field="' + data.field + '"]').remove(); $errorContent.find('.swa-form-input__error-message[data-fv-result="INVALID"]').removeAttr("style"); }) .on('success.form.fv', function() { var formId = 'checkRepairStatusFormDefinition'; if (!formId || formId === 'cfRequest' || formId === 'cfResponse') { formId = 'checkRepairStatusFormDefinition'; } ACC.tracking.pushFormSubmit(formId); }); var replaceDatePatternWithValue = function(mandatory, fieldConfigCode, fieldConfigPattern) { var date = fieldConfigPattern.toUpperCase(); var year = $("#" + fieldConfigCode + "_year").val(); var month = $("#" + fieldConfigCode + "_month").val(); var day = $("#" + fieldConfigCode + "_day").val(); date = date.replace(/[Y]+/, year); date = date.replace(/[M]+/, month); date = date.replace(/[D]+/, day); var hiddenDateField = $('.js-' + fieldConfigCode + '_hidden'); if (mandatory) { hiddenDateField.val(date); } else { hiddenDateField.val(date == "" ? "" : date); } }; var triggerFormValidation = function(fieldId, mandatory, fieldCode, dateFormat) { replaceDatePatternWithValue(mandatory, fieldCode, dateFormat); $('.js-fieldCode').formValidation('revalidateField', 'values[fieldCode_'+ fieldId + ']'); }; var removeDateMoleculeError = function(molecule) { if(molecule.hasClass('has-error')){ molecule.removeClass('has-error'); molecule.find('.help-block').find('span').remove(); } };

Pflichtfelder*

ฉันสามารถนำสินค้าของฉันส่งไปรษณีย์ไปยังศูนย์ซ่อมโดยตรงได้หรือไม่

Currently, it is not possible to send items directly to our repair centers.

Title:
ในขณะนี้เราไม่อนุญาตให้นำสินค้าส่งไปรษณีย์ไปยังศูนย์ซ่อมของเราโดยตรง 

โปรดนำสินค้าพร้อมหลักฐานการซื้อไปที่ร้าน Swarovski ที่อยู่ใกล้คุณที่สุด ทางร้านยินดีที่จะให้ความช่วยเหลือและประเมินสินค้าดังกล่าว 

คุณสามารถค้นหาร้านค้าที่อยู่ใกล้คุณที่สุดโดยใช้เครื่องมือค้นหาร้านค้าออนไลน์ของเราได้ที่: www.swarovski.com/store-finder/

นโยบายการซ่อมสินค้า

Swarovski ให้การรับประกันแบบครอบคลุมตามกฎหมายสำหรับผลิตภัณฑ์ที่ลูกค้าซื้อจากร้านค้าปลีกของ Swarovski ที่ได้รับอนุญาต การรับประกันจะครอบคลุมความบกพร่องด้านการผลิตและด้านวัสดุเมื่อมีการสวมใส่และใช้งานตามปกติ ผู้เชี่ยวชาญด้านเทคนิคของ Swarovski จะตรวจสอบและประเมินผลิตภัณฑ์ที่มีข้อบกพร่องแต่ละรายการที่อยู่ในการรับประกัน โดยอาจมีการซ่อมแซมผลิตภัณฑ์ เปลี่ยนใหม่โดยใช้ผลิตภัณฑ์ประเภทเดียวกัน หรือทดแทนด้วยผลิตภัณฑ์ที่มีมูลค่าเทียบเท่ากัน ทั้งนี้ขึ้นอยู่กับสถานการณ์ อย่างไรก็ตาม ในกรณีการเปลี่ยนผลิตภัณฑ์ Swarovski ไม่อาจรับประกันว่าจะสามารถจัดหาผลิตภัณฑ์หรือชิ้นงานออกแบบที่เหมือนกันทุกประการให้ได้ Swarovski จะไม่ซ่อมแซม เปลี่ยนใหม่ หรือทดแทนสินค้าใด ๆ ที่ทางบริษัทเห็นว่าเกิดอุบัติเหตุ การสึกหรอตามปกติ การใช้งานผิดวัตถุประสงค์ การแก้ไขดัดแปลง การพยายามซ่อมเอง ความประมาทเลินเล่อ หรือการใช้งานที่ผิดวิธี ข้อกำหนดในนโยบายการรับประกันของ Swarovski ไม่ได้ครอบคลุมถึงชิ้นงานดังกล่าว ทางบริษัทอาจเสนอบริการซ่อมแซมโดยคิดค่าธรรมเนียม โปรดทราบว่าเราอาจรับซ่อมแซมชิ้นงานที่บกพร่องในกรณีดังต่อไปนี้:
1. ผลิตภัณฑ์ดังกล่าวเป็นผลิตภัณฑ์ของแท้จาก Swarovski และมีโลโก้รูปหงส์ของ Swarovski
2. ผลิตภัณฑ์ดังกล่าวสามารถซ่อมแซมได้ และต้องสามารถทำให้ชิ้นงานกลับมางดงามดังเดิม
3. ยังคงมีชิ้นส่วนอะไหล่ (ซึ่งปกติแล้วในกรณีที่ผลิตภัณฑ์เลิกผลิตไปแล้ว จะไม่มีอะไหล่) หากคุณต้องการเปลี่ยนหรือซ่อมแซมสินค้า โปรดนำผลิตภัณฑ์ที่อยู่ในบรรจุภัณฑ์เดิมไปที่ร้านค้าปลีกที่ได้รับอนุญาตของ Swarovski
นอกจากนี้ยังมีบริการซ่อมแซมสำหรับผลิตภัณฑ์ Swarovski ที่ซื้อในต่างประเทศอีกด้วย

โปรดทราบว่าเราไม่มีบริการซ่อมแซมแว่นกันแดด

ดูกลุ่มผลิตภัณฑ์อื่น ๆ ของเรา

Title:

ยังไม่ได้รับการแก้ไขปัญหาหรือไม่