Commit 10d1f84f authored by hezhen's avatar hezhen

123

parent 66082813
...@@ -129,7 +129,7 @@ public class TourGoodSpeBiz extends BaseBiz<TourGoodSpePriceMapper, TourGoodSpeP ...@@ -129,7 +129,7 @@ public class TourGoodSpeBiz extends BaseBiz<TourGoodSpePriceMapper, TourGoodSpeP
} }
int days=(int)((startDateTime - endDateTime) / (1000 * 3600 * 24)); int days=(int)((startDateTime - endDateTime) / (1000 * 3600 * 24));
int tourDays=goodDetailBiz.getTourDays(); int tourDays=goodDetailBiz.getTourDays();
if (days>0&&days>=tourDays){ if (days>=0&&days>=tourDays){
return true; return true;
} }
return false; return false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment