mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 03:25:12 +08:00
update 订单汇总信息权限校验
This commit is contained in:
@@ -81,4 +81,11 @@ public interface PileStationInfoMapper {
|
||||
List<String> queryByStationDeptIds(@Param("stationDeptIds") List<String> stationDeptIds);
|
||||
|
||||
int updateAmapFlag(@Param("stationId") String stationId, @Param("amapFlag") String amapFlag);
|
||||
|
||||
/**
|
||||
* 通过站点部门id 查询站点id
|
||||
* @param deptId
|
||||
* @return
|
||||
*/
|
||||
List<String> getIdsByDeptId(String deptId);
|
||||
}
|
||||
|
||||
@@ -98,4 +98,11 @@ public interface IPileStationInfoService {
|
||||
String selectAdapayMemberId(String stationId);
|
||||
|
||||
int updateAmapFlag(String stationId, String amapFlag);
|
||||
|
||||
/**
|
||||
* 通过站点部门id查询站点id
|
||||
* @param deptId
|
||||
* @return
|
||||
*/
|
||||
List<String> getIdsByDeptId(String deptId);
|
||||
}
|
||||
|
||||
@@ -372,6 +372,9 @@ public class OrderBasicInfoServiceImpl implements IOrderBasicInfoService {
|
||||
public OrderTotalDataVO getOrderTotalDataV2(QueryOrderDTO dto) {
|
||||
// 确定查询的站点
|
||||
List<String> stationIdList = Lists.newArrayList();
|
||||
if (CollectionUtils.isNotEmpty(dto.getStationIdList())) {
|
||||
stationIdList.addAll(dto.getStationIdList());
|
||||
}
|
||||
if (StringUtils.isNotBlank(dto.getStationId())) {
|
||||
stationIdList.add(dto.getStationId());
|
||||
}
|
||||
|
||||
@@ -476,5 +476,15 @@ public class PileStationInfoServiceImpl implements IPileStationInfoService {
|
||||
return pileStationInfoMapper.updateAmapFlag(stationId, amapFlag);
|
||||
}
|
||||
|
||||
/**
|
||||
* 通过站点部门id查询站点id
|
||||
* @param deptId
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public List<String> getIdsByDeptId(String deptId) {
|
||||
return pileStationInfoMapper.getIdsByDeptId(deptId);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -407,4 +407,13 @@
|
||||
where
|
||||
id = #{stationId,jdbcType=VARCHAR}
|
||||
</update>
|
||||
|
||||
<select id="getIdsByDeptId" resultType="java.lang.String">
|
||||
select
|
||||
id
|
||||
from
|
||||
pile_station_info
|
||||
where
|
||||
dept_id = #{deptId,jdbcType=VARCHAR}
|
||||
</select>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user