|
@@ -9,6 +9,7 @@ import org.apache.shiro.SecurityUtils;
|
|
|
import org.jeecg.common.constant.CommonConstant;
|
|
|
import org.jeecg.common.exception.JeecgBootException;
|
|
|
import org.jeecg.common.system.vo.LoginUser;
|
|
|
+import org.jeecg.common.util.DateUtils;
|
|
|
import org.jeecg.modules.app.vo.AppGameScheduleVO;
|
|
|
import org.jeecg.modules.app.vo.AppOrderProInfoVerifyVO;
|
|
|
import org.jeecg.modules.app.vo.ScanCodeQueryOrderVO;
|
|
@@ -299,10 +300,10 @@ public class AppOrderServiceImpl extends ServiceImpl<AppOrderMapper, AppOrder> i
|
|
|
for (String isinId : isinIds) {
|
|
|
//查询对应券号
|
|
|
AppIsin appIsin = appIsinMapper.selectById(isinId);
|
|
|
- appIsin.setIsinStatus(CommonConstant.ISIN_STATUS_2);
|
|
|
+ appIsin.setIsinStatus(CommonConstant.ISIN_STATUS_1);
|
|
|
appIsin.setVerifyUserId(loginUser.getId());
|
|
|
appIsin.setVerifyUserName(loginUser.getUsername());
|
|
|
- appIsin.setUseTime(new Date());
|
|
|
+ appIsin.setUseTime(DateUtils.getDate());
|
|
|
appIsinMapper.updateById(appIsin);
|
|
|
//修改订单状态
|
|
|
String orderProInfoId = appIsin.getOrderProInfoId();
|