Commit 73ef06ec by 陶光胜

回写修改

parent a305037a
......@@ -118,7 +118,7 @@ public class StoreSelectBackImpl implements ScreenBackStrategy {
for(String v : valueArr){
if(dictDTO.getKey().equals(v)){
stringBuilder.append(" 【");
stringBuilder.append(dictDTO.getKey()).append("】 ");
stringBuilder.append(dictDTO.getValue()).append("】 ");
}
}
}
......@@ -134,13 +134,13 @@ public class StoreSelectBackImpl implements ScreenBackStrategy {
ServiceResponse<List<StoreDictDTO>> serviceResponse = this.storeDictApiService.listStoreStatus(enterpriseId);
if(serviceResponse.isSuccess()){
List<StoreDictDTO> list = serviceResponse.getResult();
StringBuilder stringBuilder = new StringBuilder(StoreESFieldsEnum.STATUS.getDesc());
StringBuilder stringBuilder = new StringBuilder(StoreESFieldsEnum.ERPSTATUS.getDesc());
stringBuilder.append(" ").append(ComputeBackUtil.getComputeBack(compute));
for(StoreDictDTO dictDTO : list){
for(String v : valueArr){
if(dictDTO.getKey().equals(v)){
stringBuilder.append(" 【");
stringBuilder.append(dictDTO.getKey()).append("】 ");
stringBuilder.append(dictDTO.getValue()).append("】 ");
}
}
}
......
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