En esta sección se atenderán las dudas relacionadas con sistemas de gestión de la calidad, procedimientos, buenas prácticas, normas y todo lo relacionado con aseguramiento de la calidad
Moderator: julianmartinez16
-
andresfqs
- Posts: 14
- Joined: Thu Jul 26, 2018 12:12 pm
Post
by andresfqs » Tue Sep 11, 2018 10:47 am
Sprint 4 - agosto 29 - septiembre 9
Creación del diagrama de procesos para el modulo login - 2
Creación del diagrama de secuencia para el modulo del login - 2
Implementación del modulo login - 6
Velocidad: 10
Gráfica burndown
CheckList
https://upbeduco-my.sharepoint.com/:x:/ ... Q?e=BNi2tL
Evidencias

Last edited by
andresfqs on Thu Sep 20, 2018 11:43 am, edited 2 times in total.
-
andresfqs
- Posts: 14
- Joined: Thu Jul 26, 2018 12:12 pm
Post
by andresfqs » Mon Sep 24, 2018 9:36 am
Preentrega
Last edited by
andresfqs on Mon Oct 08, 2018 6:22 pm, edited 1 time in total.
-
xacarana
- Site Admin
- Posts: 1213
- Joined: Fri Jan 15, 2016 6:13 pm
Post
by xacarana » Tue Oct 02, 2018 1:17 pm
Pendiente la publicación del martes, la próxima clase revisamos avance en el repositorio, avance de martes y jueves, validación en el checklist de diseño y código y burndown actualizado.
Andrés Bedoya Tobón
Profesor
"I only smile in the dark, I only smile when it's complicated" Raybiez
-
andresfqs
- Posts: 14
- Joined: Thu Jul 26, 2018 12:12 pm
Post
by andresfqs » Mon Oct 08, 2018 6:21 pm
Codigo para el informe code review 2
Code: Select all
var items = [];
function fn_Validar() {
var hoja = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Prueba");
var celdas = hoja.getRange(1, 1, 23, 10);
fn_Limpiar();
for(var i = 4; i<=20; i++){
if(new String(celdas.getCell(i, 1).getValue()).valueOf() != new String("").valueOf()){
var cnt = 0;
for(var j = 2; j<5; j++){
var valor = celdas.getCell(i, j).getValue();
if(new String(valor).valueOf() != new String("").valueOf()){
cnt+=1;
}
}
if(cnt!=1 || new String(celdas.getCell(i, 3).getValue()).valueOf() == new String("x").valueOf()){
items.push(i);
for(var k=1; k<5; k++)
celdas.getCell(i,k).setBackground("#FF0000");
}
}
}
}
function fn_Limpiar() {
var hoja = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Prueba");
var celdas = hoja.getRange(1, 1, 23, 10);
for(var i = 4; i<=20; i++){
for(var j = 1; j<5; j++){
celdas.getCell(i,j).setBackground("#FFFFFF");
}
}
}
function fn_Revisar() {
var hoja = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Prueba");
var celdas = hoja.getRange(1, 1, 23, 10);
fn_Validar();
var str = "<table border='1'><tr><td>Nombre</td><td>Cumple</td><td>No Cumple</td><td>N/A</td><td>Descripción</td></tr>";
for(var i = 0; i<items.length; i++){
str+="<tr>" + "<td>" + celdas.getCell(items[i], 1).getValue() + "</td>" + "<td>" + celdas.getCell(items[i], 2).getValue() + "</td>" + "<td>" + celdas.getCell(items[i], 3).getValue() + "</td>" + "<td>" + celdas.getCell(items[i], 4).getValue() + "</td>" + "<td>" + celdas.getCell(items[i], 5).getValue() + "</td>" + "</tr>";
}
str+="</table>";
GmailApp.sendEmail("andres.quinteros@upb.edu.co","Code Review Academic Student", "",
{
name:"Andrés Felipe Quintero y Jhonathan Stiven Franco",
from:GmailApp.getAliases()[0],
bcc:"andres.quinteros@upb.edu.co",
htmlBody: str
});
}
-
andresfqs
- Posts: 14
- Joined: Thu Jul 26, 2018 12:12 pm
Post
by andresfqs » Thu Nov 08, 2018 11:52 am
AcademicStudent Entrega
Presentación
Demo