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

Commit 5d147778 authored by 胡佳晨's avatar 胡佳晨

Merge remote-tracking branch 'origin/gaohu-smile-0915-three' into gaohu-smile-0915-three

parents a979f86b b80bc378
...@@ -169,7 +169,7 @@ ...@@ -169,7 +169,7 @@
actions.push('<a class="btn btn-success btn-xs ' + detailFlag + '" href="javascript:void(0)" onclick="toPop(\'' + row.performancesId + '\')"><i class="fa fa-edit"></i>设置票提</a> '); actions.push('<a class="btn btn-success btn-xs ' + detailFlag + '" href="javascript:void(0)" onclick="toPop(\'' + row.performancesId + '\')"><i class="fa fa-edit"></i>设置票提</a> ');
// actions.push('<a class="btn btn-success btn-xs ' + detailFlag + '" href="javascript:void(0)" onclick="editPop(\'' + row.performancesId + '\')"><i class="fa fa-edit"></i>编辑票提</a> '); // actions.push('<a class="btn btn-success btn-xs ' + detailFlag + '" href="javascript:void(0)" onclick="editPop(\'' + row.performancesId + '\')"><i class="fa fa-edit"></i>编辑票提</a> ');
actions.push('<a class="btn btn-success btn-xs ' + detailFlag + '" href="javascript:void(0)" onclick="toDetail(\'' + row.performancesId + '\')"><i class="fa fa-edit"></i>查看</a> '); actions.push('<a class="btn btn-success btn-xs ' + detailFlag + '" href="javascript:void(0)" onclick="toDetail(\'' + row.performancesId + '\')"><i class="fa fa-edit"></i>查看</a> ');
actions.push('<a class="btn btn-success btn-xs ' + detailFlag + '" href="javascript:void(0)" onclick="$.operate.detail(\'' + row.performancesId + '\')"><i class="fa fa-edit"></i>销售数据</a> '); actions.push('<a class="btn btn-success btn-xs ' + detailFlag + '" href="javascript:void(0)" onclick="$.operate.detail(\'' + row.performancesId + '\', 1200)"><i class="fa fa-edit"></i>销售数据</a> ');
return actions.join(''); return actions.join('');
} }
}] }]
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
<td>票种名称</td> <td>票种名称</td>
<td>总代票提</td> <td>总代票提</td>
<td>普代票提</td> <td>普代票提</td>
<tr/> </tr>
<div th:each="item : *{showAgentVoList}"> <div th:each="item : *{showAgentVoList}">
<tr class="content-tr"> <tr class="content-tr">
<td th:text="${item.title}"> <td th:text="${item.title}">
...@@ -58,10 +58,12 @@ ...@@ -58,10 +58,12 @@
<td>总销售金额</td> <td>总销售金额</td>
<td>总销售佣金</td> <td>总销售佣金</td>
<td>打款状态</td> <td>打款状态</td>
<td>是否黑名单</td>
<td>操作</td> <td>操作</td>
<tr/> </tr>
<div th:each="item : *{userDataList}"> <div th:each="item : *{userDataList}">
<tr class="content-tr"> <tr class="content-tr">
<td th:text="${item}"></td>
<td th:text="${item.username}"></td> <td th:text="${item.username}"></td>
<td th:text="${item.cityName}"></td> <td th:text="${item.cityName}"></td>
<!-- <td th:name="uid" th:text="${item.uid}" hidden="hidden"></td>--> <!-- <td th:name="uid" th:text="${item.uid}" hidden="hidden"></td>-->
...@@ -78,6 +80,8 @@ ...@@ -78,6 +80,8 @@
<td th:text="${item.totalCommission}"></td> <td th:text="${item.totalCommission}"></td>
<td th:if="${item.priceStatus!=0}" th:text="待打款"></td> <td th:if="${item.priceStatus!=0}" th:text="待打款"></td>
<td th:if="${item.priceStatus==0}" th:text="已打款"></td> <td th:if="${item.priceStatus==0}" th:text="已打款"></td>
<td th:if="${item.state==0}" th:text="否"></td>
<td th:if="${item.state==1}" th:text="是"></td>
<td th:if="${item.priceStatus!=0}"> <td th:if="${item.priceStatus!=0}">
<button type="button" class="btn btn-success btn-xs" <button type="button" class="btn btn-success btn-xs"
th:onclick="submitHandler([[${item.uid}]])"> th:onclick="submitHandler([[${item.uid}]])">
...@@ -98,7 +102,7 @@ ...@@ -98,7 +102,7 @@
$("#form-transfer-edit").validate({ $("#form-transfer-edit").validate({
focusCleanup: true focusCleanup: true
}); });
console.log('[[${saleDataVo}]]', '????')
function submitHandler(uid) { function submitHandler(uid) {
var param = { var param = {
......
...@@ -21,6 +21,7 @@ import com.liquidnet.service.sweet.utils.QueueUtils; ...@@ -21,6 +21,7 @@ import com.liquidnet.service.sweet.utils.QueueUtils;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.util.ObjectUtils; import org.springframework.util.ObjectUtils;
...@@ -45,6 +46,7 @@ public class SweetAppletSubMsgServiceImpl extends ServiceImpl<SweetAppletSubMsgM ...@@ -45,6 +46,7 @@ public class SweetAppletSubMsgServiceImpl extends ServiceImpl<SweetAppletSubMsgM
private SweetAppletSubMsgMapper subMsgMapper; private SweetAppletSubMsgMapper subMsgMapper;
@Autowired @Autowired
@Lazy
private FeignKylinPerformancesClient feignKylinPerformancesClient; private FeignKylinPerformancesClient feignKylinPerformancesClient;
@Autowired @Autowired
......
...@@ -26,6 +26,7 @@ import lombok.extern.slf4j.Slf4j; ...@@ -26,6 +26,7 @@ import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang.StringUtils; import org.apache.commons.lang.StringUtils;
import org.bson.Document; import org.bson.Document;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Lazy;
import org.springframework.data.domain.PageRequest; import org.springframework.data.domain.PageRequest;
import org.springframework.data.domain.Pageable; import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Sort; import org.springframework.data.domain.Sort;
...@@ -62,10 +63,13 @@ public class SweetIntegralActivityDrawServiceImpl extends ServiceImpl<SweetInteg ...@@ -62,10 +63,13 @@ public class SweetIntegralActivityDrawServiceImpl extends ServiceImpl<SweetInteg
private QueueUtils queueUtils; private QueueUtils queueUtils;
@Autowired @Autowired
@Lazy
private FeignStoneIntegralClient feignStoneIntegralClient; private FeignStoneIntegralClient feignStoneIntegralClient;
@Autowired @Autowired
@Lazy
private FeignAdamBaseClient feignAdamBaseClient; private FeignAdamBaseClient feignAdamBaseClient;
@Autowired @Autowired
@Lazy
private FeignCandyBaseClient feignCandyBaseClient; private FeignCandyBaseClient feignCandyBaseClient;
@Override @Override
......
...@@ -24,6 +24,7 @@ import me.chanjar.weixin.common.bean.WxOAuth2UserInfo; ...@@ -24,6 +24,7 @@ import me.chanjar.weixin.common.bean.WxOAuth2UserInfo;
import me.chanjar.weixin.common.bean.oauth2.WxOAuth2AccessToken; import me.chanjar.weixin.common.bean.oauth2.WxOAuth2AccessToken;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import java.time.LocalDateTime; import java.time.LocalDateTime;
...@@ -54,6 +55,7 @@ public class SweetWechatLoginServiceImpl { ...@@ -54,6 +55,7 @@ public class SweetWechatLoginServiceImpl {
private WechatUsersRedisUtils redisUtils; private WechatUsersRedisUtils redisUtils;
@Autowired @Autowired
@Lazy
private FeignAdamBaseClient feignAdamBaseClient; private FeignAdamBaseClient feignAdamBaseClient;
public ResponseDto userInfo(String code, String encryptedData, String iv, Integer type) { public ResponseDto userInfo(String code, String encryptedData, String iv, Integer type) {
......
...@@ -26,6 +26,7 @@ import me.chanjar.weixin.mp.bean.template.WxMpTemplateData; ...@@ -26,6 +26,7 @@ import me.chanjar.weixin.mp.bean.template.WxMpTemplateData;
import me.chanjar.weixin.mp.bean.template.WxMpTemplateMessage; import me.chanjar.weixin.mp.bean.template.WxMpTemplateMessage;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value; import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.util.CollectionUtils; import org.springframework.util.CollectionUtils;
import org.springframework.util.ObjectUtils; import org.springframework.util.ObjectUtils;
...@@ -63,6 +64,7 @@ public class SweetWechatTemplateServiceImpl { ...@@ -63,6 +64,7 @@ public class SweetWechatTemplateServiceImpl {
@Autowired @Autowired
private SweetRemindMapper sweetRemindMapper; private SweetRemindMapper sweetRemindMapper;
@Autowired @Autowired
@Lazy
private FeignKylinPerformancesClient feignKylinPerformancesClient; private FeignKylinPerformancesClient feignKylinPerformancesClient;
@Autowired @Autowired
......
...@@ -11,6 +11,7 @@ import com.liquidnet.service.sweet.vo.SweetAppletUsersVo; ...@@ -11,6 +11,7 @@ import com.liquidnet.service.sweet.vo.SweetAppletUsersVo;
import com.liquidnet.service.sweet.vo.SweetWechatUsersVo; import com.liquidnet.service.sweet.vo.SweetWechatUsersVo;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import java.util.HashMap; import java.util.HashMap;
...@@ -28,6 +29,7 @@ import java.util.HashMap; ...@@ -28,6 +29,7 @@ import java.util.HashMap;
public class SweetWechatUsersServiceImpl extends ServiceImpl<SweetWechatUsersMapper, SweetWechatUsers> implements ISweetWechatUsersService { public class SweetWechatUsersServiceImpl extends ServiceImpl<SweetWechatUsersMapper, SweetWechatUsers> implements ISweetWechatUsersService {
@Autowired @Autowired
@Lazy
private FeignStoneIntegralClient feignStoneIntegralClient; private FeignStoneIntegralClient feignStoneIntegralClient;
@Autowired @Autowired
......
...@@ -22,6 +22,7 @@ import com.liquidnet.service.sweet.param.SweetCityVoteParam; ...@@ -22,6 +22,7 @@ import com.liquidnet.service.sweet.param.SweetCityVoteParam;
import com.liquidnet.service.sweet.vo.*; import com.liquidnet.service.sweet.vo.*;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import java.time.LocalDateTime; import java.time.LocalDateTime;
...@@ -52,6 +53,7 @@ public class RedisDataUtils { ...@@ -52,6 +53,7 @@ public class RedisDataUtils {
@Autowired @Autowired
private SweetArtistsMapper sweetArtistsMapper; private SweetArtistsMapper sweetArtistsMapper;
@Autowired @Autowired
@Lazy
private FeignSlimeApiClient feignSlimeApiClient; private FeignSlimeApiClient feignSlimeApiClient;
public List<SweetManualAppletDto> setPushList() { public List<SweetManualAppletDto> setPushList() {
......
...@@ -20,6 +20,7 @@ import com.liquidnet.service.sweet.entity.SweetRichtextFive; ...@@ -20,6 +20,7 @@ import com.liquidnet.service.sweet.entity.SweetRichtextFive;
import com.liquidnet.service.sweet.mapper.*; import com.liquidnet.service.sweet.mapper.*;
import com.liquidnet.service.sweet.vo.SweetArtistsRelationVo; import com.liquidnet.service.sweet.vo.SweetArtistsRelationVo;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import java.time.LocalDateTime; import java.time.LocalDateTime;
...@@ -48,6 +49,7 @@ public class RedisFiveDataUtils { ...@@ -48,6 +49,7 @@ public class RedisFiveDataUtils {
@Autowired @Autowired
private SweetArtistsMapper sweetArtistsMapper; private SweetArtistsMapper sweetArtistsMapper;
@Autowired @Autowired
@Lazy
private FeignSlimeApiClient feignSlimeApiClient; private FeignSlimeApiClient feignSlimeApiClient;
public List<SweetManualAppletFiveDto> setPushList() { public List<SweetManualAppletFiveDto> setPushList() {
......
...@@ -14,6 +14,7 @@ import com.liquidnet.service.sweet.entity.*; ...@@ -14,6 +14,7 @@ import com.liquidnet.service.sweet.entity.*;
import com.liquidnet.service.sweet.mapper.*; import com.liquidnet.service.sweet.mapper.*;
import com.liquidnet.service.sweet.vo.SweetArtistsRelationVo; import com.liquidnet.service.sweet.vo.SweetArtistsRelationVo;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import java.time.LocalDateTime; import java.time.LocalDateTime;
...@@ -42,6 +43,7 @@ public class RedisMDSKDataUtils { ...@@ -42,6 +43,7 @@ public class RedisMDSKDataUtils {
@Autowired @Autowired
private SweetArtistsMapper sweetArtistsMapper; private SweetArtistsMapper sweetArtistsMapper;
@Autowired @Autowired
@Lazy
private FeignSlimeApiClient feignSlimeApiClient; private FeignSlimeApiClient feignSlimeApiClient;
public List<SweetManualAppletMDSKDto> setPushList() { public List<SweetManualAppletMDSKDto> setPushList() {
......
...@@ -17,6 +17,7 @@ import com.liquidnet.service.sweet.entity.SweetRichtextTfc; ...@@ -17,6 +17,7 @@ import com.liquidnet.service.sweet.entity.SweetRichtextTfc;
import com.liquidnet.service.sweet.mapper.*; import com.liquidnet.service.sweet.mapper.*;
import com.liquidnet.service.sweet.vo.SweetArtistsRelationVo; import com.liquidnet.service.sweet.vo.SweetArtistsRelationVo;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import java.time.LocalDateTime; import java.time.LocalDateTime;
...@@ -43,6 +44,7 @@ public class RedisTFCDataUtils { ...@@ -43,6 +44,7 @@ public class RedisTFCDataUtils {
@Autowired @Autowired
private SweetManualShopTfcMapper sweetManualShopTFCMapper; private SweetManualShopTfcMapper sweetManualShopTFCMapper;
@Autowired @Autowired
@Lazy
private FeignSlimeApiClient feignSlimeApiClient; private FeignSlimeApiClient feignSlimeApiClient;
public List<SweetManualAppletTFCDto> setPushList() { public List<SweetManualAppletTFCDto> setPushList() {
......
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