|
|
@@ -351,6 +351,7 @@ namespace CG67.FicheCollege.Domaine
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// Obtient ou définit la dotation à l'année N de l'établissement.
|
|
|
+ /// cette valeur change à partir du mois d'octobre
|
|
|
/// </summary>
|
|
|
public Dotation DotationAnneeN
|
|
|
{
|
|
|
@@ -358,7 +359,7 @@ namespace CG67.FicheCollege.Domaine
|
|
|
{
|
|
|
if (mDotationAnneeN == null)
|
|
|
mAnneeCivil = System.DateTime.Now.Year;
|
|
|
- if (System.DateTime.Now.Month > 8)
|
|
|
+ if (System.DateTime.Now.Month > 9)
|
|
|
mAnneeCivil += 1;
|
|
|
mDotationAnneeN = this.LoaderDotation(mCodeRNE, mAnneeCivil);
|
|
|
return mDotationAnneeN;
|
|
|
@@ -374,7 +375,7 @@ namespace CG67.FicheCollege.Domaine
|
|
|
{
|
|
|
if (mDotationAnneeNmoins1 == null)
|
|
|
mAnneeCivil = System.DateTime.Now.Year;
|
|
|
- if (System.DateTime.Now.Month > 8)
|
|
|
+ if (System.DateTime.Now.Month > 9)
|
|
|
mAnneeCivil += 1;
|
|
|
mDotationAnneeNmoins1 = this.LoaderDotation(mCodeRNE, mAnneeCivil - 1);
|
|
|
return mDotationAnneeNmoins1;
|