质量cpk配置

master
zhaoxiaolin 7 months ago
parent 3460f4ec24
commit 040ffed149

@ -7,6 +7,7 @@ import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import java.util.Date;
import java.util.List;
/**
* base_equipment
@ -156,6 +157,44 @@ public class EquEquipmentDTO extends BaseEntity {
@Excel(name = "SAP资产号")
private String sapAsset;
private String factoryCode;
private String sapCode;
private String sapName;
private List<EquEquipmentDTO> details;
public List<EquEquipmentDTO> getDetails() {
return details;
}
public void setDetails(List<EquEquipmentDTO> details) {
this.details = details;
}
public String getSapCode() {
return sapCode;
}
public void setSapCode(String sapCode) {
this.sapCode = sapCode;
}
public String getSapName() {
return sapName;
}
public void setSapName(String sapName) {
this.sapName = sapName;
}
public String getFactoryCode() {
return factoryCode;
}
public void setFactoryCode(String factoryCode) {
this.factoryCode = factoryCode;
}
public void setEquipmentId(Long equipmentId) {
this.equipmentId = equipmentId;
}

@ -119,6 +119,15 @@ public class MesPrepareDetail extends BaseEntity {
private String workorderCode;
private String parentOrder;
private String prodLineCode;
private int xh;
public int getXh() {
return xh;
}
public void setXh(int xh) {
this.xh = xh;
}
public String getProductDateStr() {
return productDateStr;

@ -113,11 +113,16 @@ public class MesPrepareDetailServiceImpl implements IMesPrepareDetailService {
.replace("\"","")
.replace("\"","")
.replace("]]",""));
mesPrepareDetailList = mesPrepareDetailList.stream()
.filter(dto ->!dto.getQuantity().equals("0.00"))
.collect(Collectors.toList());
PrintPrepareVo printPrepareVo = new PrintPrepareVo();
printPrepareVo.setMesPrepare(mesPrepare);
printPrepareVo.setMesPrepareDetailList(mesPrepareDetailList.stream()
.filter(dto ->!dto.getQuantity().equals("0.00"))
.collect(Collectors.toList()));
int i = 1;
for(MesPrepareDetail dto:mesPrepareDetailList){
dto.setXh(i++);
}
printPrepareVo.setMesPrepareDetailList(mesPrepareDetailList);
return AjaxResult.success(printPrepareVo);
}
@ -134,11 +139,16 @@ public class MesPrepareDetailServiceImpl implements IMesPrepareDetailService {
qodetail.setProductDateStr(productDate);
qodetail.setRecoil("X");
List<MesPrepareDetail> mesPrepareDetailList = mesPrepareDetailMapper.selectPreDetailHzList(qodetail);
mesPrepareDetailList = mesPrepareDetailList.stream()
.filter(dto ->!dto.getQuantity().equals("0.00"))
.collect(Collectors.toList());
int i = 1;
for(MesPrepareDetail dto:mesPrepareDetailList){
dto.setXh(i++);
}
PrintPrepareVo printPrepareVo = new PrintPrepareVo();
printPrepareVo.setMesPrepare(mesPrepare);
printPrepareVo.setMesPrepareDetailList(mesPrepareDetailList.stream()
.filter(dto ->!dto.getQuantity().equals("0.00"))
.collect(Collectors.toList()));
printPrepareVo.setMesPrepareDetailList(mesPrepareDetailList);
return AjaxResult.success(printPrepareVo);
}
}

@ -955,9 +955,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</select>
<select id="getProductReason" resultType="java.lang.String">
SELECT
STRING_AGG(Reason, ';') AS Reasons
STRING_AGG(concat('【',Reason,attr2,'H】'), ';') AS Reasons
FROM
mes_report_work where workorder_code = #{workorderCode} and del_flag = '0' and Reason is not null
mes_report_work where workorder_code = #{workorderCode} and del_flag = '0'
and Reason is not null
and reason !=''
and reason !='无'
GROUP BY
workorder_code;
</select>

@ -10,6 +10,7 @@ import com.op.common.core.web.domain.AjaxResult;
import com.op.common.datasource.creator.DynamicDatasourceCreator;
import com.op.open.service.OpenService;
import com.op.system.api.domain.DataSourcePropertyDTO;
import com.op.system.api.domain.device.EquEquipmentDTO;
import com.op.system.api.domain.device.EquRepairOrderDTO;
import com.op.system.api.domain.dto.WCSDTO;
import com.op.system.api.domain.dto.WechartDTO;
@ -257,4 +258,13 @@ public class OpenController extends BaseController {
public AjaxResult sendProductCheckNo(@RequestBody List<BaseProductDTO> dots) {
return openService.sendProductCheckNo(dots);
}
//给oa提供的设备sap设备增加
@PostMapping("/addEquSapInfo")
public AjaxResult addEquSapInfo(@RequestBody EquEquipmentDTO dto) {
if(StringUtils.isNotBlank(dto.getFactoryCode())){
return error("[factoryCode] is null ");
}
return openService.addEquSapInfo(dto);
}
}

@ -96,5 +96,9 @@ public interface OpenMapper {
int updateProductNoBatchs(@Param("list") List<BaseProductDTO> updates);
int addProductNoBatchs(@Param("list")List<BaseProductDTO> everyList);
//
// int updateEquBatchs(@Param("list") List<EquEquipmentDTO> updates);
//
// int addEquBatchs(@Param("list") List<EquEquipmentDTO> everyList);
}

@ -1,6 +1,7 @@
package com.op.open.service;
import com.op.common.core.web.domain.AjaxResult;
import com.op.system.api.domain.device.EquEquipmentDTO;
import com.op.system.api.domain.device.EquRepairOrderDTO;
import com.op.system.api.domain.dto.WCSDTO;
import com.op.system.api.domain.dto.WechartDTO;
@ -43,4 +44,6 @@ public interface OpenService {
AjaxResult getDeliveryNoteDetail(Map paramMap);
AjaxResult sendProductCheckNo(List<BaseProductDTO> dots);
AjaxResult addEquSapInfo(EquEquipmentDTO dto);
}

@ -706,7 +706,72 @@ public class OpenServiceImpl implements OpenService {
return error(e.getMessage());
}
}
@Override
public AjaxResult addEquSapInfo(EquEquipmentDTO dto) {
// try {
// logger.info("oa增加sap设备发送参数"+JSONObject.toJSONString(dto));
// List<EquEquipmentDTO> dtos = dto.getDetails();
// if(CollectionUtils.isEmpty(dtos)){
// return error("oa增加sap设备发送参数为空");
// }
// DynamicDataSourceContextHolder.push("ds_"+dtos.get(0).getFactoryCode());
// Date nowDate = DateUtils.getNowDate();
// String createBy = SecurityUtils.getUsername();
// for(EquEquipmentDTO equ:dtos){
// equ.setCreateBy(createBy);
// equ.setUpdateBy(createBy);
// equ.setCreateTime(nowDate);
// equ.setUpdateTime(nowDate);
// }
//
//
// //sap返回的sap设备编码
// List<String> codes = dtos.stream().map(EquEquipmentDTO::getSapCode).collect(Collectors.toList());
// //sap返回的客户编码-本地已存在
// List<String> exsitCodes = openMapper.getExsitCodes(codes);
// //sap返回的产品编码-本地不存在// 差集 (list2 - list1)
// List<String> noExsitCodes = codes.stream().filter(item -> !exsitCodes.contains(item)).collect(Collectors.toList());
//
// List<EquEquipmentDTO> updates = new ArrayList<>();
// for (String exsitCode : exsitCodes) {
// List<EquEquipmentDTO> updates0 = dtos.stream().filter(up -> up.getSapCode().equals(exsitCode)).collect(Collectors.toList());
// updates.addAll(updates0);
// }
// if (!CollectionUtils.isEmpty(updates)) {
// int m = openMapper.updateEquBatchs(updates);
// System.out.println("oa更新设备成功条数" + m);
// }
// List<EquEquipmentDTO> adds = new ArrayList<>();
// for (String noExsitCode : noExsitCodes) {
// List<EquEquipmentDTO> adds0 = dtos.stream().filter(ad -> ad.getSapCode().equals(noExsitCode)).collect(Collectors.toList());
// adds.addAll(adds0);
// }
// if (!CollectionUtils.isEmpty(adds)) {
//
// int allsize = adds.size();
// int inserttimes = allsize / 100 + 1;
// for (int m = 0; m < inserttimes; m++) {
// List<EquEquipmentDTO> everyList;
// if (m < (inserttimes - 1)) {
// everyList = adds.subList(m * 100, (m + 1) * 100);
// } else {
// everyList = adds.subList(m * 100, allsize);
// }
// if (everyList.size() > 0) {
// openMapper.addEquBatchs(everyList);
// }
// }
//
// System.out.println("oa新增设备成功条数" + allsize);
// }
//
// return success();
// } catch (Exception e) {
// e.printStackTrace();
// return error(e.getMessage());
// }
return success();
}
protected Boolean oneMinHas(Date lastData){
if(lastData != null){
int year= Integer.parseInt(String.format("%tY", lastData));

@ -0,0 +1,111 @@
package com.op.quality.controller;
import java.security.Security;
import java.util.List;
import javax.servlet.http.HttpServletResponse;
import com.op.common.core.utils.DateUtils;
import com.op.common.core.utils.poi.ExcelUtil;
import com.op.common.core.utils.uuid.IdUtils;
import com.op.common.security.utils.SecurityUtils;
import com.op.quality.domain.QcProductCpkUpdown;
import com.op.quality.service.IQcProductCpkUpdownService;
import org.apache.catalina.security.SecurityUtil;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.op.common.log.annotation.Log;
import com.op.common.log.enums.BusinessType;
import com.op.common.security.annotation.RequiresPermissions;
import com.op.common.core.web.controller.BaseController;
import com.op.common.core.web.domain.AjaxResult;
import com.op.common.core.web.page.TableDataInfo;
/**
* CPKController
*
* @author Open Platform
* @date 2024-09-12
*/
@RestController
@RequestMapping("/cpkUpdown")
public class QcProductCpkUpdownController extends BaseController {
@Autowired
private IQcProductCpkUpdownService qcProductCpkUpdownService;
/**
* CPK
*/
@GetMapping("/list")
public TableDataInfo list(QcProductCpkUpdown qcProductCpkUpdown) {
startPage();
List<QcProductCpkUpdown> list = qcProductCpkUpdownService.selectQcProductCpkUpdownList(qcProductCpkUpdown);
return getDataTable(list);
}
/**
* CPK
*/
@Log(title = "CPK上下限维护", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, QcProductCpkUpdown qcProductCpkUpdown) {
List<QcProductCpkUpdown> list = qcProductCpkUpdownService.selectQcProductCpkUpdownList(qcProductCpkUpdown);
ExcelUtil<QcProductCpkUpdown> util = new ExcelUtil<QcProductCpkUpdown>(QcProductCpkUpdown. class);
util.exportExcel(response, list, "CPK上下限维护数据");
}
/**
* CPK
*/
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") String id) {
return success(qcProductCpkUpdownService.selectQcProductCpkUpdownById(id));
}
/**
* CPK
*/
@RequiresPermissions("quality:cpkUpDowConfig:add")
@Log(title = "CPK上下限维护", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody QcProductCpkUpdown qcProductCpkUpdown) {
qcProductCpkUpdown.setId(IdUtils.fastSimpleUUID());
qcProductCpkUpdown.setCreateBy(SecurityUtils.getUsername());
qcProductCpkUpdown.setCreateTime(DateUtils.getNowDate());
QcProductCpkUpdown exsit = qcProductCpkUpdownService.checkCpkUpdown(qcProductCpkUpdown);
if(exsit!=null){
return AjaxResult.error("数据已存在");
}
return toAjax(qcProductCpkUpdownService.insertQcProductCpkUpdown(qcProductCpkUpdown));
}
/**
* CPK
*/
@RequiresPermissions("quality:cpkUpDowConfig:edit")
@Log(title = "CPK上下限维护", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody QcProductCpkUpdown qcProductCpkUpdown) {
qcProductCpkUpdown.setUpdateBy(SecurityUtils.getUsername());
qcProductCpkUpdown.setUpdateTime(DateUtils.getNowDate());
return toAjax(qcProductCpkUpdownService.updateQcProductCpkUpdown(qcProductCpkUpdown));
}
/**
* CPK
*/
@RequiresPermissions("quality:cpkUpDowConfig:remove")
@Log(title = "CPK上下限维护", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable String[] ids) {
return toAjax(qcProductCpkUpdownService.deleteQcProductCpkUpdownByIds(ids));
}
}

