From 512a2f0fb09b663b8de19b5313c8bd5899f4f74b Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Tue, 06 Apr 2021 09:44:06 +0800 Subject: [PATCH] Merge branch 'score_shop' of http://120.27.238.55:7000/r/beauty-erp into score_shop --- zq-erp/src/main/java/com/matrix/system/shopXcx/quartz/ShopActivityTimeOutQuartz.java | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/shopXcx/quartz/ShopActivityTimeOutQuartz.java b/zq-erp/src/main/java/com/matrix/system/shopXcx/quartz/ShopActivityTimeOutQuartz.java index ae48bc2..8f1d146 100644 --- a/zq-erp/src/main/java/com/matrix/system/shopXcx/quartz/ShopActivityTimeOutQuartz.java +++ b/zq-erp/src/main/java/com/matrix/system/shopXcx/quartz/ShopActivityTimeOutQuartz.java @@ -1,14 +1,13 @@ package com.matrix.system.shopXcx.quartz; import com.matrix.component.tools.WxUtils; +import com.matrix.core.constance.MatrixConstance; import com.matrix.core.tools.LogUtil; -import com.matrix.core.tools.WebUtil; import com.matrix.system.common.constance.AppConstance; import com.matrix.system.hive.plugin.util.CollectionUtils; import com.matrix.system.shopXcx.api.service.WxShopRefundRecordService; import com.matrix.system.shopXcx.bean.*; import com.matrix.system.shopXcx.dao.*; - import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Configuration; @@ -121,8 +120,8 @@ if (joinUser.getIsHasPay() == ShopActivitiesGroupJoinUser.IS_HAS_PAY_Y) { LogUtil.info("#已付款退款逻辑#"); ShopRefundRecord refundRecord = new ShopRefundRecord(); - refundRecord.setCreateBy(joinUser.getUserId()); - refundRecord.setUpdateBy(joinUser.getUserId()); + refundRecord.setCreateBy(MatrixConstance.SYSTEM_USER); + refundRecord.setUpdateBy(MatrixConstance.SYSTEM_USER); refundRecord.setUserId(joinUser.getUserId()); refundRecord.setRefundNo(WxUtils.getOrderNum()); refundRecord.setOrderId(joinUser.getOrderId().intValue()); -- Gitblit v1.9.1