Ver Fonte

Vss2Git

Celine.meneu há 15 anos atrás
pai
commit
efb87fb914

+ 2 - 2
CG67.FicheCollege.root/CG67.FicheCollege/Core/CG67.FicheCollege.Domaine/Etablissement.cs

@@ -359,7 +359,7 @@ namespace CG67.FicheCollege.Domaine
             {
                 if (mDotationAnneeN == null)
                     mAnneeCivil = System.DateTime.Now.Year;
-                    if (System.DateTime.Now.Month > 12)
+                    if (System.DateTime.Now.Month > 11)
                         mAnneeCivil += 1;
                      mDotationAnneeN = this.LoaderDotation(mCodeRNE, mAnneeCivil); 
                 return mDotationAnneeN;
@@ -375,7 +375,7 @@ namespace CG67.FicheCollege.Domaine
             {
                 if (mDotationAnneeNmoins1 == null)
                     mAnneeCivil = System.DateTime.Now.Year;
-                if (System.DateTime.Now.Month > 12)
+                if (System.DateTime.Now.Month > 11)
                     mAnneeCivil += 1;
                 mDotationAnneeNmoins1 = this.LoaderDotation(mCodeRNE, mAnneeCivil - 1); 
                 return mDotationAnneeNmoins1;