@ -0,0 +1,153 @@
package com.op.quality.domain;
import java.math.BigDecimal;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.op.common.core.annotation.Excel;
import com.op.common.core.web.domain.BaseEntity;
/**
* qc_product_cpk_updown
*
* @author Open Platform
* @date 2024-09-12
*/
public class QcProductCpkUpdown extends BaseEntity {
private static final long serialVersionUID=1L;
/** id */
private String id;
/** 类型编码material来料检验、produce生产检验、product成品检验 */
@Excel(name = "类型编码material来料检验、produce生产检验、product成品检验")
private String typeCode;
/** 检验节点 */
@Excel(name = "检验节点")
private String checkType;
/** 工厂编码 */
@Excel(name = "工厂编码")
private String factoryCode;
/** 删除标识1删除0正常 */
private String delFlag;
/** 物料号 */
@Excel(name = "物料号")
private String materialCode;
/** 物料名称 */
@Excel(name = "物料名称")
private String materialName;
/** 上限 */
@Excel(name = "上限")
private BigDecimal upVal;
/** 下限 */
@Excel(name = "下限")
private BigDecimal downVal;
private String ruleCode;
private String ruleName;
public String getRuleCode() {
return ruleCode;
}
public void setRuleCode(String ruleCode) {
this.ruleCode = ruleCode;
}
public String getRuleName() {
return ruleName;
}
public void setRuleName(String ruleName) {
this.ruleName = ruleName;
}
public void setId(String id){
this.id = id;
}
public String getId(){
return id;
}
public void setTypeCode(String typeCode){
this.typeCode = typeCode;
}
public String getTypeCode(){
return typeCode;
}
public void setCheckType(String checkType){
this.checkType = checkType;
}
public String getCheckType(){
return checkType;
}
public void setFactoryCode(String factoryCode){
this.factoryCode = factoryCode;
}
public String getFactoryCode(){
return factoryCode;
}
public void setDelFlag(String delFlag){
this.delFlag = delFlag;
}
public String getDelFlag(){
return delFlag;
}
public void setMaterialCode(String materialCode){
this.materialCode = materialCode;
}
public String getMaterialCode(){
return materialCode;
}
public void setMaterialName(String materialName){
this.materialName = materialName;
}
public String getMaterialName(){
return materialName;
}
public void setUpVal(BigDecimal upVal){
this.upVal = upVal;
}
public BigDecimal getUpVal(){
return upVal;
}
public void setDownVal(BigDecimal downVal){
this.downVal = downVal;
}
public BigDecimal getDownVal(){
return downVal;
}
@Override
public String toString(){
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("id",getId())
.append("typeCode",getTypeCode())
.append("checkType",getCheckType())
.append("createBy",getCreateBy())
.append("createTime",getCreateTime())
.append("updateBy",getUpdateBy())
.append("updateTime",getUpdateTime())
.append("factoryCode",getFactoryCode())
.append("delFlag",getDelFlag())
.append("materialCode",getMaterialCode())
.append("materialName",getMaterialName())
.append("upVal",getUpVal())
.append("downVal",getDownVal())
.toString();
}
}

