资产状态数据

pg_adapter
20918 8 months ago
parent dddb503889
commit bc25237365

@ -9,6 +9,9 @@ import com.ruoyi.common.core.page.TableDataInfo;
import com.ruoyi.common.enums.BusinessType;
import com.ruoyi.system.domain.TdPropertyInfo;
import com.ruoyi.system.domain.TdPropertyManager;
import com.ruoyi.system.domain.count.PropertyDesCountDTO;
import com.ruoyi.system.domain.count.PropertyStateCountDTO;
import com.ruoyi.system.domain.count.UserCountDTO;
import com.ruoyi.system.domain.count.UserSmCountDTO;
import com.ruoyi.system.service.ISysDictDataService;
import com.ruoyi.system.service.ITdPropertyInfoService;
@ -20,6 +23,7 @@ import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.*;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.atomic.AtomicReference;
import java.util.stream.Collectors;
@ -101,4 +105,59 @@ public class SysPropertynumController extends BaseController {
return AjaxResult.success(obj);
}
private List<String> bf = Arrays.asList("未报废", "已报废");
private List<String> xh = Arrays.asList("未销毁", "已销毁");
/**
*
*
* @return com.ruoyi.common.core.domain.AjaxResult
*/
@PostMapping("/countBF")
@ResponseBody
public AjaxResult countbf() {
PropertyStateCountDTO propertyStateCountDTO = tdPropertyInfoService.selectCountBF();
List<JSONObject> datas = bf.stream()
.map(name -> {
AtomicReference<Object> value = new AtomicReference<>(0L);
if("未报废".equals(name)){
value.set(propertyStateCountDTO.getWbf());
}else{
value.set(propertyStateCountDTO.getYbf());
}
JSONObject jsonObject = new JSONObject();
jsonObject.put("value", value.get());
jsonObject.put("name", name);
return jsonObject;
})
.collect(Collectors.toList());
return AjaxResult.success(datas);
}
/**
*
*
* @return com.ruoyi.common.core.domain.AjaxResult
*/
@PostMapping("/countXH")
@ResponseBody
public AjaxResult countXH() {
PropertyDesCountDTO propertyDesCountDTO = tdPropertyInfoService.selectCountXH();
List<JSONObject> datas = xh.stream()
.map(name -> {
AtomicReference<Object> value = new AtomicReference<>(0L);
if("未销毁".equals(name)){
value.set(propertyDesCountDTO.getWxh());
}else{
value.set(propertyDesCountDTO.getYxh());
}
JSONObject jsonObject = new JSONObject();
jsonObject.put("value", value.get());
jsonObject.put("name", name);
return jsonObject;
})
.collect(Collectors.toList());
return AjaxResult.success(datas);
}
}

@ -3,6 +3,7 @@ package com.ruoyi.web.controller.system.property;
import java.util.Collections;
import java.util.List;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.ruoyi.common.utils.uuid.Seq;
import com.ruoyi.system.domain.TdPropertyInfo;
import com.ruoyi.system.service.ITdPropertyInfoService;
@ -141,6 +142,9 @@ public class TdPropertyManagerController extends BaseController
@ResponseBody
public AjaxResult remove(String ids)
{
QueryWrapper queryWrapper= new QueryWrapper();
queryWrapper.in("use_id",ids.split(","));
tdPropertyInfoService.remove(queryWrapper);
return toAjax(tdPropertyManagerService.deleteTdPropertyManagerByUseIds(ids));
}

@ -0,0 +1,18 @@
package com.ruoyi.system.domain.count;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
@Data
@ApiModel(value="资产销毁统计", description="资产销毁统计")
public class PropertyDesCountDTO implements Serializable {
@ApiModelProperty(value = "未销毁")
private Integer wxh;
@ApiModelProperty(value = "已销毁")
private Integer yxh;
}

@ -0,0 +1,18 @@
package com.ruoyi.system.domain.count;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
@Data
@ApiModel(value="资产报废统计", description="资产报废统计")
public class PropertyStateCountDTO implements Serializable {
@ApiModelProperty(value = "未报废")
private Integer wbf;
@ApiModelProperty(value = "已报废")
private Integer ybf;
}

@ -4,6 +4,9 @@ import java.util.List;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.system.domain.TdPropertyInfo;
import com.ruoyi.system.domain.count.PropertyDesCountDTO;
import com.ruoyi.system.domain.count.PropertyStateCountDTO;
import com.ruoyi.system.domain.count.UserCountDTO;
/**
* Mapper
@ -62,4 +65,8 @@ public interface TdPropertyInfoMapper extends BaseMapper<TdPropertyInfo>
* @return
*/
public int deleteTdPropertyInfoByIds(String[] ids);
public PropertyStateCountDTO selectCountBF();
public PropertyDesCountDTO selectCountXH();
}

@ -4,6 +4,9 @@ import java.util.List;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.system.domain.TdPropertyInfo;
import com.ruoyi.system.domain.count.PropertyDesCountDTO;
import com.ruoyi.system.domain.count.PropertyStateCountDTO;
import com.ruoyi.system.domain.count.UserCountDTO;
/**
* Service
@ -62,4 +65,8 @@ public interface ITdPropertyInfoService extends IService<TdPropertyInfo>
* @return
*/
public int deleteTdPropertyInfoById(String id);
public PropertyStateCountDTO selectCountBF();
public PropertyDesCountDTO selectCountXH();
}

@ -3,6 +3,8 @@ package com.ruoyi.system.service.impl;
import java.util.List;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.system.domain.count.PropertyDesCountDTO;
import com.ruoyi.system.domain.count.PropertyStateCountDTO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.system.mapper.TdPropertyInfoMapper;
@ -99,4 +101,14 @@ public class TdPropertyInfoServiceImpl extends ServiceImpl<TdPropertyInfoMapper,
{
return tdPropertyInfoMapper.deleteTdPropertyInfoById(id);
}
@Override
public PropertyStateCountDTO selectCountBF() {
return tdPropertyInfoMapper.selectCountBF();
}
@Override
public PropertyDesCountDTO selectCountXH() {
return tdPropertyInfoMapper.selectCountXH();
}
}

@ -191,4 +191,17 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</foreach>
</delete>
<select id="selectCountBF" resultType="com.ruoyi.system.domain.count.PropertyStateCountDTO">
SELECT
SUM (CASE WHEN destory_type = 1 THEN 1 ELSE 0 END) AS ybf,
SUM (CASE WHEN destory_type = 0 THEN 1 ELSE 0 END) AS wbf
FROM td_property_info
</select>
<select id="selectCountXH" resultType="com.ruoyi.system.domain.count.PropertyDesCountDTO">
SELECT
SUM (CASE WHEN destory_state = 1 THEN 1 ELSE 0 END) AS yxh,
SUM (CASE WHEN destory_state='' THEN 1 ELSE 0 END) AS wxh
FROM td_property_info
</select>
</mapper>
Loading…
Cancel
Save