Discount

Discount for digital customers

Since December 2019, De Watergroep has offered a 10 euro discount to digital customers to accelerate the transition to more sustainable digital billing.

introductie foto Discount for digital customers

GO DIGITAL

There are lots of good reasons to manage meter readings and water bills digitally.

  • Digital is more sustainable: together, we can save on paper and fuel.
  • Digital is more practical: customers can see their online bills anytime, anywhere.
  • Digital is quicker. Using Doccle or Zoomit, people can pay with just a single click of a button.

PROMOTIONAL CAMPAIGN

In 2019, more than 80 percent of our bills were still being posted out. To change this, we started a unique promotional campaign in December 2019: customers opting in to electronic billing would receive a one-off 10 euro discount. This discount was also available to existing digital customers. For all new digital customers, De Watergroep also donated an additional euro to charity. The campaign will run until December 2020, at which point we will review its success.

function swipedetect(el, callback){ var touchsurface = el, swipedir, startX, startY, distX, distY, threshold = 200, //required min distance traveled to be considered swipe restraint = 100, // maximum distance allowed at the same time in perpendicular direction allowedTime = 300, // maximum time allowed to travel that distance elapsedTime, startTime, handleswipe = callback || function(swipedir){} touchsurface.addEventListener('touchstart', function(e){ var touchobj = e.changedTouches[0] swipedir = 'none' dist = 0 startX = touchobj.pageX startY = touchobj.pageY startTime = new Date().getTime() // record time when finger first makes contact with surface e.preventDefault() }, false) touchsurface.addEventListener('touchmove', function(e){ e.preventDefault() // prevent scrolling when inside DIV }, false) touchsurface.addEventListener('touchend', function(e){ var touchobj = e.changedTouches[0] distX = touchobj.pageX - startX // get horizontal dist traveled by finger while in contact with surface distY = touchobj.pageY - startY // get vertical dist traveled by finger while in contact with surface elapsedTime = new Date().getTime() - startTime // get time elapsed if (elapsedTime <= allowedTime){ // first condition for awipe met if (Math.abs(distX) >= threshold && Math.abs(distY) <= restraint){ // 2nd condition for horizontal swipe met swipedir = (distX < 0)? 'left' : 'right' // if dist traveled is negative, it indicates left swipe } else if (Math.abs(distY) >= threshold && Math.abs(distX) <= restraint){ // 2nd condition for vertical swipe met swipedir = (distY < 0)? 'up' : 'down' // if dist traveled is negative, it indicates up swipe } } handleswipe(swipedir) e.preventDefault() }, false) } window.addEventListener('load', function(){ var el = document.getElementById('prevnextbar') var nextpage = document.getElementById('nextpage') var prevpage = document.getElementById('prevpage') swipedetect(el, function(swipedir){ if (swipedir != 'right'){ prevpage.click() } if (swipedir != 'left'){ nextpage.click() } }) }, false)