@ -0,0 +1,64 @@
package com.op.quality.mapper;
import com.op.quality.domain.QcProductCpkUpdown;
import java.util.List;
/**
* Mapper
*
* @author Open Platform
* @date 2024-09-12
*/
public interface QcProductCpkUpdownMapper {
/**
*
*
* @param id
* @return
*/
public QcProductCpkUpdown selectQcProductCpkUpdownById(String id);
/**
*
*
* @param qcProductCpkUpdown
* @return
*/
public List<QcProductCpkUpdown> selectQcProductCpkUpdownList(QcProductCpkUpdown qcProductCpkUpdown);
/**
*
*
* @param qcProductCpkUpdown
* @return
*/
public int insertQcProductCpkUpdown(QcProductCpkUpdown qcProductCpkUpdown);
/**
*
*
* @param qcProductCpkUpdown
* @return
*/
public int updateQcProductCpkUpdown(QcProductCpkUpdown qcProductCpkUpdown);
/**
*
*
* @param id
* @return
*/
public int deleteQcProductCpkUpdownById(String id);
/**
*
*
* @param ids
* @return
*/
public int deleteQcProductCpkUpdownByIds(String[] ids);
QcProductCpkUpdown checkCpkUpdown(QcProductCpkUpdown qcProductCpkUpdown);
}

