This commit is contained in:
2018-12-03 21:24:14 +00:00
parent 90db726a7c
commit b1f2135cc3
2 changed files with 1 additions and 6 deletions

View File

@@ -38,8 +38,7 @@ namespace AyaNova.Biz
//More business time frames
public const string LastQuarter = "{[lastquarter]}";
public const string YearToDate = "{[yeartodate]}";
public const string QuarterToDate = "{[quartertodate]}";
public const string MonthToDate = "{[monthtodate]}";//Isn't this just "thismonth"?
public const string QuarterToDate = "{[quartertodate]}";
public const string Past90Days = "{[past90days]}";
public const string Past30Days = "{[past30days]}";
public const string Past24Hours = "{[past24hours]}";

View File

@@ -748,9 +748,6 @@ namespace AyaNova.Biz
dtAfter = new DateTime(DateTime.Now.Year, 10, 1, 00, 00, 00);
dtBefore = DateTime.Now;
break;
}
sb.Append(">'");
sb.Append(PostgresDateFormat(dtAfter));
@@ -761,7 +758,6 @@ namespace AyaNova.Biz
sb.Append(PostgresDateFormat(dtBefore));
sb.Append("'");
break;
}
#endregion