cpk分析报表

master
zhaoxiaolin 6 months ago
parent dfc7627430
commit 4e661cabe8

@ -0,0 +1,93 @@
package com.op.system.api.domain.mes;
//线体成型机类
public class ProLine {
private String key;
private String label;
private String lineCode;
private String lineName;
private Long efficiency;
private String dh;
private String factoryDh;
private String umrez;
public String getUmrez() {
return umrez;
}
public void setUmrez(String umrez) {
this.umrez = umrez;
}
public String getFactoryDh() {
return factoryDh;
}
public void setFactoryDh(String factoryDh) {
this.factoryDh = factoryDh;
}
public Long getEfficiency() {
return efficiency;
}
public void setEfficiency(Long efficiency) {
this.efficiency = efficiency;
}
public String getDh() {
return dh;
}
public void setDh(String dh) {
this.dh = dh;
}
public String getLineCode() {
return lineCode;
}
public void setLineCode(String lineCode) {
this.lineCode = lineCode;
}
public String getLineName() {
return lineName;
}
public void setLineName(String lineName) {
this.lineName = lineName;
}
@Override
public String toString() {
return "ProLine{" +
"key='" + key + '\'' +
", label='" + label + '\'' +
'}';
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
public ProLine(String key, String label) {
this.key = key;
this.label = label;
}
public ProLine() {
}
}

@ -14,10 +14,47 @@ import java.util.List;
* @author zxl
* @date 2023-07-18
*/
public class ChartDTO {
public class ChartDTO{
private String name;
private String type;
private List<Double> data;
private Label label;
public static class Label{
private Boolean show;
private String position;
public Label(Boolean show,String position) {
this.show = show;
this.position = position;
}
public void setShow(Boolean show) {
this.show = show;
}
public Boolean getShow() {
return show;
}
public String getPosition() {
return position;
}
public void setPosition(String position) {
this.position = position;
}
}
public Label getLabel() {
return label;
}
public void setLabel(Label label) {
this.label = label;
}
public ChartDTO() {
this.label = new Label(true,"top");
}
public String getType() {
return type;

@ -303,7 +303,7 @@ public class ProOrderWorkorderController extends BaseController {
newBatch.setWorkorderCode(workorderCode);
return toAjax(proOrderWorkorderService.deleteWorkOrderBatch(newBatch));
}
/**获取线体**/
@GetMapping("/getProdLineList")
public List<ProLine> getProdLineList() {
return proOrderWorkorderService.getProdLineList();

@ -15,6 +15,7 @@ import com.op.common.core.domain.ExcelCol;
import com.op.common.core.utils.DateUtils;
import com.op.common.core.utils.poi.ExcelMapUtil;
import com.op.quality.domain.*;
import com.op.system.api.domain.mes.ProLine;
import com.op.system.api.domain.quality.ChartDTO;
import com.op.system.api.domain.quality.ChartSeriesDTO;
import com.op.system.api.domain.quality.FactoryDto;
@ -651,6 +652,12 @@ public class QcStaticTableController extends BaseController {
}
}
}
@GetMapping("/getProdLineList")
public List<ProLine> getProdLineList() {
return qcStaticTableService.getProdLineList();
}
/**
* cpk--
**/
@ -664,7 +671,41 @@ public class QcStaticTableController extends BaseController {
**/
@GetMapping("/getTableCPKList")
@Log(title = "CPK分析报表-表格数据", businessType = BusinessType.QUERY)
public List<HashMap> getTableCPKList(QcCPKInfo qcCPKInfo) {
public QcCPKInfo getTableCPKList(QcCPKInfo qcCPKInfo) {
return qcStaticTableService.getTableCPKList(qcCPKInfo);
}
@PostMapping("/exportCPKList")
public void exportCPKList(HttpServletResponse response,QcCPKInfo qcCPKInfo) {
List<HashMap> list = qcStaticTableService.getTableCPKList(qcCPKInfo).getTableData();
QcCPKInfo titleCols = qcStaticTableService.getTableCPKTitle(qcCPKInfo);
List<String> title2Cols = titleCols.getTitleCol1();
String titleRow1 = "CPK明细报表";
//表格结构数据
ArrayList<ExcelCol> excelCols = new ArrayList<>();
excelCols.add(new ExcelCol("CPK品类", "cpkTypeName", 30));
for (int n = 0; n < title2Cols.size(); n++) {
excelCols.add(new ExcelCol(title2Cols.get(n), "date" + (n+1), 20));
}
excelCols.add(new ExcelCol("平均值", "cpkAvg", 30));
String titleName = "CPK明细";
SXSSFWorkbook workbook = null;
try {
//设置响应头
response.setHeader("Content-disposition",
"attachment; filename=" + titleName);
response.setContentType("application/octet-stream;charset=UTF-8");
ServletOutputStream outputStream = response.getOutputStream();
//调用工具类
workbook = ExcelMapUtil.initWorkbook(titleName, titleRow1, excelCols, list);
workbook.write(outputStream);
} catch (Exception e) {
e.printStackTrace();
} finally {
if (workbook != null) {
workbook.dispose();
}
}
}
}

@ -17,7 +17,6 @@ import java.util.List;
*/
public class QcCPKInfo extends BaseEntity {
private static final long serialVersionUID = 1L;
private List<String> titleCol1;
private String checkType;
private String projectId;
@ -40,6 +39,25 @@ public class QcCPKInfo extends BaseEntity {
private BigDecimal upperDiff;
private BigDecimal downDiff;
List<HashMap> tableData;
List<ChartDTO> echartData;
public List<HashMap> getTableData() {
return tableData;
}
public void setTableData(List<HashMap> tableData) {
this.tableData = tableData;
}
public List<ChartDTO> getEchartData() {
return echartData;
}
public void setEchartData(List<ChartDTO> echartData) {
this.echartData = echartData;
}
public BigDecimal getUpperDiff() {
return upperDiff;
}

@ -5,6 +5,7 @@ import java.util.List;
import java.util.Map;
import com.op.quality.domain.*;
import com.op.system.api.domain.mes.ProLine;
import com.op.system.api.domain.quality.FactoryDto;
import org.apache.ibatis.annotations.MapKey;
import org.apache.ibatis.annotations.Mapper;
@ -107,7 +108,13 @@ public interface QcStaticTableMapper {
String getActualValues(QcCPKInfo qcCPKInfo);
List<QcCPKInfo> getDlMxList(QcCPKInfo qcCPKInfo);
List<QcStaticTable> getDLData(QcStaticTable qcStaticTable);
@MapKey("yearMonth")
Map<String,QcStaticTable> getDLData(QcCPKInfo qcCPKInfo);
List<QcCPKInfo> getCpkTypeList(QcCPKInfo qcCPKInfo);
List<ProLine> getProdLineList();
@MapKey("yearMonth")
Map<String,QcStaticTable> getDLDataDay(QcCPKInfo qcCPKInfo);
}

@ -8,6 +8,7 @@ import com.op.quality.domain.QcCPKInfo;
import com.op.quality.domain.QcCheckDetail;
import com.op.quality.domain.QcCheckType;
import com.op.quality.domain.QcStaticTable;
import com.op.system.api.domain.mes.ProLine;
import com.op.system.api.domain.quality.ChartSeriesDTO;
import com.op.system.api.domain.quality.FactoryDto;
@ -74,5 +75,7 @@ public interface IQcStaticTableService {
List<HashMap> getDLTableMXList(QcCPKInfo qcCPKInfo);
QcCPKInfo getTableCPKTitle(QcCPKInfo qcCPKInfo);
List<HashMap> getTableCPKList(QcCPKInfo qcCPKInfo);
QcCPKInfo getTableCPKList(QcCPKInfo qcCPKInfo);
List<ProLine> getProdLineList();
}

@ -1,6 +1,7 @@
package com.op.quality.service.impl;
import java.math.BigDecimal;
import java.math.RoundingMode;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
@ -17,6 +18,7 @@ import com.baomidou.dynamic.datasource.annotation.DS;
import com.op.common.core.utils.StringUtils;
import com.op.quality.domain.*;
import com.op.quality.mapper.QMSFileMapper;
import com.op.system.api.domain.mes.ProLine;
import com.op.system.api.domain.quality.ChartDTO;
import com.op.system.api.domain.quality.ChartSeriesDTO;
import com.op.system.api.domain.quality.FactoryDto;
@ -189,6 +191,8 @@ public class QcStaticTableServiceImpl implements IQcStaticTableService {
return qcStaticTableMapper.getXJDetail(qcStaticTable);
}
/**
* ["1.0.389","2.0.397","3.0.385","4.0.402"]
* @param qcCPKInfo
@ -1253,8 +1257,8 @@ public class QcStaticTableServiceImpl implements IQcStaticTableService {
public QcCPKInfo getTableCPKTitle(QcCPKInfo qcCPKInfo) {
QcCPKInfo dto = new QcCPKInfo();
List<String> colName1 = null;
if("week".equals(qcCPKInfo.getTableType())){//周报
if("day".equals(qcCPKInfo.getTableType())){//周报
colName1 = this.getDayOfYear(qcCPKInfo.getYmArrayStart(),qcCPKInfo.getYmArrayEnd());
}else{//月报
colName1 = this.getMonthByMonth(qcCPKInfo.getYmArrayStart(),qcCPKInfo.getYmArrayEnd());
}
@ -1264,36 +1268,93 @@ public class QcStaticTableServiceImpl implements IQcStaticTableService {
}
@Override
@DS("#header.poolName")
public List<HashMap> getTableCPKList(QcCPKInfo qcCPKInfo) {
public QcCPKInfo getTableCPKList(QcCPKInfo qcCPKInfo) {
QcCPKInfo resultDto = new QcCPKInfo();
//表头数据
List<String> colNameArray = null;
if("week".equals(qcCPKInfo.getTableType())){//周报
//数据列//cpkType,'-',q.ymdms
Map<String, QcStaticTable> mxMapData = null;
List<QcCPKInfo> cpkTypeList = cpkTypeList = qcStaticTableMapper.getCpkTypeList(qcCPKInfo);
if("day".equals(qcCPKInfo.getTableType())){//日报
colNameArray = this.getDayOfYear(qcCPKInfo.getYmArrayStart(),qcCPKInfo.getYmArrayEnd());
mxMapData = qcStaticTableMapper.getDLDataDay(qcCPKInfo);
}else{//月报
colNameArray = this.getMonthByMonth(qcCPKInfo.getYmArrayStart(),qcCPKInfo.getYmArrayEnd());
mxMapData = qcStaticTableMapper.getDLData(qcCPKInfo);
}
List<HashMap> mapData = new ArrayList<HashMap>();
//列表数据
//主列
List<QcCPKInfo> cpkTypeList = qcStaticTableMapper.getCpkTypeList(qcCPKInfo);
//数据列
List<QcCPKInfo> dxData = qcStaticTableMapper.getDlMxList(qcCPKInfo);
List<ChartDTO> echartData = new ArrayList<>();
HashMap dmap = null;
for(QcCPKInfo cpkInfo:dxData){
// dmap = new HashMap();
// double USL = dto.getUpperDiff().doubleValue();
// double LSL = dto.getDownDiff().doubleValue();
// double cpk = calculateCpk(data,USL,LSL);
// BigDecimal cpkVal = new BigDecimal(Double.toString(cpk)).setScale(2, BigDecimal.ROUND_HALF_UP);
// for(int m=0;m<colNameArray.size();m++){
// String index = (m+1)+"";
// dmap.put("date"+index,cpkVal);
// }
ChartDTO edata = null;
for(QcCPKInfo cpkT:cpkTypeList){
dmap = new HashMap();
edata = new ChartDTO();
edata.setType("line");
edata.setName(cpkT.getCpkTypeName());
List<Double> serisedata = new ArrayList<>();
double USL = cpkT.getUpperDiff().doubleValue();
double LSL = cpkT.getDownDiff().doubleValue();
dmap.put("cpkTypeName",cpkT.getCpkTypeName());
int monthNum = 0;//有数据的月份
BigDecimal monthSum = BigDecimal.ZERO;
for(int m=0;m<colNameArray.size();m++){
String key = cpkT.getCpkType() + "-" + colNameArray.get(m);
QcStaticTable act = mxMapData.get(key);
if(act!=null){
String actArrayStr = act.getQuality().replace("[", "")
.replace("]", "")
.replace("\"", "");
List<String> actArray0 = Arrays.asList(actArrayStr.split(","));
List<String> actArray = new ArrayList<>();
for(String avg:actArray0){
if(avg.matches(".*\\..*\\..*")){
actArray.add(avg.substring(2));
}else{
actArray.add(avg);
}
}
double[] data = actArray.stream()
.mapToDouble(Double::parseDouble) // 将String转换为double
.toArray(); // 转换为double数组 ;
double cpk = calculateCpk(data,USL,LSL);
BigDecimal cpkVal = new BigDecimal(Double.toString(cpk)).setScale(2, BigDecimal.ROUND_HALF_UP);
String index = (m+1)+"";
dmap.put("date"+index,cpkVal);
monthSum = monthSum.add(cpkVal);
++monthNum;
serisedata.add(cpkVal.doubleValue());
}else{
String index = (m+1)+"";
dmap.put("date"+index,"0");
dmap.put("cpkAvg","0");
serisedata.add(0.0);
}
}
edata.setData(serisedata);
if(monthNum>0){
BigDecimal avgBD = monthSum.divide(new BigDecimal(monthNum),2,RoundingMode.HALF_UP);
dmap.put("cpkAvg",avgBD.toString());
}
mapData.add(dmap);
echartData.add(edata);
}
//List<QcCPKInfo> myObjectList = convertList(mapData);
return mapData;
resultDto.setTableData(mapData);
resultDto.setEchartData(echartData);
return resultDto;
}
@Override
@DS("#header.poolName")
public List<ProLine> getProdLineList() {
return qcStaticTableMapper.getProdLineList();
}
//获取指定范围内得月份输出格式yyyy-mm
@ -1311,6 +1372,23 @@ public class QcStaticTableServiceImpl implements IQcStaticTableService {
}
return months;
}
//获取指定年的周数
private List<String> getDayOfYear(String startM,String endM){
String dateFormat = "yyyy-MM-dd";
DateTimeFormatter formatter = DateTimeFormatter.ofPattern(dateFormat);
LocalDate startDate = LocalDate.parse(startM, formatter);
LocalDate endDate = LocalDate.parse(endM, formatter);
List<String> dateList = new ArrayList<>();
LocalDate currentDate = startDate;
while (!currentDate.isAfter(endDate)) {
dateList.add(currentDate.format(formatter));
currentDate = currentDate.plusDays(1);
}
return dateList;
}
public static void main(String args[]){
String ymd = "1、0.4016";
System.out.println(ymd.substring(2));

@ -464,8 +464,7 @@
<select id="getDLData" resultType="com.op.quality.domain.QcStaticTable">
SELECT
concat(q.material_code,'-',q.project_no,'-',CONVERT(varchar(10),q.ymdms, 120)) yearMonth,
material_code materialCode,
concat(q.cpkType,'-',q.ymdms) yearMonth,
ymdms,rule_name ruleName,
project_no projectNo,
STUFF(
@ -480,6 +479,7 @@
where qct.check_type = #{checkType} and qctd.property_code = '1' and qct.check_time is not null
<if test="ymArrayStart != null ">and CONVERT(varchar(7),qct.income_time, 120) >= #{ymArrayStart}</if>
<if test="ymArrayEnd != null ">and #{ymArrayEnd} >=CONVERT(varchar(7),qct.income_time,120) </if>
<if test="checkLoc != null ">and qct.check_loc = #{checkLoc}</if>
and qctd.project_id = #{projectId} and bpa.cpk_type = #{cpkType}
) t
WHERE t.cpkType = q.cpkType and t.project_no = q.project_no and t.ymdms=q.ymdms
@ -497,6 +497,7 @@
where qct.check_type = #{checkType} and qctd.property_code = '1' and qct.check_time is not null
<if test="ymArrayStart != null ">and CONVERT(varchar(7),qct.income_time, 120) >= #{ymArrayStart}</if>
<if test="ymArrayEnd != null ">and #{ymArrayEnd}>=CONVERT(varchar(7),qct.income_time,120) </if>
<if test="checkLoc != null ">and qct.check_loc = #{checkLoc}</if>
and qctd.project_id = #{projectId} and bpa.cpk_type = #{cpkType}
) q
GROUP BY q.cpkType, q.ymdms,q.rule_name,q.project_no
@ -928,9 +929,58 @@
order by qct.income_time
</select>
<select id="getCpkTypeList" resultType="com.op.quality.domain.QcCPKInfo">
select material_code cpkType,sdd.dict_label
select qpcu.material_code cpkType,
sdd.dict_label cpkTypeName,
qpcu.up_val upperDiff,
qpcu.down_val downDiff
from qc_product_cpk_upDown qpcu
left join lanju_op_cloud.dbo.sys_dict_data sdd on sdd.dict_type = 'qms_category' and sdd.dict_value = qpcu.material_code
where qpcu.del_flag = '0'
left join lanju_op_cloud.dbo.sys_dict_data sdd on sdd.dict_type = 'qms_category'
and sdd.dict_value = qpcu.material_code
where qpcu.del_flag = '0' and qpcu.material_code = #{cpkType}
</select>
<select id="getProdLineList" resultType="com.op.system.api.domain.mes.ProLine">
select equipment_code lineCode,equipment_name lineName from base_equipment
where del_flag = '0' and equipment_type_code = 'equ_type_bzx'
</select>
<select id="getDLDataDay" resultType="com.op.quality.domain.QcStaticTable">
SELECT
concat(q.cpkType,'-',q.ymdms) yearMonth,
ymdms,rule_name ruleName,
project_no projectNo,
STUFF(
(SELECT ',' + t.actual_value
FROM (select
bpa.cpk_type cpkType,
CONVERT(varchar(10),qct.income_time, 120) ymdms,
qctd.rule_name, qctd.project_no,qctd.actual_value
from qc_check_task qct
left join qc_check_task_detail qctd on qct.record_id = qctd.belong_to
left join base_product_attached bpa on concat('0000000',bpa.product_code) = qct.material_code
where qct.check_type = #{checkType} and qctd.property_code = '1' and qct.check_time is not null
<if test="ymArrayStart != null ">and CONVERT(varchar(10),qct.income_time, 120) >= #{ymArrayStart}</if>
<if test="ymArrayEnd != null ">and #{ymArrayEnd} >=CONVERT(varchar(10),qct.income_time,120) </if>
<if test="checkLoc != null ">and qct.check_loc = #{checkLoc}</if>
and qctd.project_id = #{projectId} and bpa.cpk_type = #{cpkType}
) t
WHERE t.cpkType = q.cpkType and t.project_no = q.project_no and t.ymdms=q.ymdms
FOR xml path('')
),1,1,''
) quality
FROM (
select
bpa.cpk_type cpkType,
CONVERT(varchar(10),qct.income_time, 120) ymdms,
qctd.rule_name,qctd.project_no,qctd.actual_value
from qc_check_task qct
left join qc_check_task_detail qctd on qct.record_id = qctd.belong_to
left join base_product_attached bpa on concat('0000000',bpa.product_code) = qct.material_code
where qct.check_type = #{checkType} and qctd.property_code = '1' and qct.check_time is not null
<if test="ymArrayStart != null ">and CONVERT(varchar(10),qct.income_time, 120) >= #{ymArrayStart}</if>
<if test="ymArrayEnd != null ">and #{ymArrayEnd}>=CONVERT(varchar(10),qct.income_time,120) </if>
<if test="checkLoc != null ">and qct.check_loc = #{checkLoc}</if>
and qctd.project_id = #{projectId} and bpa.cpk_type = #{cpkType}
) q
GROUP BY q.cpkType, q.ymdms,q.rule_name,q.project_no
</select>
</mapper>

Loading…
Cancel
Save