|  |  |  | @ -139,13 +139,13 @@ class _MonthlyAttendanceState extends State<MonthlyAttendance> { | 
		
	
		
			
				|  |  |  |  |               Row( | 
		
	
		
			
				|  |  |  |  |                 mainAxisAlignment: MainAxisAlignment.start, | 
		
	
		
			
				|  |  |  |  |                 children: [ | 
		
	
		
			
				|  |  |  |  |                   optionUI(LocaleKeys.scheduleDays.tr(), "${getTimeCardSummaryList?.sCHEDULEDAYS}"), | 
		
	
		
			
				|  |  |  |  |                   optionUI(LocaleKeys.scheduleDays.tr(), "${getTimeCardSummaryList?.sCHEDULEDAYS != null ? getTimeCardSummaryList!.sCHEDULEDAYS : 0}"), | 
		
	
		
			
				|  |  |  |  |                   6.width, | 
		
	
		
			
				|  |  |  |  |                   optionUI(LocaleKeys.offDays.tr(), "${getTimeCardSummaryList?.oFFDAYS}"), | 
		
	
		
			
				|  |  |  |  |                   optionUI(LocaleKeys.offDays.tr(), "${getTimeCardSummaryList?.oFFDAYS != null ? getTimeCardSummaryList!.oFFDAYS : 0}"), | 
		
	
		
			
				|  |  |  |  |                   6.width, | 
		
	
		
			
				|  |  |  |  |                   optionUI(LocaleKeys.nonAnalyzed.tr(), "${getTimeCardSummaryList?.uNAUTHORIZEDLEAVE}"), | 
		
	
		
			
				|  |  |  |  |                   optionUI(LocaleKeys.nonAnalyzed.tr(), "${getTimeCardSummaryList?.uNAUTHORIZEDLEAVE != null ? getTimeCardSummaryList!.uNAUTHORIZEDLEAVE : 0}"), | 
		
	
		
			
				|  |  |  |  |                   6.width, | 
		
	
		
			
				|  |  |  |  |                   optionUI(LocaleKeys.shortageHour.tr(), "${getTimeCardSummaryList?.sHORTAGEHRS}"), | 
		
	
		
			
				|  |  |  |  |                   optionUI(LocaleKeys.shortageHour.tr(), "${getTimeCardSummaryList?.sHORTAGEHRS != null ? getTimeCardSummaryList!.sHORTAGEHRS : 0}"), | 
		
	
		
			
				|  |  |  |  |                 ], | 
		
	
		
			
				|  |  |  |  |               ).paddingOnly(left: 21, right: 21), | 
		
	
		
			
				|  |  |  |  |               35.height, | 
		
	
	
		
			
				
					|  |  |  | @ -319,81 +319,87 @@ class _MonthlyAttendanceState extends State<MonthlyAttendance> { | 
		
	
		
			
				|  |  |  |  |         if (details.date.month == formattedDate.month && details.date.year == formattedDate.year) { | 
		
	
		
			
				|  |  |  |  |           int val = details.date.day; | 
		
	
		
			
				|  |  |  |  |           //check day is off | 
		
	
		
			
				|  |  |  |  |           if (getDayHoursTypeDetailsList?[val - 1].aTTENDEDFLAG == 'N' && getDayHoursTypeDetailsList?[val - 1].dAYTYPE == 'OFF') { | 
		
	
		
			
				|  |  |  |  |             return Container( | 
		
	
		
			
				|  |  |  |  |               margin: const EdgeInsets.all(4), | 
		
	
		
			
				|  |  |  |  |               decoration: BoxDecoration( | 
		
	
		
			
				|  |  |  |  |                 color: MyColors.greyACColor.withOpacity(.12), | 
		
	
		
			
				|  |  |  |  |                 shape: BoxShape.circle, | 
		
	
		
			
				|  |  |  |  |               ), | 
		
	
		
			
				|  |  |  |  |               alignment: Alignment.center, | 
		
	
		
			
				|  |  |  |  |               child: Text( | 
		
	
		
			
				|  |  |  |  |                 "$val", | 
		
	
		
			
				|  |  |  |  |                 style: const TextStyle( | 
		
	
		
			
				|  |  |  |  |                   fontSize: 13, | 
		
	
		
			
				|  |  |  |  |                   fontWeight: FontWeight.w500, | 
		
	
		
			
				|  |  |  |  |                   color: MyColors.greyA5Color, | 
		
	
		
			
				|  |  |  |  |                 ), | 
		
	
		
			
				|  |  |  |  |               ), | 
		
	
		
			
				|  |  |  |  |             ); | 
		
	
		
			
				|  |  |  |  |           } | 
		
	
		
			
				|  |  |  |  |           //check day is Present | 
		
	
		
			
				|  |  |  |  |           else if (getDayHoursTypeDetailsList?[val - 1].aTTENDEDFLAG == 'Y') { | 
		
	
		
			
				|  |  |  |  |             return Container( | 
		
	
		
			
				|  |  |  |  |               margin: const EdgeInsets.all(4), | 
		
	
		
			
				|  |  |  |  |               decoration: BoxDecoration( | 
		
	
		
			
				|  |  |  |  |                 gradient: const LinearGradient( | 
		
	
		
			
				|  |  |  |  |                   transform: GradientRotation(.46), | 
		
	
		
			
				|  |  |  |  |                   begin: Alignment.topRight, | 
		
	
		
			
				|  |  |  |  |                   end: Alignment.bottomLeft, | 
		
	
		
			
				|  |  |  |  |                   colors: [MyColors.gradiantEndColor, MyColors.gradiantStartColor], | 
		
	
		
			
				|  |  |  |  |                 ), | 
		
	
		
			
				|  |  |  |  |                 shape: BoxShape.circle, | 
		
	
		
			
				|  |  |  |  |                 boxShadow: [ | 
		
	
		
			
				|  |  |  |  |                   BoxShadow( | 
		
	
		
			
				|  |  |  |  |                     offset: const Offset(0, 2), | 
		
	
		
			
				|  |  |  |  |                     blurRadius: 26, | 
		
	
		
			
				|  |  |  |  |                     color: MyColors.blackColor.withOpacity(0.100), | 
		
	
		
			
				|  |  |  |  |           if(getDayHoursTypeDetailsList.isNotEmpty) | 
		
	
		
			
				|  |  |  |  | 
 | 
		
	
		
			
				|  |  |  |  |             { | 
		
	
		
			
				|  |  |  |  |               if (getDayHoursTypeDetailsList?[val - 1].aTTENDEDFLAG == 'N' && getDayHoursTypeDetailsList?[val - 1].dAYTYPE == 'OFF') { | 
		
	
		
			
				|  |  |  |  |                 return Container( | 
		
	
		
			
				|  |  |  |  |                   margin: const EdgeInsets.all(4), | 
		
	
		
			
				|  |  |  |  |                   decoration: BoxDecoration( | 
		
	
		
			
				|  |  |  |  |                     color: MyColors.greyACColor.withOpacity(.12), | 
		
	
		
			
				|  |  |  |  |                     shape: BoxShape.circle, | 
		
	
		
			
				|  |  |  |  |                   ), | 
		
	
		
			
				|  |  |  |  |                 ], | 
		
	
		
			
				|  |  |  |  |               ), | 
		
	
		
			
				|  |  |  |  |               alignment: Alignment.center, | 
		
	
		
			
				|  |  |  |  |               child: Text( | 
		
	
		
			
				|  |  |  |  |                 "$val", | 
		
	
		
			
				|  |  |  |  |                 style: const TextStyle( | 
		
	
		
			
				|  |  |  |  |                   fontSize: 13, | 
		
	
		
			
				|  |  |  |  |                   fontWeight: FontWeight.w500, | 
		
	
		
			
				|  |  |  |  |                   color: MyColors.white, | 
		
	
		
			
				|  |  |  |  |                 ), | 
		
	
		
			
				|  |  |  |  |               ), | 
		
	
		
			
				|  |  |  |  |             ); | 
		
	
		
			
				|  |  |  |  |           } | 
		
	
		
			
				|  |  |  |  |           //check day is Absent | 
		
	
		
			
				|  |  |  |  |           else if (getDayHoursTypeDetailsList?[val - 1].aTTENDEDFLAG == 'N' && getDayHoursTypeDetailsList?[val - 1].aBSENTFLAG == 'Y') { | 
		
	
		
			
				|  |  |  |  |             return Container( | 
		
	
		
			
				|  |  |  |  |               margin: const EdgeInsets.all(4), | 
		
	
		
			
				|  |  |  |  |               decoration: BoxDecoration( | 
		
	
		
			
				|  |  |  |  |                 color: MyColors.backgroundBlackColor, | 
		
	
		
			
				|  |  |  |  |                 shape: BoxShape.circle, | 
		
	
		
			
				|  |  |  |  |                 boxShadow: [ | 
		
	
		
			
				|  |  |  |  |                   BoxShadow( | 
		
	
		
			
				|  |  |  |  |                     offset: const Offset(0, 2), | 
		
	
		
			
				|  |  |  |  |                     blurRadius: 26, | 
		
	
		
			
				|  |  |  |  |                     color: MyColors.blackColor.withOpacity(0.100), | 
		
	
		
			
				|  |  |  |  |                   alignment: Alignment.center, | 
		
	
		
			
				|  |  |  |  |                   child: Text( | 
		
	
		
			
				|  |  |  |  |                     "$val", | 
		
	
		
			
				|  |  |  |  |                     style: const TextStyle( | 
		
	
		
			
				|  |  |  |  |                       fontSize: 13, | 
		
	
		
			
				|  |  |  |  |                       fontWeight: FontWeight.w500, | 
		
	
		
			
				|  |  |  |  |                       color: MyColors.greyA5Color, | 
		
	
		
			
				|  |  |  |  |                     ), | 
		
	
		
			
				|  |  |  |  |                   ), | 
		
	
		
			
				|  |  |  |  |                 ], | 
		
	
		
			
				|  |  |  |  |               ), | 
		
	
		
			
				|  |  |  |  |               alignment: Alignment.center, | 
		
	
		
			
				|  |  |  |  |               child: Text( | 
		
	
		
			
				|  |  |  |  |                 "$val", | 
		
	
		
			
				|  |  |  |  |                 style: const TextStyle( | 
		
	
		
			
				|  |  |  |  |                   fontSize: 13, | 
		
	
		
			
				|  |  |  |  |                   fontWeight: FontWeight.w500, | 
		
	
		
			
				|  |  |  |  |                   color: MyColors.white, | 
		
	
		
			
				|  |  |  |  |                 ), | 
		
	
		
			
				|  |  |  |  |               ), | 
		
	
		
			
				|  |  |  |  |             ); | 
		
	
		
			
				|  |  |  |  |           } | 
		
	
		
			
				|  |  |  |  |                 ); | 
		
	
		
			
				|  |  |  |  |               } | 
		
	
		
			
				|  |  |  |  |               //check day is Present | 
		
	
		
			
				|  |  |  |  |               else if (getDayHoursTypeDetailsList?[val - 1].aTTENDEDFLAG == 'Y') { | 
		
	
		
			
				|  |  |  |  |                 return Container( | 
		
	
		
			
				|  |  |  |  |                   margin: const EdgeInsets.all(4), | 
		
	
		
			
				|  |  |  |  |                   decoration: BoxDecoration( | 
		
	
		
			
				|  |  |  |  |                     gradient: const LinearGradient( | 
		
	
		
			
				|  |  |  |  |                       transform: GradientRotation(.46), | 
		
	
		
			
				|  |  |  |  |                       begin: Alignment.topRight, | 
		
	
		
			
				|  |  |  |  |                       end: Alignment.bottomLeft, | 
		
	
		
			
				|  |  |  |  |                       colors: [MyColors.gradiantEndColor, MyColors.gradiantStartColor], | 
		
	
		
			
				|  |  |  |  |                     ), | 
		
	
		
			
				|  |  |  |  |                     shape: BoxShape.circle, | 
		
	
		
			
				|  |  |  |  |                     boxShadow: [ | 
		
	
		
			
				|  |  |  |  |                       BoxShadow( | 
		
	
		
			
				|  |  |  |  |                         offset: const Offset(0, 2), | 
		
	
		
			
				|  |  |  |  |                         blurRadius: 26, | 
		
	
		
			
				|  |  |  |  |                         color: MyColors.blackColor.withOpacity(0.100), | 
		
	
		
			
				|  |  |  |  |                       ), | 
		
	
		
			
				|  |  |  |  |                     ], | 
		
	
		
			
				|  |  |  |  |                   ), | 
		
	
		
			
				|  |  |  |  |                   alignment: Alignment.center, | 
		
	
		
			
				|  |  |  |  |                   child: Text( | 
		
	
		
			
				|  |  |  |  |                     "$val", | 
		
	
		
			
				|  |  |  |  |                     style: const TextStyle( | 
		
	
		
			
				|  |  |  |  |                       fontSize: 13, | 
		
	
		
			
				|  |  |  |  |                       fontWeight: FontWeight.w500, | 
		
	
		
			
				|  |  |  |  |                       color: MyColors.white, | 
		
	
		
			
				|  |  |  |  |                     ), | 
		
	
		
			
				|  |  |  |  |                   ), | 
		
	
		
			
				|  |  |  |  |                 ); | 
		
	
		
			
				|  |  |  |  |               } | 
		
	
		
			
				|  |  |  |  |               //check day is Absent | 
		
	
		
			
				|  |  |  |  |               else if (getDayHoursTypeDetailsList?[val - 1].aTTENDEDFLAG == 'N' && getDayHoursTypeDetailsList?[val - 1].aBSENTFLAG == 'Y') { | 
		
	
		
			
				|  |  |  |  |                 return Container( | 
		
	
		
			
				|  |  |  |  |                   margin: const EdgeInsets.all(4), | 
		
	
		
			
				|  |  |  |  |                   decoration: BoxDecoration( | 
		
	
		
			
				|  |  |  |  |                     color: MyColors.backgroundBlackColor, | 
		
	
		
			
				|  |  |  |  |                     shape: BoxShape.circle, | 
		
	
		
			
				|  |  |  |  |                     boxShadow: [ | 
		
	
		
			
				|  |  |  |  |                       BoxShadow( | 
		
	
		
			
				|  |  |  |  |                         offset: const Offset(0, 2), | 
		
	
		
			
				|  |  |  |  |                         blurRadius: 26, | 
		
	
		
			
				|  |  |  |  |                         color: MyColors.blackColor.withOpacity(0.100), | 
		
	
		
			
				|  |  |  |  |                       ), | 
		
	
		
			
				|  |  |  |  |                     ], | 
		
	
		
			
				|  |  |  |  |                   ), | 
		
	
		
			
				|  |  |  |  |                   alignment: Alignment.center, | 
		
	
		
			
				|  |  |  |  |                   child: Text( | 
		
	
		
			
				|  |  |  |  |                     "$val", | 
		
	
		
			
				|  |  |  |  |                     style: const TextStyle( | 
		
	
		
			
				|  |  |  |  |                       fontSize: 13, | 
		
	
		
			
				|  |  |  |  |                       fontWeight: FontWeight.w500, | 
		
	
		
			
				|  |  |  |  |                       color: MyColors.white, | 
		
	
		
			
				|  |  |  |  |                     ), | 
		
	
		
			
				|  |  |  |  |                   ), | 
		
	
		
			
				|  |  |  |  |                 ); | 
		
	
		
			
				|  |  |  |  |               } | 
		
	
		
			
				|  |  |  |  | 
 | 
		
	
		
			
				|  |  |  |  | 
 | 
		
	
		
			
				|  |  |  |  |             } | 
		
	
		
			
				|  |  |  |  |           return Container( | 
		
	
		
			
				|  |  |  |  |             margin: const EdgeInsets.all(4), | 
		
	
		
			
				|  |  |  |  |             decoration: BoxDecoration( | 
		
	
	
		
			
				
					|  |  |  | 
 |