Get an offer now!

    GET AN OFFER
    Special offers
    Automatic touchless car wash equipment Model DG

    Your chance to own the incredible water jet Washing Power!

    Condition:

    New. The equipment was instaled, tested, disassembled and currently ready for shipment.

    Standard functions:

    Parking guidance, Contour-following wash 100 bar@35 cm, Two sides washing, 2 step presoak application, High pressure wash, High pressure rinsing, Contour-following air dryer 16 kW @ 25 cm, Delta PLC & HMI.

    Options included:

    High pressure chasis wash, Overglow foam function, Reverse osmosis water (spot free) rinsing function.

    Download the full offer or contact us for more information!

    EUR excl. VAT 34 990.00 € 49 000.00
    Valid till: 15.12.2022
    Automatic touchless car wash equipment Washworld Razor

    Get your Legendary Stainless Steel Contactless Car Wash Beast next week!

    Condition:

    Used by careful owner from 2015 and ready for long years of operation.

    Custom washing programs, Stainless steel rails, mounts and assemblies, Stainless steel carriage, protected motors and gears, Wall mounted rails, Water softening and Reverse osmosis (spot free) unit, Electric water heater, High pressure pumping station, Belt drive, PLC cabinet, Entrance Wait/Go sign, Wall mounted air dryer, Dryer Count Down timer, Advanced vehicle sizing system, High Velocity wash carriage, Voice prompts, Programmable intake (hot or cold) water, Variable water flow and pressure, Variable air pressure, 3 step presoak, single low pressure and 2 high pressure applications, Triple pass technology for optimal front and rear cleaning, Bug A’Salt™ technology bug remover program, Foam ‘n Flow® application system.

    Download the full offer or contact us for more information!

    EUR excl. VAT 44 900.00
    Valid till: 30.09.2022
    export default { init() { this.offerPopUpToggle(); this.offerPopUpForm(); }, offerPopUpToggle(){ $('.popUp-open').on('click', function () { let form = $(this).attr("data-form"); $('.popup--offer-wrapper').show(300); $('.popup--offer-form').attr("data-form", form); }); $('.popup--offer-close').on('click', function () { $('.popup--offer-wrapper').hide(100); let form = $('.popup--offer-form'); form.attr("data-form", ''); form[0].reset(); $('.popup--offer-form input').parent().removeClass('input-invalid'); $('.popup--offer-form textarea').parent().removeClass('input-invalid'); $('.popup--offer-form .checkmark').parent().removeClass('input-invalid'); $('.popup--offer-form .popup--offer-error-msg').hide(); $('.popup--offer-form .popup--offer-success-msg').hide(); }); }, offerPopUpForm(){ let contactEmail = $('.popup--offer-form .contact_form_email'); let contactPhone = $('.popup--offer-form .contact_form_phone'); function validateEmail(elementValue1) { return /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/.test(elementValue1) } let validateNumbers = function (elementValue2) { return /^[-+]?[0-9]+$/.test(elementValue2); }; $(".popup--offer-form input").keyup(function (e) { if ($(this).val() === "") { $(this).addClass('input-invalid'); } else { $(this).removeClass('input-invalid'); } }); $(".popup--offer-form textarea").keyup(function (e) { if ($(this).val() === "") { $(this).parent().addClass('input-invalid'); } else { $(this).parent().removeClass('input-invalid'); } }); contactEmail.keyup(function () { let value = $(this).val(); let valid = validateEmail(value); if (!valid) { contactEmail.parent().addClass('input-invalid'); } else { contactEmail.parent().removeClass('input-invalid'); } }); contactPhone.keyup(function () { let value = $(this).val(); let valid = validateNumbers(value); if (!valid) { contactPhone.parent().addClass('input-invalid'); } else { contactPhone.parent().removeClass('input-invalid'); } }); $(document).on('submit', '.popup--offer-form', function (e) { e.preventDefault(); let loader = $('.popup--offer-form .loader-holder'); let errorMSg = $('.popup--offer-form .popup--offer-error-msg'); let successMsg = $('.popup--offer-form .popup--offer-success-msg'); let checkMark = $('.popup--offer-form .check-container'); errorMSg.hide(); successMsg.hide(); loader.show(); let validation = true; let contactEmail = $('.popup--offer-form .contact_form_email'); let contactPhone = $('.popup--offer-form .contact_form_phone'); $(".req input", this).each(function () { let element = $(this); if (element.val() === "") { $(element).parent().addClass('input-invalid'); errorMSg.slideDown(300); validation = false; } else { $(element).parent().removeClass('input-invalid'); errorMSg.hide(); } }); $(".req textarea", this).each(function () { let element = $(this); if (element.val() === "") { $(element).parent().addClass('input-invalid'); errorMSg.slideDown(300); validation = false; } else { $(element).parent().removeClass('input-invalid'); errorMSg.hide(); } }); if ($('.popup--offer-form .rules').is(":checked")) { checkMark.removeClass('input-invalid'); } else { checkMark.addClass('input-invalid'); validation = false; } let value = contactEmail.val(); let valid = validateEmail(value); if (!valid) { contactEmail.parent().addClass('input-invalid'); validation = false; } else { contactEmail.parent().removeClass('input-invalid'); } let value2 = contactPhone.val(); if (value2 !== "") { let valid2 = validateNumbers(value2); if (!valid2) { contactPhone.parent().addClass('input-invalid'); validation = false; } else { contactPhone.parent().removeClass('input-invalid'); } } let $form = $(this); let project = $('.popup--offer-form').attr('data-form'); if (validation == true) { let formData = new FormData(this); formData.append('action', 'offer_form'); formData.append('project', project); $.ajax({ url: my_ajax_object.ajax_url, data: formData, processData: false, contentType: false, type: 'POST', success: function (data) { successMsg.slideDown(300); $form[0].reset(); } }); } else { errorMSg.slideDown(300); } setTimeout(function () { loader.fadeOut(300); }, 1000); }); }, }