Browse Source

零星支付增加,关心包(充值)类型

周箭河 4 years ago
parent
commit
4d28536be7

+ 2 - 2
mec-biz/src/main/java/com/ym/mec/biz/service/impl/InspectionItemPlanConclusionServiceImpl.java

@@ -49,11 +49,11 @@ public class InspectionItemPlanConclusionServiceImpl extends BaseServiceImpl<Lon
         //时间早于/晚于计划时间当天,不能提交
         InspectionItemPlan inspectionItemPlan = inspectionItemPlanDao.get(planId);
         if (nowDate.before(DateUtil.trunc(inspectionItemPlan.getPlanStart()))) {
-            throw new BizException("提时间不能早于日程安排当天");
+            throw new BizException("提时间不能早于日程安排当天");
         }
 
         if (nowDate.after(DateUtil.getLastTimeWithDay(inspectionItemPlan.getPlanStart()))) {
-            throw new BizException("提时间不能晚于日程安排当天");
+            throw new BizException("提时间不能晚于日程安排当天");
         }
 
         inspectionItemPlanConclusionDao.delByPlanIdAndCheckItem(planId, checkItem);