记得上下班打卡 | git大法好,push需谨慎

Commit 93816f3a authored by zhengfuxin's avatar zhengfuxin

加入 try

parent ca458ce2
......@@ -65,6 +65,7 @@ public class SellDataInfoImpl {
for(SmileUser smileUser:list){
//-- 看这个人有哪些演出维度的订单 (支付的、演出id,该用户的。)
if(StringUtil.isNotBlank(smileUser.getUid())){
try {
// //获取 该人 该演出 的所有订单 (6个月)
List<Map> list1=orderTicketsMapper.getUserOrder(smileUser.getUid());
for(Map a:list1){
......@@ -112,6 +113,11 @@ public class SellDataInfoImpl {
}
}
}catch (Exception e){
log.info(String.valueOf(e));
log.info("用户的uid{}",smileUser.getUid());
}
}
}
......@@ -147,8 +153,8 @@ public class SellDataInfoImpl {
//已结算(已完成)
a.put("status","3");
}else{
if(null!=a.get("timeEnd")){
java.sql.Timestamp timeEnd= (java.sql.Timestamp) a.get("timeEnd");
if(null!=timeEnd){
if(timeEnd.after(new Date(System.currentTimeMillis()))){
//待入账(项目未结束)
a.put("status","1");
......
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