fix 工作台字段
This commit is contained in:
@@ -544,7 +544,7 @@
|
||||
</if>
|
||||
</select>
|
||||
<select id="getLines" resultType="com.cool.store.dto.openPreparation.PlanLineDTO">
|
||||
select xli.id as lineId, xli.mobile as mobile, xli.username as username,xli.investment_manager as investmentManagerId ,eu.name as name
|
||||
select xli.id as lineId, xli.mobile as mobile, xli.username as username,xli.investment_manager as investmentManagerId ,eu.name as investmentManagerName
|
||||
from xfsg_line_info xli
|
||||
join enterprise_user_${enterpriseId} eu on xli.investment_manager = eu.user_id
|
||||
where deleted = 0
|
||||
|
||||
@@ -16,7 +16,7 @@ public class PreparationCommonPendingVO {
|
||||
@ApiModelProperty("门店负责人名称")
|
||||
private String shopManagerUserName;
|
||||
@ApiModelProperty("门店编码")
|
||||
private String storeNum;
|
||||
private String shopCode;
|
||||
@ApiModelProperty("店铺地址")
|
||||
private String shopAddress;
|
||||
@ApiModelProperty("督导")
|
||||
|
||||
@@ -550,9 +550,9 @@ public class DeskServiceImpl implements DeskService {
|
||||
if(pointInfoDO != null) {
|
||||
preparationCommonPendingVO.setShopAddress(pointInfoDO.getAddress());
|
||||
}
|
||||
preparationCommonPendingVO.setStoreNum(shopInfoDO.getStoreNum());
|
||||
preparationCommonPendingVO.setShopCode(shopInfoDO.getShopCode());
|
||||
}
|
||||
preparationCommonPendingVO.setInvestmentManager(lineMap.get(x.getLineId()).getInvestmentManagerName());
|
||||
preparationCommonPendingVO.setInvestmentManager(lineMap.getOrDefault(x.getLineId(),new PlanLineDTO()).getInvestmentManagerName());
|
||||
preparationCommonPendingVO.setStage(x.getShopStage());
|
||||
preparationCommonPendingVO.setSubStage(x.getShopSubStage());
|
||||
preparationCommonPendingVO.setSubStageStatus(x.getShopSubStageStatus());
|
||||
@@ -654,7 +654,7 @@ public class DeskServiceImpl implements DeskService {
|
||||
if(pointInfoDO != null) {
|
||||
preparationCommonPendingVO.setShopAddress(pointInfoDO.getAddress());
|
||||
}
|
||||
preparationCommonPendingVO.setStoreNum(shopInfoDO.getStoreNum());
|
||||
preparationCommonPendingVO.setShopCode(shopInfoDO.getShopCode());
|
||||
}
|
||||
preparationCommonPendingVO.setLineId(shopInfoDO.getLineId());
|
||||
preparationCommonPendingVO.setShopId(x.getShopId());
|
||||
|
||||
Reference in New Issue
Block a user