Guest User

Untitled

a guest
May 21st, 2019
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function controlDedicaciones() {
  2.  
  3.   // Encuentra los valores de las celdas
  4.   var rangoDedicaciones = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Dedicaciones").getRange("C8");
  5.   var dedicaciones = rangoDedicaciones.getValue().getHours();
  6.   var rangoEstimaciones = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Dedicaciones").getRange("D8");
  7.   var estimaciones = rangoEstimaciones.getValue().getHours();
  8.   var ui = SpreadsheetApp.getUi();
  9.  
  10.   // Si las dedicaciones superan a las estimaciones
  11.   if (dedicaciones > estimaciones){
  12.    
  13.     // Envia un mail a la dirección
  14.     var direccionEmail = "[email protected]";
  15.  
  16.     var mensaje = 'Esta semana tus dedicaciones fueron ' + dedicaciones +
  17.       " horas, cuando tenias " + estimaciones + " horas estimadas";
  18.     var asunto = 'Alerta: dedicaciones excedidas';
  19.     MailApp.sendEmail(direccionEmail, subject, message);
  20.    
  21.   }
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment