package com.ld.igds.phone35.service.impl;
|
|
import com.alibaba.fastjson.JSONObject;
|
import com.ld.igds.constant.RespCodeEnum;
|
import com.ld.igds.models.Depot;
|
import com.ld.igds.phone35.dto.Phone35AuthUser;
|
import com.ld.igds.phone35.dto.PhoneResponse;
|
import com.ld.igds.phone35.param.Phone35CommonParam;
|
import com.ld.igds.phone35.param.Phone35Request;
|
import com.ld.igds.phone35.util.PhoneRespUtil;
|
import com.ld.igds.phone35.constant.Phone35Constant;
|
import com.ld.igds.phone35.service.Phone35Service;
|
import org.apache.commons.lang3.StringUtils;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
import java.util.List;
|
|
/**
|
* 仓库列表
|
* @author chen
|
*/
|
@Service
|
public class Phone35ServiceImpl5102 implements Phone35Service {
|
|
@Autowired
|
private HPhoneServiceImpl hPhoneService;
|
|
@Override
|
public String getInterfaceId() {
|
return Phone35Constant.API_PHONE_5102;
|
}
|
|
@SuppressWarnings("unchecked")
|
@Override
|
public PhoneResponse<Object> execute(Phone35Request<JSONObject> req, Phone35AuthUser phone35AuthUser)
|
throws Exception {
|
|
//转化为对象
|
Phone35CommonParam param = JSONObject.parseObject(req.getData().toString(), Phone35CommonParam.class);
|
if(null == param || StringUtils.isEmpty(param.getDeptId())){
|
return PhoneRespUtil.error(RespCodeEnum.CODE_1111,"参数有误,请核查!");
|
}
|
|
//获取仓库信息
|
List<Depot> depotList = hPhoneService.listDepot(phone35AuthUser.getCompanyId(), param.getDeptId());
|
if(null == depotList || depotList.isEmpty()){
|
return PhoneRespUtil.error(RespCodeEnum.CODE_1111,"参数有误,请核查!");
|
}
|
|
return PhoneRespUtil.success(depotList,req);
|
}
|
}
|