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

Commit 378306a3 authored by jiangxiulong's avatar jiangxiulong

test

parent aae0278a
......@@ -80,7 +80,6 @@ public class KylinRefundsStatusServiceImpl {
dataUtils.delOrderTicketRedis(orderInfo.getOrderTicketsId());
log.info("orderInfo.getUserId() = "+ orderInfo.getUserId());
orderUtils.resetOrderListVo(orderInfo.getUserId(), 2, orderInfo.getOrderTicketsId(), null);
log.info("1111");
......@@ -88,7 +87,6 @@ public class KylinRefundsStatusServiceImpl {
KylinOrderTicketEntities entitiesTable = new KylinOrderTicketEntities();
entitiesTable.setIsPayment(KylinTableStatusConst.ENTITIES_IS_PAYMENT2);
entitiesTable.setUpdatedAt(time);
log.info("2222");
// BigDecimal oldRefundPrice = BigDecimal.valueOf(0);
// for (KylinOrderTicketEntitiesVo item :orderInfo.getEntitiesVoList()) {
......@@ -108,7 +106,9 @@ public class KylinRefundsStatusServiceImpl {
Query.query(Criteria.where("orderTicketEntitiesId").is(orderEntitiesId)).getQueryObject(),
entitiesObject
);
log.info("1111");
dataUtils.delOrderTicketEntitiesRedis(orderEntitiesId);
log.info("2222");
// 退款明细
KylinOrderRefunds kylinOrderRefunds = new KylinOrderRefunds();
......@@ -140,7 +140,7 @@ public class KylinRefundsStatusServiceImpl {
orderRefundsVo.setCreatedAt(time);
orderRefundsVo.setApplicantAt(time);
mongoTemplate.insert(orderRefundsVo, KylinOrderRefundsVo.class.getSimpleName());
log.info("3333");
// 退款入场人表
KylinOrderRefundEntities kylinOrderRefundEntities = new KylinOrderRefundEntities();
......@@ -155,7 +155,7 @@ public class KylinRefundsStatusServiceImpl {
BeanUtils.copyProperties(kylinOrderRefundEntities, orderRefundEntitiesVo);
orderRefundEntitiesVo.setCreatedAt(strTime);
mongoTemplate.insert(orderRefundEntitiesVo, KylinOrderRefundEntitiesVo.class.getSimpleName());
log.info("4444");
//退款图片
KylinOrderRefundPic orderRefundPic = new KylinOrderRefundPic();
orderRefundPic.setRefundPicId(IDGenerator.nextSnowId());
......@@ -167,8 +167,9 @@ public class KylinRefundsStatusServiceImpl {
BeanUtils.copyProperties(orderRefundPic, orderRefundPicVo);
orderRefundPicVo.setCreatedAt(strTime);
mongoTemplate.insert(orderRefundPicVo, KylinOrderRefundPicVo.class.getSimpleName());
log.info("5555");
dataUtils.delOrderRefundVoByOrderId(orderInfo.getOrderTicketsId());
log.info("6666");
//MQ
LinkedList<String> sqls = CollectionUtil.linkedListString();
LinkedList<Object[]> sqlsDataA = CollectionUtil.linkedListObjectArr();
......
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