Ενεργοποίηση προσβασιμότητας
Δωρεάν κανονική αποστολή άνω των 99 EUR
Αναζήτηση

Προϊόντα Swarovski

Title:

Αντικαταστάσεις & επιδιορθώσεις

Μπορεί να επισκευαστεί το προϊόν μου;

Φέρτε το προϊόν σας, μαζί με την απόδειξη αγοράς, στο πλησιέστερο κατάστημα Swarovski και θα χαρούμε να σας βοηθήσουμε και να αξιολογήσουμε το προϊόν. ​

Εάν διαπιστωθεί βλάβη και κριθεί ότι καλύπτεται από την εγγύηση, θα σας προσφερθεί αντικατάσταση ή επισκευή. ​

Εάν η βλάβη δεν εμπίπτει στο πεδίο εφαρμογής της εγγύησης, τότε ενδεχομένως να είναι δυνατή η επισκευή του προϊόντος έναντι χρέωσης.​

Μπορείτε να βρείτε το πλησιέστερο κατάστημα χρησιμοποιώντας τη λειτουργία εύρεσης καταστήματος στο ηλεκτρονικό μας κατάστημα: www.swarovski.com/store-finder/​

Λάβετε υπόψη ότι, εάν δεν προσκομιστεί η απόδειξη αγοράς ή εάν το προϊόν δεν εμπίπτει στην περίοδο εγγύησης, ενδεχομένως να είναι δυνατή η επισκευή του προϊόντος έναντι χρέωσης.​

 

Ποια είναι η κατάσταση της επισκευής μου

Παρακαλώ εισάγετε τις λεπτομέρειες επισκευής που παρέχονται στο email επιβεβαίωσης

Αριθμός επισκευής *
Επώνυμο
$(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: 'Τον αριθμό επισκευής είναι κενό', message_en: 'Τον αριθμό επισκευής είναι κενό' }, stringLength: { message: 'Ο αριθμός των χαρακτήρων σε αυτό το πεδίο πρέπει να είναι μεταξύ 0 και 18', 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: 'Ο αριθμός των χαρακτήρων σε αυτό το πεδίο πρέπει να είναι μεταξύ 0 και 35', 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); 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/ */ data.fv.disableSubmitButtons(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(); } };

Υποχρεωτικά πεδία*

Μπορώ να στείλω το αντικείμενό μου απευθείας στα κέντρα επισκευής;

Προς το παρόν, δεν προσφέρουμε τη δυνατότητα ταχυδρόμησης των αντικειμένων προς επισκευή απευθείας στα κέντρα επισκευής μας. 

Φέρτε το προϊόν σας, μαζί με την απόδειξη αγοράς, στο πλησιέστερο κατάστημα Swarovski και θα χαρούμε να σας βοηθήσουμε και να αξιολογήσουμε το προϊόν. 

Μπορείτε να βρείτε το πλησιέστερο κατάστημα χρησιμοποιώντας την online λειτουργία εύρεσης καταστήματος: www.swarovski.com/store-finder/

Πολιτική επισκευών

Swarovski offers a full statutory warranty for pieces purchased from authorized Swarovski retailers. The warranty covers manufacturing and material defects due to normal wear and use. Each defective product under warranty will be examined and evaluated by Swarovski’s technical experts. Depending on the circumstances, the product may be repaired, replaced with the same product, or substituted with a product of comparable value. Unfortunately, in the case of a product substitution, Swarovski is unable to guarantee that the exact same product or design will be provided. Swarovski will not repair, replace, or substitute any goods that have been, in the company’s opinion, subject to an accident, normal wear and tear, abuse, modification, attempted repair, negligence, or misuse. If a piece is not covered by the terms of the Swarovski warranty policy, the company may offer a repair service subject to a fee. Please note that a defective piece can only be repaired if:
1. The product is a genuine Swarovski product with the Swarovski Swan logo.
2. The repair is feasible – it must be possible to bring the product back to its original pristine condition
3. Spare parts are still available (this is usually not the case if a product is out of production) If you would like to replace or repair an item, please bring the product in its original packaging to an authorized Swarovski retailer.
The repair service is also available for Swarovski products that are purchased abroad.

Check our other sections

Title:

Not yet solved?