-
Notifications
You must be signed in to change notification settings - Fork 0
/
fechas.js
60 lines (51 loc) · 1.67 KB
/
fechas.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
function Fechas(mfecha) {
this.fecha = mfecha;
}
Fechas.prototype = {
sumarDias : function(dias)
{ return sumarDias(this.fecha, dias); },
numeroSemana : function()
{ return getWeekNumber(this.fecha); },
formato : function()
{ return formato_fecha(this.fecha); }
}
//Fechas.prototype.sumarDias = function(dias) { return sumarDias(this.fecha, dias); }
//Fechas.prototype.numeroSemana = function() { alert(2); } //return getWeekNumber(this.fecha); }
//Fechas.prototype.formato = function(){ return formato_fecha(this.fecha); }
function getWeekNumber(d) {
d = new Date(d);
d.setHours(0,0,0);
d.setDate(d.getDate() + 4 - (d.getDay()||7));
var yearStart = new Date(d.getFullYear(),0,1);
var weekNo = Math.ceil(( ( (d - yearStart) / 86400000) + 1)/7)
return weekNo;
}
function sumarDias(fecha, dias) {
var sdias = 86400000 * dias;
var segundos = fecha.getTime();
var resultado = new Date();
resultado.setTime(parseInt(segundos + sdias));
return resultado;
}
function formato_fecha(fecha) {
var dd = fecha.getDate();
var mm = (fecha.getMonth());
var yy = fecha.getFullYear();
var mes = "";
switch(mm) {
case 0: { mes = "Ene"; break;}
case 1: { mes = "Feb"; break;}
case 2: { mes = "Mar"; break;}
case 3: { mes = "Abr"; break;}
case 4: { mes = "May"; break;}
case 5: { mes = "Jun"; break;}
case 6: { mes = "Jul"; break;}
case 7: { mes = "Ago"; break;}
case 8: { mes = "Sep"; break;}
case 9: { mes = "Oct"; break;}
case 10: { mes = "Nov"; break;}
case 11: { mes = "Dic"; break;}
}
var sfecha = dd.toString() + "/" + mes + "/" + yy.toString();
return sfecha;
}