@ -0,0 +1,64 @@
package com.op.quality.service;
import com.op.quality.domain.QcProductCpkUpdown;
import java.util.List;
/**
* Service
*
* @author Open Platform
* @date 2024-09-12
*/
public interface IQcProductCpkUpdownService {
/**
*
*
* @param id
* @return
*/
public QcProductCpkUpdown selectQcProductCpkUpdownById(String id);
/**
*
*
* @param qcProductCpkUpdown
* @return
*/
public List<QcProductCpkUpdown> selectQcProductCpkUpdownList(QcProductCpkUpdown qcProductCpkUpdown);
/**
*
*
* @param qcProductCpkUpdown
* @return
*/
public int insertQcProductCpkUpdown(QcProductCpkUpdown qcProductCpkUpdown);
/**
*
*
* @param qcProductCpkUpdown
* @return
*/
public int updateQcProductCpkUpdown(QcProductCpkUpdown qcProductCpkUpdown);
/**
*
*
* @param ids
* @return
*/
public int deleteQcProductCpkUpdownByIds(String[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteQcProductCpkUpdownById(String id);
QcProductCpkUpdown checkCpkUpdown(QcProductCpkUpdown qcProductCpkUpdown);
}

@ -0,0 +1,104 @@
package com.op.quality.service.impl;
import java.util.List;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.op.common.core.utils.DateUtils;
import com.op.quality.domain.QcProductCpkUpdown;
import com.op.quality.mapper.QcProductCpkUpdownMapper;
import com.op.quality.service.IQcProductCpkUpdownService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
/**
* Service
*
* @author Open Platform
* @date 2024-09-12
*/
@Service
public class QcProductCpkUpdownServiceImpl implements IQcProductCpkUpdownService {
@Autowired
private QcProductCpkUpdownMapper qcProductCpkUpdownMapper;
/**
*
*
* @param id
* @return
*/
@Override
@DS("#header.poolName")
public QcProductCpkUpdown selectQcProductCpkUpdownById(String id) {
return qcProductCpkUpdownMapper.selectQcProductCpkUpdownById(id);
}
/**
*
*
* @param qcProductCpkUpdown
* @return
*/
@Override
@DS("#header.poolName")
public List<QcProductCpkUpdown> selectQcProductCpkUpdownList(QcProductCpkUpdown qcProductCpkUpdown) {
return qcProductCpkUpdownMapper.selectQcProductCpkUpdownList(qcProductCpkUpdown);
}
/**
*
*
* @param qcProductCpkUpdown
* @return
*/
@Override
@DS("#header.poolName")
public int insertQcProductCpkUpdown(QcProductCpkUpdown qcProductCpkUpdown) {
qcProductCpkUpdown.setCreateTime(DateUtils.getNowDate());
return qcProductCpkUpdownMapper.insertQcProductCpkUpdown(qcProductCpkUpdown);
}
/**
*
*
* @param qcProductCpkUpdown
* @return
*/
@Override
@DS("#header.poolName")
public int updateQcProductCpkUpdown(QcProductCpkUpdown qcProductCpkUpdown) {
qcProductCpkUpdown.setUpdateTime(DateUtils.getNowDate());
return qcProductCpkUpdownMapper.updateQcProductCpkUpdown(qcProductCpkUpdown);
}
/**
*
*
* @param ids
* @return
*/
@Override
@DS("#header.poolName")
public int deleteQcProductCpkUpdownByIds(String[] ids) {
return qcProductCpkUpdownMapper.deleteQcProductCpkUpdownByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
@DS("#header.poolName")
public int deleteQcProductCpkUpdownById(String id) {
return qcProductCpkUpdownMapper.deleteQcProductCpkUpdownById(id);
}
@Override
@DS("#header.poolName")
public QcProductCpkUpdown checkCpkUpdown(QcProductCpkUpdown qcProductCpkUpdown) {
return qcProductCpkUpdownMapper.checkCpkUpdown(qcProductCpkUpdown);
}
}

@ -768,6 +768,7 @@ public class QcStaticTableServiceImpl implements IQcStaticTableService {
if(qcStaticTable.getProjectNoArray()!=null){
qcStaticTable.setProjectNo(qcStaticTable.getProjectNoArray()[0]);
QcStaticTable upandown = qcStaticTableMapper.getUpAndDown(qcStaticTable);
if(upandown!=null){
dto.setUpperDiff(upandown.getUpperDiff());
dto.setDownDiff(upandown.getDownDiff());

@ -100,7 +100,7 @@
qct.check_time, qct.check_result, qct.status, qct.check_type, qct.attr1, qct.attr2, qct.attr3, qct.attr4,
qct.create_by, qct.create_time, qct.update_by, qct.update_time,
qct.factory_code, qct.del_flag,qct.reason,qct.product_type,qct.order_type,qct.jgy,qct.pgy,qct.cxzz,
bp.mvgr5 standardNo
ISNULL(bp.mvgr5, '成品蚊香【物料组】') standardNo
from qc_check_task qct
left join base_product bp on bp.product_code = qct.material_code
where qct.record_id = #{recordId}

@ -161,7 +161,7 @@
qctp.weight
from qc_check_task_detail td
left join qc_check_type_project qctp on td.type_project_id = qctp.id
left join lanju_op_cloud.dbo.sys_dict_data dic on dic.dict_value = td.unit_code and dic.status ='0'
left join lanju_op_cloud.dbo.sys_dict_data dic on dic.dict_value = td.unit_code and dic.status ='0' and dic.dict_type = 'unit'
where td.belong_to = #{belongTo} and td.del_flag='0' and qctp.del_flag = '0' and td.rule_name is not null
order by qctp.sort
</select>

@ -241,6 +241,7 @@
where CONVERT(varchar(10),create_time, 120) = CONVERT(varchar(10),GETDATE(), 120)
</select>
<select id="getPutInOrder" resultType="com.op.quality.domain.QcCheckTaskIncome">
<!--
select * from (
SELECT
wms_raw_order_in_sn.user_defined5 AS orderNo,
@ -290,7 +291,41 @@
base_warehouse.warehouse_name,
wms_fp_storage_news_sn.wh_code
) t
-->
select t0.orderNo,
t0.materialCode,
t0.materialName,
t0.quality,
t0.incomeTime,
t0.supplierCode,
t0.supplierName,
t0.check_Type
from (
select t.order_no orderNo,
t.material_code materialCode,
t.material_name materialName,
t.quality quality,
t.income_time incomeTime,
t.supplier_code supplierCode,
t.supplier_name supplierName,
t.check_type check_Type,
bp.warehouse_cycle,
case when qct.create_time is not null then DATEDIFF(day, qct.create_time, GETDATE())
else DATEDIFF(day, t.income_time, GETDATE()) end days
from qc_check_task t
left join base_product_attached bp on t.material_code = concat('0000000',bp.product_code)
left join (
select order_no,material_code,max(create_time) create_time
from qc_check_task where check_type='checkTypeCC' and del_flag = '0' GROUP BY order_no,material_code
) qct on qct.order_no = t.order_no
and t.material_code = qct.material_code
where bp.warehouse_cycle is not null and t.check_type in('checkTypeLL','checkTypeCP') and t.del_flag = '0'
<if test="materialCode != null">and t.material_code like concat('%',#{materialCode}, '%')</if>
<if test="materialName != null">and t.material_name like concat('%',#{materialName}, '%')</if>
)t0
where t0.days >= t0.warehouse_cycle
</select>
<select id="getPutInOrderList" resultType="com.op.quality.domain.QcCheckTaskInventory">
select t0.orderNo,
t0.materialCode,
@ -322,6 +357,7 @@
where bp.warehouse_cycle is not null and t.check_type in('checkTypeLL','checkTypeCP') and t.del_flag = '0'
)t0
where t0.days >= t0.warehouse_cycle
</select>
<insert id="insertQcCheckOaTask" parameterType="OACheckTaskDTO">

@ -0,0 +1,152 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.op.quality.mapper.QcProductCpkUpdownMapper">
<resultMap type="QcProductCpkUpdown" id="QcProductCpkUpdownResult">
<result property="id" column="id"/>
<result property="typeCode" column="type_code"/>
<result property="checkType" column="check_type"/>
<result property="createBy" column="create_by"/>
<result property="createTime" column="create_time"/>
<result property="updateBy" column="update_by"/>
<result property="updateTime" column="update_time"/>
<result property="factoryCode" column="factory_code"/>
<result property="delFlag" column="del_flag"/>
<result property="materialCode" column="material_code"/>
<result property="materialName" column="material_name"/>
<result property="upVal" column="up_val"/>
<result property="downVal" column="down_val"/>
<result property="ruleCode" column="rule_code"/>
<result property="ruleName" column="rule_name"/>
</resultMap>
<sql id="selectQcProductCpkUpdownVo">
select id, type_code, check_type, create_by, create_time, update_by, update_time,
factory_code, del_flag, material_code, material_name, up_val, down_val,
rule_code,rule_name
from qc_product_cpk_updown
</sql>
<select id="selectQcProductCpkUpdownList" parameterType="QcProductCpkUpdown" resultMap="QcProductCpkUpdownResult">
select qpcu.id, qpcu.type_code, qpcu.create_by,
qpcu.create_time, qpcu.update_by, qpcu.update_time,
qpcu.material_code, qpcu.material_name, qpcu.up_val, qpcu.down_val,
qpcu.rule_code,qpcu.rule_name,qct.check_name check_type
from qc_product_cpk_updown qpcu
left join qc_check_type qct on qct.order_code = qpcu.check_type
<where>
<if test="typeCode != null and typeCode != ''">
and qpcu.type_code = #{typeCode}
</if>
<if test="checkType != null and checkType != ''">
and qpcu.check_type = #{checkType}
</if>
<if test="factoryCode != null and factoryCode != ''">
and qpcu.factory_code = #{factoryCode}
</if>
<if test="materialCode != null and materialCode != ''">
and qpcu.material_code like concat('%', #{materialCode}, '%')
</if>
<if test="materialName != null and materialName != ''">
and qpcu.material_name like concat('%', #{materialName}, '%')
</if>
<if test="upVal != null ">
and qpcu.up_val = #{upVal}
</if>
<if test="downVal != null ">
and qpcu.down_val = #{downVal}
</if>
<if test="ruleCode != null ">
and qpcu.rule_code like concat('%', #{ruleCode}, '%')
</if>
<if test="ruleName != null ">
and qpcu.rule_name like concat('%', #{ruleName}, '%')
</if>
and qpcu.del_flag = '0'
</where>
</select>
<select id="selectQcProductCpkUpdownById" parameterType="String"
resultMap="QcProductCpkUpdownResult">
<include refid="selectQcProductCpkUpdownVo"/>
where id = #{id}
</select>
<select id="checkCpkUpdown" resultType="com.op.quality.domain.QcProductCpkUpdown">
select top 1 type_code typeCode, check_type checkType,
material_code materialCode, material_name materialName,
rule_code ruleCode,rule_name ruleName
from qc_product_cpk_updown
where check_type = #{checkType}
and material_code = #{materialCode}
and rule_code = #{ruleCode}
</select>
<insert id="insertQcProductCpkUpdown" parameterType="QcProductCpkUpdown">
insert into qc_product_cpk_updown
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">id,</if>
<if test="typeCode != null">type_code,</if>
<if test="checkType != null">check_type,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
<if test="factoryCode != null and factoryCode != ''">factory_code,</if>
<if test="delFlag != null">del_flag,</if>
<if test="materialCode != null">material_code,</if>
<if test="materialName != null">material_name,</if>
<if test="upVal != null">up_val,</if>
<if test="downVal != null">down_val,</if>
<if test="ruleCode != null">rule_code,</if>
<if test="ruleName != null">rule_name,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="id != null">#{id},</if>
<if test="typeCode != null">#{typeCode},</if>
<if test="checkType != null">#{checkType},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="factoryCode != null and factoryCode != ''">#{factoryCode}, </if>
<if test="delFlag != null">#{delFlag},</if>
<if test="materialCode != null">#{materialCode},</if>
<if test="materialName != null">#{materialName},</if>
<if test="upVal != null">#{upVal},</if>
<if test="downVal != null">#{downVal},</if>
<if test="ruleCode != null">#{ruleCode},</if>
<if test="ruleName != null">#{ruleName},</if>
</trim>
</insert>
<update id="updateQcProductCpkUpdown" parameterType="QcProductCpkUpdown">
update qc_product_cpk_updown
<trim prefix="SET" suffixOverrides=",">
<if test="typeCode != null">type_code =#{typeCode},</if>
<if test="checkType != null">check_type = #{checkType},</if>
<if test="updateBy != null">update_by =#{updateBy},</if>
<if test="updateTime != null">update_time =#{updateTime}, </if>
<if test="delFlag != null">del_flag =#{delFlag},</if>
<if test="materialCode != null">material_code =#{materialCode},</if>
<if test="materialName != null">material_name =#{materialName},</if>
<if test="upVal != null">up_val =#{upVal},</if>
<if test="downVal != null">down_val =#{downVal},</if>
<if test="ruleCode != null">rule_code =#{ruleCode},</if>
<if test="ruleName != null">rule_name = #{ruleName},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteQcProductCpkUpdownById" parameterType="String">
update qc_product_cpk_updown set del_flag = '1' where id = #{id}
</delete>
<delete id="deleteQcProductCpkUpdownByIds" parameterType="String">
update qc_product_cpk_updown set del_flag = '1' where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>
Loading…
Cancel
Save