card year

This commit is contained in:
CHIEFSOFT\ameye
2024-02-12 11:06:16 -05:00
parent eb148925ee
commit 6524895f28
3 changed files with 435 additions and 372 deletions
@@ -88,6 +88,7 @@ export class SessionDataProviderService {
session_contructed:boolean = false;
getMonths(){
// return ["January","February","March","April","May","June","July",
// "August","September","October","November","December"];
@@ -107,6 +108,15 @@ export class SessionDataProviderService {
];
}
getCardExpirationYears(){
var currY = new Date().getFullYear();
var arrY = [];
for(var i=1; i<=10; i++) {
arrY.push(currY+i);
}
return arrY;
}
durationArray = [
{ duration: 1, name: "1 day" },
{ duration: 2, name: "2 days" },