|
|
@@ -380,7 +380,7 @@ public class PurchaseTenderSimpleInfo {
|
|
|
end.set(Calendar.YEAR, publishDate.getYear());
|
|
|
end.set(Calendar.MONTH, publishDate.getMonth());
|
|
|
end.set(Calendar.DAY_OF_MONTH, publishDate.getDate());
|
|
|
- if (now.compareTo(end) > 0) {
|
|
|
+ if (now.compareTo(end) >= 0) {
|
|
|
return 1;
|
|
|
} else {
|
|
|
return 0;
|