Merge remote-tracking branch 'origin/master'

master
mengjiao 1 year ago
commit 6b8420f87c

@ -3,7 +3,10 @@ package com.op.device.controller;
import java.util.List;
import javax.servlet.http.HttpServletResponse;
import com.op.device.domain.EquRepairOrder;
import com.op.device.domain.WorkCenter;
import com.op.device.domain.dto.EquCheckItemDTO;
import com.op.device.domain.dto.SummaryReportDTO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
@ -118,4 +121,31 @@ public class EquCheckItemController extends BaseController {
public AjaxResult remove(@PathVariable String[] itemIds) {
return equCheckItemService.deleteEquCheckItemByItemIds(itemIds);
}
//检查标准汇总 点检、巡检、保养
@RequiresPermissions("device:item:summaryReport")
@GetMapping("/summaryReport")
public AjaxResult getSummaryReport(EquCheckItem equCheckItem) {
return equCheckItemService.getSummaryReport(equCheckItem);
}
/**
*
*
* @return
*/
@GetMapping("/getWorkCenter")
public AjaxResult getWorkCenter() {
return equCheckItemService.getWorkCenter();
}
/**
*
* @return
*/
@GetMapping("/matchList")
public AjaxResult selectMatchListByEquipmentCode(SummaryReportDTO summaryReportDTO) {
return equCheckItemService.selectMatchListByEquipmentCode(summaryReportDTO);
}
}

@ -0,0 +1,97 @@
package com.op.device.controller;
import java.util.List;
import javax.servlet.http.HttpServletResponse;
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.device.domain.EquOperation;
import com.op.device.service.IEquOperationService;
import com.op.common.core.web.controller.BaseController;
import com.op.common.core.web.domain.AjaxResult;
import com.op.common.core.utils.poi.ExcelUtil;
import com.op.common.core.web.page.TableDataInfo;
/**
* Controller
*
* @author Open Platform
* @date 2023-12-13
*/
@RestController
@RequestMapping("/operation")
public class EquOperationController extends BaseController {
@Autowired
private IEquOperationService equOperationService;
/**
*
*/
@RequiresPermissions("device:operation:list")
@GetMapping("/list")
public TableDataInfo list(EquOperation equOperation) {
startPage();
List<EquOperation> list = equOperationService.selectEquOperationList(equOperation);
return getDataTable(list);
}
/**
*
*/
@RequiresPermissions("device:operation:export")
@Log(title = "设备运行记录", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, EquOperation equOperation) {
List<EquOperation> list = equOperationService.selectEquOperationList(equOperation);
ExcelUtil<EquOperation> util = new ExcelUtil<EquOperation>(EquOperation.class);
util.exportExcel(response, list, "设备运行记录数据");
}
/**
*
*/
@RequiresPermissions("device:operation:query")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") String id) {
return success(equOperationService.selectEquOperationById(id));
}
/**
*
*/
@RequiresPermissions("device:operation:add")
@Log(title = "设备运行记录", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody EquOperation equOperation) {
return toAjax(equOperationService.insertEquOperation(equOperation));
}
/**
*
*/
@RequiresPermissions("device:operation:edit")
@Log(title = "设备运行记录", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody EquOperation equOperation) {
return toAjax(equOperationService.updateEquOperation(equOperation));
}
/**
*
*/
@RequiresPermissions("device:operation:remove")
@Log(title = "设备运行记录", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable String[] ids) {
return toAjax(equOperationService.deleteEquOperationByIds(ids));
}
}

@ -92,6 +92,16 @@ public class EquPlanController extends BaseController {
return getDataTable(list);
}
/**
* 线
* @return
*/
@RequiresPermissions("device:inspectionPlan:list")
@GetMapping("/getGroupLine")
public AjaxResult getGroupLine(){
return equPlanService.getGroupLine();
}
/**
*
*/

@ -30,7 +30,7 @@ public class EquCheckItem extends BaseEntity {
private String itemName;
/** 检查项方法/工具 */
@Excel(name = "检查项方法/工具")
@Excel(name = "检查项方法")
private String itemMethod;
/** 维护类型编码 */
@ -50,19 +50,15 @@ public class EquCheckItem extends BaseEntity {
private String factoryCode;
/** 备用字段1 */
@Excel(name = "备用字段1")
private String attr1;
/** 备用字段2 */
@Excel(name = "备用字段2")
private String attr2;
/** 备用字段3 */
@Excel(name = "备用字段3")
private String attr3;
/** 删除标识 */
@Excel(name = "删除标识")
private String delFlag;
/** 创建时间 */
@ -96,12 +92,15 @@ public class EquCheckItem extends BaseEntity {
private String updateTimeEnd;
// 检查项工具
@Excel(name = "检查项工具")
private String itemTools;
// 循环周期类型
@Excel(name = "循环周期类型")
private String itemLoopType;
// 循环周期
@Excel(name = "循环周期")
private int itemLoop;
public int getItemLoop() {

@ -158,6 +158,38 @@ public class EquEquipment extends BaseEntity {
@Excel(name = "设备状态")
private String equipmentStatus;
// 设备组线/辅助设备标识
private String equipmentCategory;
// 组线编码
private String groupLine;
// 组线名称
private String groupLineName;
public String getGroupLineName() {
return groupLineName;
}
public void setGroupLineName(String groupLineName) {
this.groupLineName = groupLineName;
}
public String getGroupLine() {
return groupLine;
}
public void setGroupLine(String groupLine) {
this.groupLine = groupLine;
}
public String getEquipmentCategory() {
return equipmentCategory;
}
public void setEquipmentCategory(String equipmentCategory) {
this.equipmentCategory = equipmentCategory;
}
public void setEquipmentId(Long equipmentId) {
this.equipmentId = equipmentId;
}

@ -41,19 +41,15 @@ public class EquFaultType extends BaseEntity {
private String factoryCode;
/** 备用字段1 */
@Excel(name = "备用字段1")
private String attr1;
/** 备用字段2 */
@Excel(name = "备用字段2")
private String attr2;
/** 备用字段3 */
@Excel(name = "备用字段3")
private String attr3;
/** 删除标志 */
@Excel(name = "删除标志")
private String delFlag;
// 创建日期范围list

@ -0,0 +1,265 @@
package com.op.device.domain;
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;
/**
* equ_operation
*
* @author Open Platform
* @date 2023-12-13
*/
public class EquOperation extends BaseEntity {
private static final long serialVersionUID = 1L;
/** 主键 */
private String id;
/** 车间 */
@Excel(name = "车间")
private String workshop;
/** 组线 */
@Excel(name = "组线")
private String groupLine;
/** 设备 */
@Excel(name = "设备")
private String equipmentName;
/** 设备编码 */
@Excel(name = "设备编码")
private String equipmentCode;
/** 故障时间 */
@Excel(name = "故障时间")
private String faultTime;
/** 实际运行时间;运行时间-故障时间 */
@Excel(name = "实际运行时间;运行时间-故障时间")
private String actualOperationTime;
/** 运行时间 */
@Excel(name = "运行时间")
private String operationTime;
/** 故障率 */
@Excel(name = "故障率")
private String failureRate;
/** 故障描述 */
@Excel(name = "故障描述")
private String failureDescription;
/** 原因分析 */
@Excel(name = "原因分析")
private String reasonAnalyze;
/** 处理方式 */
@Excel(name = "处理方式")
private String handlingMethod;
/** 维修人 */
@Excel(name = "维修人")
private String repairPerson;
/** 设备状态描述 */
@Excel(name = "设备状态描述")
private String equStatusDes;
/** 更换备件 */
@Excel(name = "更换备件")
private String replaceSpare;
/** 工厂 */
@Excel(name = "工厂")
private String factoryCode;
/** 备用字段1 */
@Excel(name = "备用字段1")
private String attr1;
/** 备用字段2 */
@Excel(name = "备用字段2")
private String attr2;
/** 备用字段3 */
@Excel(name = "备用字段3")
private String attr3;
/** 删除标识 */
private String delFlag;
public void setId(String id) {
this.id = id;
}
public String getId() {
return id;
}
public void setWorkshop(String workshop) {
this.workshop = workshop;
}
public String getWorkshop() {
return workshop;
}
public void setGroupLine(String groupLine) {
this.groupLine = groupLine;
}
public String getGroupLine() {
return groupLine;
}
public void setEquipmentName(String equipmentName) {
this.equipmentName = equipmentName;
}
public String getEquipmentName() {
return equipmentName;
}
public void setEquipmentCode(String equipmentCode) {
this.equipmentCode = equipmentCode;
}
public String getEquipmentCode() {
return equipmentCode;
}
public void setFaultTime(String faultTime) {
this.faultTime = faultTime;
}
public String getFaultTime() {
return faultTime;
}
public void setActualOperationTime(String actualOperationTime) {
this.actualOperationTime = actualOperationTime;
}
public String getActualOperationTime() {
return actualOperationTime;
}
public void setOperationTime(String operationTime) {
this.operationTime = operationTime;
}
public String getOperationTime() {
return operationTime;
}
public void setFailureRate(String failureRate) {
this.failureRate = failureRate;
}
public String getFailureRate() {
return failureRate;
}
public void setFailureDescription(String failureDescription) {
this.failureDescription = failureDescription;
}
public String getFailureDescription() {
return failureDescription;
}
public void setReasonAnalyze(String reasonAnalyze) {
this.reasonAnalyze = reasonAnalyze;
}
public String getReasonAnalyze() {
return reasonAnalyze;
}
public void setHandlingMethod(String handlingMethod) {
this.handlingMethod = handlingMethod;
}
public String getHandlingMethod() {
return handlingMethod;
}
public void setRepairPerson(String repairPerson) {
this.repairPerson = repairPerson;
}
public String getRepairPerson() {
return repairPerson;
}
public void setEquStatusDes(String equStatusDes) {
this.equStatusDes = equStatusDes;
}
public String getEquStatusDes() {
return equStatusDes;
}
public void setReplaceSpare(String replaceSpare) {
this.replaceSpare = replaceSpare;
}
public String getReplaceSpare() {
return replaceSpare;
}
public void setFactoryCode(String factoryCode) {
this.factoryCode = factoryCode;
}
public String getFactoryCode() {
return factoryCode;
}
public void setAttr1(String attr1) {
this.attr1 = attr1;
}
public String getAttr1() {
return attr1;
}
public void setAttr2(String attr2) {
this.attr2 = attr2;
}
public String getAttr2() {
return attr2;
}
public void setAttr3(String attr3) {
this.attr3 = attr3;
}
public String getAttr3() {
return attr3;
}
public void setDelFlag(String delFlag) {
this.delFlag = delFlag;
}
public String getDelFlag() {
return delFlag;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("workshop", getWorkshop())
.append("groupLine", getGroupLine())
.append("equipmentName", getEquipmentName())
.append("equipmentCode", getEquipmentCode())
.append("faultTime", getFaultTime())
.append("actualOperationTime", getActualOperationTime())
.append("operationTime", getOperationTime())
.append("failureRate", getFailureRate())
.append("failureDescription", getFailureDescription())
.append("reasonAnalyze", getReasonAnalyze())
.append("handlingMethod", getHandlingMethod())
.append("repairPerson", getRepairPerson())
.append("equStatusDes", getEquStatusDes())
.append("replaceSpare", getReplaceSpare())
.append("factoryCode", getFactoryCode())
.append("attr1", getAttr1())
.append("attr2", getAttr2())
.append("attr3", getAttr3())
.append("delFlag", getDelFlag())
.append("createBy", getCreateBy())
.append("createTime", getCreateTime())
.append("updateBy", getUpdateBy())
.append("updateTime", getUpdateTime())
.toString();
}
}

@ -31,19 +31,16 @@ public class EquPlan extends BaseEntity {
private String planName;
/** 车间 */
@Excel(name = "车间")
@Excel(name = "车间编码")
private String planWorkshop;
/** 产线 */
@Excel(name = "产线")
private String planProdLine;
/** 设备名称 */
@Excel(name = "设备名称")
private String equipmentName;
/** 设备编码 */
@Excel(name = "设备编码")
private String equipmentCode;
/** 循环周期 */
@ -65,7 +62,6 @@ public class EquPlan extends BaseEntity {
private Date planLoopEnd;
/** 巡检人员 */
@Excel(name = "巡检人员")
private String planPerson;
/** 计划状态 */
@ -77,11 +73,9 @@ public class EquPlan extends BaseEntity {
private String planRestrict;
/** 维护类型 */
@Excel(name = "维护类型")
private String planType;
/** 是否委外 */
@Excel(name = "是否委外")
private String planOutsource;
/** 委外工单编码 */
@ -93,19 +87,15 @@ public class EquPlan extends BaseEntity {
private String factoryCode;
/** 备用字段1 */
@Excel(name = "备用字段1")
private String attr1;
/** 备用字段2 */
@Excel(name = "备用字段2")
private String attr2;
/** 备用字段3 */
@Excel(name = "备用字段3")
private String attr3;
/** 删除标志 */
@Excel(name = "删除标志")
private String delFlag;
// 创建日期范围list
@ -136,12 +126,14 @@ public class EquPlan extends BaseEntity {
private String workCenterName;
// 保养类型
@Excel(name = "保养类型")
private String upkeep;
// 计划保养时间计算规则
private String calculationRule;
// 是否停机保养
@Excel(name = "是否停机保养")
private String shutDown;
private String planEquId;
@ -157,12 +149,16 @@ public class EquPlan extends BaseEntity {
private Date getLoopEndArrayEnd;
@Excel(name = "委外人员")
private String workPerson;
@Excel(name = "委外单位")
private String workOutsourcingUnit;
@Excel(name = "联系方式")
private String workConnection;
@Excel(name = "委外原因")
private String workReason;
public String getWorkOutsourcingUnit() {

@ -139,6 +139,9 @@ public class EquRepairWorkOrder extends BaseEntity {
/** 联系方式 */
private String workConnection;
/** 设备状态描述 */
private String equipmentStatusDescription;
// 设备
/** 设备名称 */
@Excel(name = "设备名称")
@ -722,6 +725,14 @@ public class EquRepairWorkOrder extends BaseEntity {
this.faultType = faultType;
}
//设备状态描述
public String getEquipmentStatusDescription() {
return equipmentStatusDescription;
}
public void setEquipmentStatusDescription(String equipmentStatusDescription) {
this.equipmentStatusDescription = equipmentStatusDescription;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)

@ -151,6 +151,17 @@ public class Equipment extends BaseEntity {
@Excel(name = "设备状态")
private String equipmentStatus;
// 设备组线/辅助设备标识
private String equipmentCategory;
public String getEquipmentCategory() {
return equipmentCategory;
}
public void setEquipmentCategory(String equipmentCategory) {
this.equipmentCategory = equipmentCategory;
}
public void setEquipmentId(Long equipmentId) {
this.equipmentId = equipmentId;
}

@ -203,6 +203,174 @@ public class SparePartsLedger extends BaseEntity {
@Excel(name = "备件类型", readConverterExp = "备=件用")
private String spareType;
//////////////////////////////////////////////////////////附属表
/** id */
private String id;
/** 主表备件编码 */
@Excel(name = "主表备件编码")
private String primaryCode;
/** 所属设备名称 */
@Excel(name = "所属设备名称")
private String ownEquipmentName;
/** 单机装配数量 */
@Excel(name = "单机装配数量")
private String unitQuantity;
/** 安全库存 */
@Excel(name = "安全库存")
private String safeStock;
/** 单价 */
@Excel(name = "单价")
private BigDecimal unitPrice;
/** 采购方式 */
@Excel(name = "采购方式")
private String procurementMethod;
/** 采购周期 */
@Excel(name = "采购周期")
private String procurementCycle;
/** 期初结存 */
@Excel(name = "期初结存")
private String openingBalance;
/** 出库记录 */
@Excel(name = "出库记录")
private String outputRecords;
/** 入库记录 */
@Excel(name = "入库记录")
private String inputRecords;
/** 期末盘点 */
@Excel(name = "期末盘点")
private String endInventory;
/** 期末金额 */
@Excel(name = "期末金额")
private BigDecimal endMoney;
/** 代用件 */
@Excel(name = "代用件")
private String substituteParts;
/** 所属设备编码 */
@Excel(name = "所属设备编码")
private String ownEquipmentCode;
public void setId(String id) {
this.id = id;
}
public String getId() {
return id;
}
public void setPrimaryCode(String primaryCode) {
this.primaryCode = primaryCode;
}
public String getPrimaryCode() {
return primaryCode;
}
public void setOwnEquipmentName(String ownEquipmentName) {
this.ownEquipmentName = ownEquipmentName;
}
public String getOwnEquipmentName() {
return ownEquipmentName;
}
public void setUnitQuantity(String unitQuantity) {
this.unitQuantity = unitQuantity;
}
public String getUnitQuantity() {
return unitQuantity;
}
public void setSafeStock(String safeStock) {
this.safeStock = safeStock;
}
public String getSafeStock() {
return safeStock;
}
public void setUnitPrice(BigDecimal unitPrice) {
this.unitPrice = unitPrice;
}
public BigDecimal getUnitPrice() {
return unitPrice;
}
public void setProcurementMethod(String procurementMethod) {
this.procurementMethod = procurementMethod;
}
public String getProcurementMethod() {
return procurementMethod;
}
public void setProcurementCycle(String procurementCycle) {
this.procurementCycle = procurementCycle;
}
public String getProcurementCycle() {
return procurementCycle;
}
public void setOpeningBalance(String openingBalance) {
this.openingBalance = openingBalance;
}
public String getOpeningBalance() {
return openingBalance;
}
public void setOutputRecords(String outputRecords) {
this.outputRecords = outputRecords;
}
public String getOutputRecords() {
return outputRecords;
}
public void setInputRecords(String inputRecords) {
this.inputRecords = inputRecords;
}
public String getInputRecords() {
return inputRecords;
}
public void setEndInventory(String endInventory) {
this.endInventory = endInventory;
}
public String getEndInventory() {
return endInventory;
}
public void setEndMoney(BigDecimal endMoney) {
this.endMoney = endMoney;
}
public BigDecimal getEndMoney() {
return endMoney;
}
public void setSubstituteParts(String substituteParts) {
this.substituteParts = substituteParts;
}
public String getSubstituteParts() {
return substituteParts;
}
public void setOwnEquipmentCode(String ownEquipmentCode) {
this.ownEquipmentCode = ownEquipmentCode;
}
public String getOwnEquipmentCode() {
return ownEquipmentCode;
}
/////////////////////////////
// 领用数量-保养备件领用使用
private BigDecimal applyNum;
public BigDecimal getApplyNum() {

@ -0,0 +1,477 @@
package com.op.device.domain.dto;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.op.common.core.annotation.Excel;
import com.op.device.domain.EquCheckItemDetail;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
// 检查项维护页面DTO
public class SummaryReportDTO {
/** 主键 */
private String itemId ;
/** 检查项编码 */
private String itemCode ;
/** 检查项名称 */
private String itemName ;
/** 检查项方法/工具 */
private String itemMethod ;
/** 维护类型编码 */
private String itemType ;
/** 维护类型名称 */
private String itemTypeName ;
/** 检查项备注 */
private String itemRemark ;
// 检查工具
private String itemTools;
//标准类型
private String standardType;
//标准名称
private String standardName;
// 循环周期类型
private String itemLoopType;
// 循环周期
private int itemLoop;
/** 主键 */
private String orderId;
//设备
private String equipmentCode;
/** 维修前达标 */
private String detailReach;
//维修后是否达标
private String repairReach;
/** 主键 */
private String detailId ;
/** 主键 */
private String id ;
//1号
private String one ;
//2号
private String two ;
//3号
private String three ;
//4号
private String four ;
//5号
private String five ;
//6号
private String six ;
//7号
private String seven ;
//8号
private String eight ;
//9号
private String nine ;
//10号
private String ten ;
//11号
private String eleven ;
//12号
private String twelve ;
//13号
private String thirteen ;
//14号
private String fourteen;
//15号
private String fifteen;
//16号
private String sixteen;
//17号
private String seventeen;
//18号
private String eighteen;
//19号
private String nineteen;
//20号
private String twenty;
//21号
private String twentyOne;
//22号
private String twentyTwo;
//23号
private String twentyThree;
//24号
private String twentyFour;
//25号
private String twentyFive;
//26号
private String twentySix;
//27号
private String twentySeven;
//28号
private String twentyEight;
//29号
private String twentyNine;
//30号
private String thirty;
//31号
private String thirtyOne;
/** 实际结束时间 */
@JsonFormat(pattern = "yyyy-MM-dd")
private Date orderEnd;
/** 时间 */
private String yearMouth;
public void setId(String id) {
this.id = id;
}
public String getId() {
return id;
}
public void setOrderId(String orderId) {
this.orderId = orderId;
}
public String getOrderId() {
return orderId;
}
public String getItemTools() {
return itemTools;
}
public void setItemTools(String itemTools) {
this.itemTools = itemTools;
}
public String getItemId() {
return itemId;
}
public void setItemId(String itemId) {
this.itemId = itemId;
}
public String getItemCode() {
return itemCode;
}
public void setItemCode(String itemCode) {
this.itemCode = itemCode;
}
public String getItemName() {
return itemName;
}
public void setItemName(String itemName) {
this.itemName = itemName;
}
public String getItemMethod() {
return itemMethod;
}
public void setItemMethod(String itemMethod) {
this.itemMethod = itemMethod;
}
public String getItemType() {
return itemType;
}
public void setItemType(String itemType) {
this.itemType = itemType;
}
public String getItemTypeName() {
return itemTypeName;
}
public void setItemTypeName(String itemTypeName) {
this.itemTypeName = itemTypeName;
}
public String getItemRemark() {
return itemRemark;
}
public void setItemRemark(String itemRemark) {
this.itemRemark = itemRemark;
}
public String getStandardType() {
return standardType;
}
public void setStandardType(String standardType) {
this.standardType = standardType;
}
public String getStandardName() {
return standardName;
}
public void setStandardName(String standardName) {
this.standardName = standardName;
}
public int getItemLoop() {
return itemLoop;
}
public void setItemLoop(int itemLoop) {
this.itemLoop = itemLoop;
}
public String getItemLoopType() {
return itemLoopType;
}
public void setItemLoopType(String itemLoopType) {
this.itemLoopType = itemLoopType;
}
public void setEquipmentCode(String equipmentCode) {
this.equipmentCode = equipmentCode;
}
public String getEquipmentCode() {
return equipmentCode;
}
public void setDetailId(String detailId) {
this.detailId = detailId;
}
public String getDetailId() {
return detailId;
}
public String getRepairReach() {
return repairReach;
}
public void setRepairReach(String repairReach) {
this.repairReach = repairReach;
}
public String getDetailReach() {
return detailReach;
}
public void setDetailReach(String detailReach) {
this.detailReach = detailReach;
}
public void setOrderEnd(Date orderEnd) {
this.orderEnd = orderEnd;
}
public Date getOrderEnd() {
return orderEnd;
}
public void setYearMouth(String yearMouth) {
this.yearMouth = yearMouth;
}
public String getYearMouth() {
return yearMouth;
}
public void setOne(String one) {
this.one = one;
}
public String getOne() {
return one;
}
public void setTwo(String two) {
this.two = two;
}
public String getTwo() {
return two;
}
public void setThree(String three) {
this.three = three;
}
public String getThree() {
return three;
}
public void setFour(String four) {
this.four = four;
}
public String getFour() {
return four;
}
public void setFive(String five) {
this.five = five;
}
public String getFive() {
return five;
}
public void setSix(String six) {
this.six = six;
}
public String getSix() {
return six;
}
public void setSeven(String seven) {
this.seven = seven;
}
public String getSeven() {
return seven;
}
public void setEight(String eight) {
this.eight = eight;
}
public String getEight() {
return eight;
}
public void setNine(String nine) {
this.nine = nine;
}
public String getNine() {
return nine;
}
public void setTen(String ten) {
this.ten = ten;
}
public String getTen() {
return ten;
}
public void setEleven(String eleven) {
this.eleven = eleven;
}
public String getEleven() {
return eleven;
}
public void setTwelve(String twelve) {
this.twelve = twelve;
}
public String getTwelve() {
return twelve;
}
public void setThirteen(String thirteen) {
this.thirteen = thirteen;
}
public String getThirteen() {
return thirteen;
}
public void setFourteen(String fourteen) {
this.fourteen = fourteen;
}
public String getFourteen() {
return fourteen;
}
public void setFifteen(String fifteen) {
this.fifteen = fifteen;
}
public String getFifteen() {
return fifteen;
}
public void setSixteen(String sixteen) {
this.sixteen = sixteen;
}
public String getSixteen() {
return sixteen;
}
public void setSeventeen(String seventeen) {
this.seventeen = seventeen;
}
public String getSeventeen() {
return seventeen;
}
public void setEighteen(String eighteen) {
this.eighteen = eighteen;
}
public String getEighteen() {
return eighteen;
}
public void setNineteen(String nineteen) {
this.nineteen = nineteen;
}
public String getNineteen() {
return nineteen;
}
public void setTwenty(String twenty) {
this.twenty = twenty;
}
public String getTwenty() {
return twenty;
}
public void setTwentyOne(String twentyOne) {
this.twentyOne = twentyOne;
}
public String getTwentyOne() {
return twentyOne;
}
public void setTwentyTwo(String twentyTwo) {
this.twentyTwo = twentyTwo;
}
public String getTwentyTwo() {
return twentyTwo;
}
public void setTwentyThree(String twentyThree) {
this.twentyThree = twentyThree;
}
public String getTwentyThree() {
return twentyThree;
}
public void setTwentyFour(String twentyFour) {
this.twentyFour = twentyFour;
}
public String getTwentyFour() {
return twentyFour;
}
public void setTwentyFive(String twentyFive) {
this.twentyFive = twentyFive;
}
public String getTwentyFive() {
return twentyFive;
}
public void setTwentySix(String twentySix) {
this.twentySix = twentySix;
}
public String getTwentySix() {
return twentySix;
}
public void setTwentySeven(String twentySeven) {
this.twentySeven = twentySeven;
}
public String getTwentySeven() {
return twentySeven;
}
public void setTwentyEight(String twentyEight) {
this.twentyEight = twentyEight;
}
public String getTwentyEight() {
return twentyEight;
}
public void setTwentyNine(String twentyNine) {
this.twentyNine = twentyNine;
}
public String getTwentyNine() {
return twentyNine;
}
public void setThirty(String thirty) {
this.thirty = thirty;
}
public String getThirty() {
return thirty;
}
public void setThirtyOne(String thirtyOne) {
this.thirtyOne = thirtyOne;
}
public String getThirtyOne() {
return thirtyOne;
}
}

@ -4,6 +4,8 @@ import java.util.List;
import com.op.device.domain.EquCheckItem;
import com.op.device.domain.EquPlanDetail;
import com.op.device.domain.WorkCenter;
import com.op.device.domain.dto.SummaryReportDTO;
import com.op.device.domain.vo.EquCheckItemVO;
import org.apache.ibatis.annotations.Param;
@ -94,4 +96,24 @@ public interface EquCheckItemMapper {
* @return
*/
List<EquPlanDetail> checkDelItem(String itemCode);
////////////////////////////////////////////////汇总页面
/**
*
* @param equCheckItem
* @return
*/
List<SummaryReportDTO> getSummaryReport(EquCheckItem equCheckItem);
/**
*
* @return
*/
List<WorkCenter> selectWorkCenter();
/**
*
* @return
*/
List<SummaryReportDTO> selectMatchListByEquipmentCode(SummaryReportDTO summaryReportDTO);
}

@ -2,6 +2,7 @@ package com.op.device.mapper;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.op.device.domain.EquEquipment;
import com.op.device.domain.Equipment;
import java.util.List;
@ -62,4 +63,10 @@ public interface EquEquipmentMapper {
//查询设备类型
List<EquEquipment> getEquipmentTypeList(EquEquipment equEquipment);
// 查询设备组线
List<Equipment> selectEqupmentGroupLine();
// 查询设备信息
List<EquEquipment> selectEquipmentList(EquEquipment equEquipment);
}

@ -0,0 +1,61 @@
package com.op.device.mapper;
import java.util.List;
import com.op.device.domain.EquOperation;
/**
* Mapper
*
* @author Open Platform
* @date 2023-12-13
*/
public interface EquOperationMapper {
/**
*
*
* @param id
* @return
*/
public EquOperation selectEquOperationById(String id);
/**
*
*
* @param equOperation
* @return
*/
public List<EquOperation> selectEquOperationList(EquOperation equOperation);
/**
*
*
* @param equOperation
* @return
*/
public int insertEquOperation(EquOperation equOperation);
/**
*
*
* @param equOperation
* @return
*/
public int updateEquOperation(EquOperation equOperation);
/**
*
*
* @param id
* @return
*/
public int deleteEquOperationById(String id);
/**
*
*
* @param ids
* @return
*/
public int deleteEquOperationByIds(String[] ids);
}

@ -4,7 +4,9 @@ import java.util.List;
import com.op.common.core.web.domain.AjaxResult;
import com.op.device.domain.EquCheckItem;
import com.op.device.domain.EquRepairOrder;
import com.op.device.domain.dto.EquCheckItemDTO;
import com.op.device.domain.dto.SummaryReportDTO;
import com.op.device.domain.vo.EquCheckItemVO;
/**
@ -66,11 +68,29 @@ public interface IEquCheckItemService {
* list
* @return
*/
AjaxResult getEquipmentList();
public AjaxResult getEquipmentList();
/**
* codecode
* @return
*/
AjaxResult getEquipmentCodeListByItemCode(String itemCode);
public AjaxResult getEquipmentCodeListByItemCode(String itemCode);
/**
*
* @return
*/
public AjaxResult getSummaryReport(EquCheckItem equCheckItem);
/**
*
* @return
*/
public AjaxResult getWorkCenter();
/**
*
* @return
*/
public AjaxResult selectMatchListByEquipmentCode(SummaryReportDTO summaryReportDTO);
}

@ -0,0 +1,60 @@
package com.op.device.service;
import java.util.List;
import com.op.device.domain.EquOperation;
/**
* Service
*
* @author Open Platform
* @date 2023-12-13
*/
public interface IEquOperationService {
/**
*
*
* @param id
* @return
*/
public EquOperation selectEquOperationById(String id);
/**
*
*
* @param equOperation
* @return
*/
public List<EquOperation> selectEquOperationList(EquOperation equOperation);
/**
*
*
* @param equOperation
* @return
*/
public int insertEquOperation(EquOperation equOperation);
/**
*
*
* @param equOperation
* @return
*/
public int updateEquOperation(EquOperation equOperation);
/**
*
*
* @param ids
* @return
*/
public int deleteEquOperationByIds(String[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteEquOperationById(String id);
}

@ -101,4 +101,10 @@ public interface IEquPlanService {
* @return
*/
AjaxResult initUpdatePlanInfo(EquPlan equPlan);
/**
* 线
* @return
*/
AjaxResult getGroupLine();
}

@ -693,6 +693,9 @@ public class DevicePDAServiceImpl implements IDevicePDAService {
//维修工单结束时间
equRepairWorkOrder.setWorkEndTime(DateUtils.getNowDate());
//计算维修工单用时
//获取工单的开始时间
////更新每一项点检/巡检检查项信息
//判空
if(StringUtils.isNotEmpty(equRepairWorkOrder.getDetailList())){

@ -1,7 +1,9 @@
package com.op.device.service.impl;
import java.text.DateFormat;
import java.text.Format;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.List;
import com.baomidou.dynamic.datasource.annotation.DS;
@ -9,10 +11,9 @@ import com.op.common.core.context.SecurityContextHolder;
import com.op.common.core.utils.DateUtils;
import com.op.common.core.utils.uuid.IdUtils;
import com.op.common.core.web.domain.AjaxResult;
import com.op.device.domain.EquCheckItemDetail;
import com.op.device.domain.EquItemEquipment;
import com.op.device.domain.EquPlanDetail;
import com.op.device.domain.*;
import com.op.device.domain.dto.EquCheckItemDTO;
import com.op.device.domain.dto.SummaryReportDTO;
import com.op.device.domain.vo.EquCheckItemVO;
import com.op.device.mapper.EquCheckItemDetailMapper;
import com.op.device.mapper.EquItemEquipmentMapper;
@ -160,14 +161,14 @@ public class EquCheckItemServiceImpl implements IEquCheckItemService {
@Transactional
public AjaxResult updateEquCheckItem(EquCheckItemDTO equCheckItemDTO) {
// 校验检查项是否已存在
// 检验
EquCheckItem checkQuery = new EquCheckItem();
checkQuery.setItemType(equCheckItemDTO.getItemType());
checkQuery.setItemName(equCheckItemDTO.getItemName());
List<EquCheckItem> check = equCheckItemMapper.selectEquCheckItemList(checkQuery);
if (check.size() > 0) {
if (check.size()>0) {
if (!check.get(0).getItemCode().equals(equCheckItemDTO.getItemCode())) {
return error(500, "检查项已存在!不可修改!");
return error(500,"检查项已存在!不可修改!");
}
}
@ -329,4 +330,41 @@ public class EquCheckItemServiceImpl implements IEquCheckItemService {
equItemEquipmentMapper.insertEquItemEquipment(equItemEquipment);
}
}
/**
*
* @return
*/
@Override
@DS("#header.poolName")
public AjaxResult getSummaryReport(EquCheckItem equCheckItem){
List<SummaryReportDTO> summaryReportList = equCheckItemMapper.getSummaryReport(equCheckItem);
return success(summaryReportList);
}
/**
*
*
* @return
*/
@Override
@DS("#header.poolName")
public AjaxResult getWorkCenter() {
List<WorkCenter> workCenterList = equCheckItemMapper.selectWorkCenter();
return success(workCenterList);
}
/**
*
* @return
*/
@Override
@DS("#header.poolName")
public AjaxResult selectMatchListByEquipmentCode(SummaryReportDTO summaryReportDTO){
DateFormat df = new SimpleDateFormat("yyyy-MM");
summaryReportDTO.setYearMouth(df.format(summaryReportDTO.getOrderEnd()));
List<SummaryReportDTO> matchList = equCheckItemMapper.selectMatchListByEquipmentCode(summaryReportDTO);
return success(matchList);
}
}

@ -0,0 +1,97 @@
package com.op.device.service.impl;
import java.util.List;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.op.common.core.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.op.device.mapper.EquOperationMapper;
import com.op.device.domain.EquOperation;
import com.op.device.service.IEquOperationService;
/**
* Service
*
* @author Open Platform
* @date 2023-12-13
*/
@Service
public class EquOperationServiceImpl implements IEquOperationService {
@Autowired
private EquOperationMapper equOperationMapper;
/**
*
*
* @param id
* @return
*/
@Override
@DS("#header.poolName")
public EquOperation selectEquOperationById(String id) {
return equOperationMapper.selectEquOperationById(id);
}
/**
*
*
* @param equOperation
* @return
*/
@Override
@DS("#header.poolName")
public List<EquOperation> selectEquOperationList(EquOperation equOperation) {
return equOperationMapper.selectEquOperationList(equOperation);
}
/**
*
*
* @param equOperation
* @return
*/
@Override
@DS("#header.poolName")
public int insertEquOperation(EquOperation equOperation) {
equOperation.setCreateTime(DateUtils.getNowDate());
return equOperationMapper.insertEquOperation(equOperation);
}
/**
*
*
* @param equOperation
* @return
*/
@Override
@DS("#header.poolName")
public int updateEquOperation(EquOperation equOperation) {
equOperation.setUpdateTime(DateUtils.getNowDate());
return equOperationMapper.updateEquOperation(equOperation);
}
/**
*
*
* @param ids
* @return
*/
@Override
@DS("#header.poolName")
public int deleteEquOperationByIds(String[] ids) {
return equOperationMapper.deleteEquOperationByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
@DS("#header.poolName")
public int deleteEquOperationById(String id) {
return equOperationMapper.deleteEquOperationById(id);
}
}

@ -243,7 +243,8 @@ public class EquPlanServiceImpl implements IEquPlanService {
@Override
@DS("#header.poolName")
public List<EquEquipment> getEquList(EquEquipment equEquipment) {
return equEquipmentMapper.selectEquEquipmentList(equEquipment);
equEquipment.setEquipmentCategory("0");
return equEquipmentMapper.selectEquipmentList(equEquipment);
}
/**
@ -362,6 +363,16 @@ public class EquPlanServiceImpl implements IEquPlanService {
return success(plan);
}
/**
* 线
* @return
*/
@Override
@DS("#header.poolName")
public AjaxResult getGroupLine() {
return success(equEquipmentMapper.selectEqupmentGroupLine());
}
/**
*
*

@ -182,6 +182,29 @@ public class EquRepairWorkOrderServiceImpl implements IEquRepairWorkOrderService
//更新标准表
for(EquOrderStandard equOrderStandard:equRepairWorkOrder.getStandardList()){
//先删除每个检查项标准图片
String imageType = "4";
equOrderStandardMapper.deleteBaseFileBySourceId(equOrderStandard.getId(),imageType);
//图片批量新增
if (StringUtils.isNotEmpty(equOrderStandard.getPicturePath())) {
String[] ids = equOrderStandard.getPicturePath().split(",");
List<BaseFileData> files = new ArrayList<>();
BaseFileData file = null;
for (String id : ids) {
file = new BaseFileData();
file.setFileId(IdUtils.fastSimpleUUID());
file.setFileName(id.split("&fileName=")[1]);
file.setFileAddress(id);
file.setSourceId(equOrderStandard.getId());
file.setCreateBy(SecurityUtils.getUsername());
file.setCreateTime(new Date());
//图片类型 维修后
file.setImageType("4");
files.add(file);
}
equOrderStandardMapper.insertBaseFileBatch(files);
}
equOrderStandard.setUpdateBy(SecurityUtils.getUsername());
equOrderStandard.setUpdateTime(DateUtils.getNowDate());
equOrderStandardMapper.updateStandardAfterRepair(equOrderStandard);

@ -86,48 +86,44 @@ public class EquSpareApplyServiceImpl implements IEquSpareApplyService {
@Override
@DS("#header.poolName")
public AjaxResult insertEquSpareApply(EquSpareApply equSpareApply) {
try {
//equSpareApply.getSpareApplyLists().size() 是在维修申领备件的时候进行的操作 批量新增
if(equSpareApply.getSpareApplyLists().size() >= 1){
List<EquSpareApply> list = equSpareApply.getSpareApplyLists();
for(EquSpareApply applyList:list){
applyList.setApplyId(IdUtils.fastSimpleUUID());
//生成领料单code //申领单号
String serialNum = String.format("%03d", equSpareApplyMapper.selectSerialNumber());
String code = DateUtils.dateTimeNow(DateUtils.YYYYMMDD) + applyList.getWorkCode().substring(2);
//申领单号
equSpareApply.setApplyCode("AW" + code + serialNum);
//领用时间
applyList.setApplyTime(DateUtils.getNowDate());
//申领人
applyList.setApplyPeople(SecurityUtils.getUsername());
//工厂号
HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();
String key = "#header.poolName";
applyList.setFactoryCode(request.getHeader(key.substring(8)).replace("ds_",""));
//创建人、创建时间
applyList.setCreateTime(DateUtils.getNowDate());
applyList.setCreateBy(SecurityUtils.getUsername());
equSpareApplyMapper.insertEquSpareApply(applyList);
//更新完备品申领单后,更新库存
SparePartsLedger sparePartsLedger = new SparePartsLedger();
sparePartsLedger.setStorageId(applyList.getStorageId());
BigDecimal applyNum = applyList.getSpareQuantity();
BigDecimal amount = applyList.getAmount();
sparePartsLedger.setAmount(amount.subtract(applyNum));
sparePartsLedgerMapper.updateSparePartsLedger(sparePartsLedger);
if(equSpareApply.getSpareApplyLists() != null){
List<EquSpareApply> list = equSpareApply.getSpareApplyLists();
for(EquSpareApply applyList:list){
applyList.setApplyId(IdUtils.fastSimpleUUID());
String serialNum = String.format("%03d", equSpareApplyMapper.selectSerialNumber());
if(applyList.getWorkCode() != null){
String code = applyList.getWorkCode();
applyList.setApplyCode("AW" + code.substring(2) + serialNum);
}
}else{
//领用时间
applyList.setApplyTime(DateUtils.getNowDate());
//申领人
applyList.setApplyPeople(SecurityUtils.getUsername());
//工厂号
HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();
String key = "#header.poolName";
applyList.setFactoryCode(request.getHeader(key.substring(8)).replace("ds_",""));
//创建人、创建时间
applyList.setCreateTime(DateUtils.getNowDate());
applyList.setCreateBy(SecurityUtils.getUsername());
equSpareApplyMapper.insertEquSpareApply(applyList);
//更新完备品申领单后,更新库存
SparePartsLedger sparePartsLedger = new SparePartsLedger();
sparePartsLedger.setStorageId(applyList.getStorageId());
BigDecimal applyNum = applyList.getSpareQuantity();
BigDecimal amount = applyList.getAmount();
sparePartsLedger.setAmount(amount.subtract(applyNum));
sparePartsLedgerMapper.updateSparePartsLedger(sparePartsLedger);
}
}else if(equSpareApply.getSpareApplyLists() == null){
equSpareApply.setApplyId(IdUtils.fastSimpleUUID());
String serialNum = String.format("%03d", equSpareApplyMapper.selectSerialNumber());
if(equSpareApply.getWorkCode().length() == 12){
//生成领料单code 十五位单号
equSpareApply.setApplyCode("A" + equSpareApply.getWorkCode() + serialNum);
}else if(equSpareApply.getWorkCode().length() > 12){
equSpareApply.setApplyCode("AW" + equSpareApply.getWorkCode().substring(2) + serialNum);
}else{
if(equSpareApply.getWorkCode() != null){
String code = equSpareApply.getWorkCode();
equSpareApply.setApplyCode("AW" + code.substring(2) + serialNum);
} else{
//普通申领单
equSpareApply.setApplyCode("AN" + DateUtils.dateTimeNow(DateUtils.YYYYMMDD) + equSpareApply.getSpareUseEquipment() + serialNum);
equSpareApply.setApplyCode("AW" + DateUtils.dateTimeNow(DateUtils.YYYYMMDD) + equSpareApply.getSpareUseEquipment() + serialNum);
}
//领用时间
equSpareApply.setApplyTime(DateUtils.getNowDate());
@ -151,9 +147,6 @@ public class EquSpareApplyServiceImpl implements IEquSpareApplyService {
sparePartsLedgerMapper.updateSparePartsLedger(sparePartsLedger);
}
return success("新增申领记录成功!");
} catch (Exception e) {
return error();
}
}
/**

@ -75,7 +75,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</select>
<select id="selectAllEquipmentList" resultType="com.op.device.domain.vo.EquCheckItemVO">
select equipment_name AS 'equipmentName',equipment_code AS 'equipmentCode' from base_equipment where del_flag = '0'
select equipment_name AS 'equipmentName',equipment_code AS 'equipmentCode' from base_equipment where del_flag = '0' and equipment_category = '0'
</select>
<select id="selectCheckItemByEquipmentCode" parameterType="String" resultMap="EquCheckItemResult">
@ -168,4 +168,49 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{itemId}
</foreach>
</delete>
<select id="getSummaryReport" resultType="com.op.device.domain.dto.SummaryReportDTO">
SELECT
eci.item_type_name AS itemTypeName,
eci.item_name AS itemName,
eci.item_method AS itemMethod,
eci.item_tools AS itemTools,
eci.item_loop_type AS itemLoopType,
eci.item_loop AS itemLoop,
ecid.detail_id AS detailId,
ecid.standard_type AS standardType,
ecid.standard_name AS standardName
FROM equ_check_item eci
left join equ_check_item_detail ecid on eci.item_code = ecid.parent_code
where eci.del_flag = '0'
</select>
<select id="selectWorkCenter" resultType="com.op.device.domain.WorkCenter">
select
factory_name AS factoryName,
factory_code AS factoryCode
from sys_factory
where f_type = 'c'
</select>
<select id="selectMatchListByEquipmentCode" resultType="com.op.device.domain.dto.SummaryReportDTO">
SELECT
eo.order_id AS orderId,
eo.equipment_code AS equipmentCode,
eo.order_end AS orderEnd,
eod.item_type_name AS itemTypeName,
eod.item_name AS itemName,
eos.id AS id,
eos.standard_name AS standardName,
eos.detail_reach AS detailReach,
eos.repair_reach AS repairReach
from equ_order eo
left join equ_order_detail eod on eo.order_code = eod.order_code
left join equ_order_standard eos on eod.id = eos.parent_code
where eo.del_flag = '0'
and eo.order_status = '1'
and eo.equipment_code = #{equipmentCode}
and CONVERT(varchar,order_end,21) like concat('%',#{yearMouth}, '%')
</select>
</mapper>

@ -45,10 +45,11 @@
<result property="plcPort" column="plc_port" />
<result property="delFlag" column="del_flag" />
<result property="sapAsset" column="sap_asset" />
<result property="equipmentCategory" column="equipment_category" />
</resultMap>
<sql id="selectEquEquipmentVo">
select equipment_id, equipment_code, equipment_name, equipment_brand, equipment_spec, equipment_type_id, equipment_type_code, equipment_type_name, workshop_id, workshop_code, workshop_name, status, remark, attr1, attr2, attr3, attr4, create_by, create_time, update_by, update_time, workshop_section, equipment_location, hourly_unit_price, equipment_barcode, equipment_barcode_image, manufacturer, supplier, use_life, buy_time, asset_original_value, net_asset_value, asset_head, fixed_asset_code, department, unit_working_hours, plc_ip, plc_port, del_flag, sap_asset from base_equipment
select equipment_id, equipment_code, equipment_name, equipment_brand, equipment_spec, equipment_type_id, equipment_type_code, equipment_type_name, workshop_id, workshop_code, workshop_name, status, remark, attr1, attr2, attr3, attr4, create_by, create_time, update_by, update_time, workshop_section, equipment_location, hourly_unit_price, equipment_barcode, equipment_barcode_image, manufacturer, supplier, use_life, buy_time, asset_original_value, net_asset_value, asset_head, fixed_asset_code, department, unit_working_hours, plc_ip, plc_port, del_flag, sap_asset,equipment_category from base_equipment
</sql>
<select id="selectEquEquipmentList" parameterType="EquEquipment" resultMap="EquEquipmentResult">
@ -87,6 +88,7 @@
<if test="plcIp != null and plcIp != ''"> and plc_ip = #{plcIp}</if>
<if test="plcPort != null "> and plc_port = #{plcPort}</if>
<if test="sapAsset != null and sapAsset != ''"> and sap_asset = #{sapAsset}</if>
<if test="equipmentCategory != null and equipmentCategory != ''"> and equipment_category = #{equipmentCategory}</if>
</where>
</select>
@ -138,6 +140,7 @@
<if test="plcPort != null">plc_port,</if>
<if test="delFlag != null">del_flag,</if>
<if test="sapAsset != null">sap_asset,</if>
<if test="equipmentCategory != null">equipment_category,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="equipmentId != null">#{equipmentId},</if>
@ -180,6 +183,7 @@
<if test="plcPort != null">#{plcPort},</if>
<if test="delFlag != null">#{delFlag},</if>
<if test="sapAsset != null">#{sapAsset},</if>
<if test="equipmentCategory != null">#{equipmentCategory},</if>
</trim>
</insert>
@ -225,6 +229,7 @@
<if test="plcPort != null">plc_port = #{plcPort},</if>
<if test="delFlag != null">del_flag = #{delFlag},</if>
<if test="sapAsset != null">sap_asset = #{sapAsset},</if>
<if test="equipmentCategory != null">equipment_category = #{equipmentCategory},</if>
</trim>
where equipment_id = #{equipmentId}
</update>
@ -247,4 +252,29 @@
group by equipment_type_code,equipment_type_name
</select>
<select id="selectEqupmentGroupLine" resultMap="EquEquipmentResult">
select equipment_code, equipment_name
from base_equipment
where del_flag = '0'
and equipment_category = '1'
</select>
<select id="selectEquipmentList" parameterType="EquEquipment" resultMap="EquEquipmentResult">
select be.equipment_code,be.equipment_name,be.equipment_type_name,be.workshop_name
from base_equipment be
<where>
<if test="equipmentCode != null and equipmentCode != ''">and equipment_code like concat('%',
#{equipmentCode}, '%')
</if>
<if test="equipmentName != null and equipmentName != ''">and equipment_name like concat('%',
#{equipmentName}, '%')
</if>
and be.del_flag = '0'
and be.equipment_code in (select bae.auxiliary_equipment_code
from equ_bind_auxiliary_equipment bae
where bae.equipment_code = #{groupLine}
)
</where>
</select>
</mapper>

@ -0,0 +1,163 @@
<?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.device.mapper.EquOperationMapper">
<resultMap type="EquOperation" id="EquOperationResult">
<result property="id" column="id" />
<result property="workshop" column="workshop" />
<result property="groupLine" column="group_Line" />
<result property="equipmentName" column="equipment_name" />
<result property="equipmentCode" column="equipment_code" />
<result property="faultTime" column="fault_time" />
<result property="actualOperationTime" column="actual_operation_time" />
<result property="operationTime" column="operation_time" />
<result property="failureRate" column="failure_rate" />
<result property="failureDescription" column="failure_description" />
<result property="reasonAnalyze" column="reason_analyze" />
<result property="handlingMethod" column="handling_method" />
<result property="repairPerson" column="repair_person" />
<result property="equStatusDes" column="equ_status_des" />
<result property="replaceSpare" column="replace_spare" />
<result property="factoryCode" column="factory_code" />
<result property="attr1" column="attr1" />
<result property="attr2" column="attr2" />
<result property="attr3" column="attr3" />
<result property="delFlag" column="del_flag" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
</resultMap>
<sql id="selectEquOperationVo">
select id, workshop, group_Line, equipment_name, equipment_code, fault_time, actual_operation_time, operation_time, failure_rate, failure_description, reason_analyze, handling_method, repair_person, equ_status_des, replace_spare, factory_code, attr1, attr2, attr3, del_flag, create_by, create_time, update_by, update_time from equ_operation
</sql>
<select id="selectEquOperationList" parameterType="EquOperation" resultMap="EquOperationResult">
<include refid="selectEquOperationVo"/>
<where>
<if test="workshop != null and workshop != ''"> and workshop = #{workshop}</if>
<if test="groupLine != null and groupLine != ''"> and group_Line = #{groupLine}</if>
<if test="equipmentName != null and equipmentName != ''"> and equipment_name like concat('%', #{equipmentName}, '%')</if>
<if test="equipmentCode != null and equipmentCode != ''"> and equipment_code = #{equipmentCode}</if>
<if test="faultTime != null and faultTime != ''"> and fault_time = #{faultTime}</if>
<if test="actualOperationTime != null and actualOperationTime != ''"> and actual_operation_time = #{actualOperationTime}</if>
<if test="operationTime != null and operationTime != ''"> and operation_time = #{operationTime}</if>
<if test="failureRate != null and failureRate != ''"> and failure_rate = #{failureRate}</if>
<if test="failureDescription != null and failureDescription != ''"> and failure_description = #{failureDescription}</if>
<if test="reasonAnalyze != null and reasonAnalyze != ''"> and reason_analyze = #{reasonAnalyze}</if>
<if test="handlingMethod != null and handlingMethod != ''"> and handling_method = #{handlingMethod}</if>
<if test="repairPerson != null and repairPerson != ''"> and repair_person = #{repairPerson}</if>
<if test="equStatusDes != null and equStatusDes != ''"> and equ_status_des = #{equStatusDes}</if>
<if test="replaceSpare != null and replaceSpare != ''"> and replace_spare = #{replaceSpare}</if>
<if test="factoryCode != null and factoryCode != ''"> and factory_code = #{factoryCode}</if>
<if test="attr1 != null and attr1 != ''"> and attr1 = #{attr1}</if>
<if test="attr2 != null and attr2 != ''"> and attr2 = #{attr2}</if>
<if test="attr3 != null and attr3 != ''"> and attr3 = #{attr3}</if>
</where>
</select>
<select id="selectEquOperationById" parameterType="String" resultMap="EquOperationResult">
<include refid="selectEquOperationVo"/>
where id = #{id}
</select>
<insert id="insertEquOperation" parameterType="EquOperation">
insert into equ_operation
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">id,</if>
<if test="workshop != null">workshop,</if>
<if test="groupLine != null">group_Line,</if>
<if test="equipmentName != null">equipment_name,</if>
<if test="equipmentCode != null">equipment_code,</if>
<if test="faultTime != null">fault_time,</if>
<if test="actualOperationTime != null">actual_operation_time,</if>
<if test="operationTime != null">operation_time,</if>
<if test="failureRate != null">failure_rate,</if>
<if test="failureDescription != null">failure_description,</if>
<if test="reasonAnalyze != null">reason_analyze,</if>
<if test="handlingMethod != null">handling_method,</if>
<if test="repairPerson != null">repair_person,</if>
<if test="equStatusDes != null">equ_status_des,</if>
<if test="replaceSpare != null">replace_spare,</if>
<if test="factoryCode != null">factory_code,</if>
<if test="attr1 != null">attr1,</if>
<if test="attr2 != null">attr2,</if>
<if test="attr3 != null">attr3,</if>
<if test="delFlag != null and delFlag != ''">del_flag,</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>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="id != null">#{id},</if>
<if test="workshop != null">#{workshop},</if>
<if test="groupLine != null">#{groupLine},</if>
<if test="equipmentName != null">#{equipmentName},</if>
<if test="equipmentCode != null">#{equipmentCode},</if>
<if test="faultTime != null">#{faultTime},</if>
<if test="actualOperationTime != null">#{actualOperationTime},</if>
<if test="operationTime != null">#{operationTime},</if>
<if test="failureRate != null">#{failureRate},</if>
<if test="failureDescription != null">#{failureDescription},</if>
<if test="reasonAnalyze != null">#{reasonAnalyze},</if>
<if test="handlingMethod != null">#{handlingMethod},</if>
<if test="repairPerson != null">#{repairPerson},</if>
<if test="equStatusDes != null">#{equStatusDes},</if>
<if test="replaceSpare != null">#{replaceSpare},</if>
<if test="factoryCode != null">#{factoryCode},</if>
<if test="attr1 != null">#{attr1},</if>
<if test="attr2 != null">#{attr2},</if>
<if test="attr3 != null">#{attr3},</if>
<if test="delFlag != null and delFlag != ''">#{delFlag},</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>
</trim>
</insert>
<update id="updateEquOperation" parameterType="EquOperation">
update equ_operation
<trim prefix="SET" suffixOverrides=",">
<if test="workshop != null">workshop = #{workshop},</if>
<if test="groupLine != null">group_Line = #{groupLine},</if>
<if test="equipmentName != null">equipment_name = #{equipmentName},</if>
<if test="equipmentCode != null">equipment_code = #{equipmentCode},</if>
<if test="faultTime != null">fault_time = #{faultTime},</if>
<if test="actualOperationTime != null">actual_operation_time = #{actualOperationTime},</if>
<if test="operationTime != null">operation_time = #{operationTime},</if>
<if test="failureRate != null">failure_rate = #{failureRate},</if>
<if test="failureDescription != null">failure_description = #{failureDescription},</if>
<if test="reasonAnalyze != null">reason_analyze = #{reasonAnalyze},</if>
<if test="handlingMethod != null">handling_method = #{handlingMethod},</if>
<if test="repairPerson != null">repair_person = #{repairPerson},</if>
<if test="equStatusDes != null">equ_status_des = #{equStatusDes},</if>
<if test="replaceSpare != null">replace_spare = #{replaceSpare},</if>
<if test="factoryCode != null">factory_code = #{factoryCode},</if>
<if test="attr1 != null">attr1 = #{attr1},</if>
<if test="attr2 != null">attr2 = #{attr2},</if>
<if test="attr3 != null">attr3 = #{attr3},</if>
<if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteEquOperationById" parameterType="String">
delete from equ_operation where id = #{id}
</delete>
<delete id="deleteEquOperationByIds" parameterType="String">
delete from equ_operation where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

@ -74,7 +74,7 @@
<if test="planLoopStart != null "> and plan_loop_start = #{planLoopStart}</if>
<if test="planLoopEnd != null "> and plan_loop_end = #{planLoopEnd}</if>
<if test="orderStart != null "> and order_start = #{orderStart}</if>
<if test="orderEnd != null "> and order_end = #{orderEnd}</if>
<if test="orderEnd != null "> and order_end = #{ord5erEnd}</if>
<if test="orderStatus != null and orderStatus != ''"> and order_status = #{orderStatus}</if>
<if test="orderCost != null "> and order_cost = #{orderCost}</if>
<if test="planPerson != null and planPerson != ''"> and plan_person like concat('%', #{planPerson}, '%')</if>

@ -41,6 +41,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="delFlag" column="del_flag" />
<result property="factoryCode" column="factory_code" />
<result property="faultType" column="fault_type" />
<result property="equipmentStatusDescription" column="equipment_status_description" />
<!--设备-->
<result property="equipmentName" column="equipment_name" />
<result property="equipmentSpec" column="equipment_spec" />
@ -85,7 +87,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</sql>
<sql id="selectEquRepairWorkOrderVo">
select work_id, order_id, order_code, work_code,work_handle, work_plan_time, work_plan_down_time, order_relevance, work_person, work_team, work_outsource, work_down_machine, equipment_code, work_reason, work_fault_desc, work_start_time,work_end_time,work_cost_time, work_cost, work_status,out_work_id, out_work_code, attr1, attr2, attr3, create_by, create_time, update_time, update_by, del_flag, factory_code ,fault_type from equ_repair_work_order
select work_id, order_id, order_code, work_code,work_handle, work_plan_time, work_plan_down_time, order_relevance, work_person, work_team, work_outsource, work_down_machine, equipment_code, work_reason, work_fault_desc, work_start_time,work_end_time,work_cost_time, work_cost, work_status,out_work_id, out_work_code, attr1, attr2, attr3, create_by, create_time, update_time, update_by, del_flag, factory_code ,fault_type,equipment_status_description from equ_repair_work_order
</sql>
<select id="selectEquRepairWorkOrderList" parameterType="EquRepairWorkOrder" resultMap="EquRepairWorkOrderResult">
@ -125,6 +127,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
erwo.del_flag,
erwo.factory_code,
erwo.fault_type,
erwo.equipment_status_description,
be.equipment_name,
et.team_name,
et.team_person
@ -204,6 +207,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
erwo.del_flag,
erwo.factory_code,
erwo.fault_type,
erwo.equipment_status_description,
be.equipment_name,
et.team_name,
et.team_person
@ -252,6 +256,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
erwo.update_by,
erwo.factory_code,
erwo.fault_type,
erwo.equipment_status_description,
be.equipment_name,
be.equipment_spec,
be.equipment_type_name,
@ -316,6 +321,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="delFlag != null">del_flag,</if>
<if test="factoryCode != null">factory_code,</if>
<if test="faultType != null">fault_type,</if>
<if test="equipmentStatusDescription != null">equipment_status_description,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="workId != null">#{workId},</if>
@ -353,6 +359,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="delFlag != null">#{delFlag},</if>
<if test="factoryCode != null">#{factoryCode},</if>
<if test="faultType != null">#{fault_type},</if>
<if test="equipmentStatusDescription != null">equipment_status_description,</if>
</trim>
</insert>
@ -393,6 +400,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="delFlag != null">del_flag = #{delFlag},</if>
<if test="factoryCode != null">factory_code = #{factoryCode},</if>
<if test="faultType != null">fault_type = #{faultType},</if>
<if test="equipmentStatusDescription != null">equipment_status_description = #{equipmentStatusDescription},</if>
</trim>
where work_id = #{workId}
and del_flag = '0'

@ -32,6 +32,26 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="factoryCode" column="factory_code" />
<result property="sapFactoryCode" column="sap_factory_code" />
<result property="delFlag" column="del_flag" />
<!--附属表-->
<result property="id" column="id" />
<result property="primaryCode" column="primary_code" />
<result property="ownEquipmentName" column="own_equipment_name" />
<result property="unitQuantity" column="unit_quantity" />
<result property="safeStock" column="safe_stock" />
<result property="unitPrice" column="unit_price" />
<result property="procurementMethod" column="procurement_method" />
<result property="procurementCycle" column="procurement_cycle" />
<result property="openingBalance" column="opening_balance" />
<result property="outputRecords" column="output_records" />
<result property="inputRecords" column="input_records" />
<result property="endInventory" column="end_inventory" />
<result property="endMoney" column="end_money" />
<result property="createBy" column="create_by" />
<result property="factoryCode" column="factory_code" />
<result property="substituteParts" column="substitute_parts" />
<result property="ownEquipmentCode" column="own_equipment_code" />
</resultMap>
<sql id="selectSparePartsLedgerVo">
@ -67,53 +87,99 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</sql>
<select id="selectSparePartsLedgerList" parameterType="SparePartsLedger" resultMap="SparePartsLedgerResult">
<include refid="selectSparePartsLedgerVo"/>
select
womsn.storage_id,
womsn.storage_type,
womsn.material_code,
womsn.material_desc,
womsn.amount,
womsn.storage_amount,
womsn.sap_factory_code,
womsn.wl_name,
womsn.del_flag,
womsn.spare_use_life,
womsn.spare_name,
womsn.spare_mode,
womsn.spare_manufacturer,
womsn.spare_supplier,
womsn.spare_replacement_cycle,
womsn.spare_measurement_unit,
womsn.spare_conversion_unit,
womsn.spare_conversion_ratio,
womsn.spare_inventory_floor,
womsn.spare_inventory_upper,
womsn.spare_type,
womsn.create_by,
womsn.gmt_create,
womsn.last_modified_by,
womsn.gmt_modified,
womsn.active_flag,
womsn.factory_code,
womsna.id,
womsna.primary_code,
womsna.own_equipment_name,
womsna.unit_quantity,
womsna.safe_stock,
womsna.unit_price,
womsna.procurement_method,
womsna.procurement_cycle,
womsna.opening_balance,
womsna.output_records,
womsna.input_records,
womsna.end_inventory,
womsna.end_money,
womsna.substitute_parts,
womsna.own_equipment_code
from wms_ods_mate_storage_news womsn
left join wms_ods_mate_storage_news_attached womsna on womsn.material_code = womsna.primary_code
<where>
<if test="storageId != null and storageId != ''"> and storage_id = #{storageId}</if>
<if test="whCode != null and whCode != ''"> and wh_code = #{whCode}</if>
<if test="regionCode != null and regionCode != ''"> and region_code = #{regionCode}</if>
<if test="waCode != null and waCode != ''"> and wa_code = #{waCode}</if>
<if test="storageType != null and storageType != ''"> and storage_type = #{storageType}</if>
<if test="wlCode != null and wlCode != ''"> and wl_code = #{wlCode}</if>
<if test="materialCode != null and materialCode != ''"> and material_code like concat('%', #{materialCode}, '%')</if>
<if test="materialDesc != null and materialDesc != ''"> and material_desc like concat('%', #{materialDesc}, '%')</if>
<if test="amount != null "> and amount = #{amount}</if>
<if test="storageAmount != null "> and storage_amount = #{storageAmount}</if>
<if test="occupyAmount != null "> and occupy_amount = #{occupyAmount}</if>
<if test="lpn != null and lpn != ''"> and lpn = #{lpn}</if>
<if test="productBatch != null and productBatch != ''"> and product_batch = #{productBatch}</if>
<if test="receiveDate != null "> and receive_date = #{receiveDate}</if>
<if test="productDate != null "> and product_date = #{productDate}</if>
<if test="userDefined1 != null and userDefined1 != ''"> and user_defined1 = #{userDefined1}</if>
<if test="userDefined2 != null and userDefined2 != ''"> and user_defined2 = #{userDefined2}</if>
<if test="userDefined3 != null and userDefined3 != ''"> and user_defined3 = #{userDefined3}</if>
<if test="userDefined4 != null and userDefined4 != ''"> and user_defined4 = #{userDefined4}</if>
<if test="userDefined5 != null and userDefined5 != ''"> and user_defined5 = #{userDefined5}</if>
<if test="userDefined6 != null and userDefined6 != ''"> and user_defined6 = #{userDefined6}</if>
<if test="userDefined7 != null and userDefined7 != ''"> and user_defined7 = #{userDefined7}</if>
<if test="userDefined8 != null and userDefined8 != ''"> and user_defined8 = #{userDefined8}</if>
<if test="userDefined9 != null and userDefined9 != ''"> and user_defined9 = #{userDefined9}</if>
<if test="userDefined10 != null and userDefined10 != ''"> and user_defined10 = #{userDefined10}</if>
<if test="gmtCreate != null "> and gmt_create = #{gmtCreate}</if>
<if test="lastModifiedBy != null and lastModifiedBy != ''"> and last_modified_by = #{lastModifiedBy}</if>
<if test="gmtModified != null "> and gmt_modified = #{gmtModified}</if>
<if test="activeFlag != null and activeFlag != ''"> and active_flag = #{activeFlag}</if>
<if test="factoryCode != null and factoryCode != ''"> and factory_code = #{factoryCode}</if>
<if test="sapFactoryCode != null and sapFactoryCode != ''"> and sap_factory_code = #{sapFactoryCode}</if>
<if test="wlName != null and wlName != ''"> and wl_name like concat('%', #{wlName}, '%')</if>
<if test="spareUseLife != null and spareUseLife != ''"> and spare_use_life = #{spareUseLife}</if>
<if test="spareName != null and spareName != ''"> and spare_name like concat('%', #{spareName}, '%')</if>
<if test="spareMode != null and spareMode != ''"> and spare_mode like concat('%', #{spareMode}, '%')</if>
<if test="spareManufacturer != null and spareManufacturer != ''"> and spare_manufacturer = #{spareManufacturer}</if>
<if test="spareSupplier != null and spareSupplier != ''"> and spare_supplier = #{spareSupplier}</if>
<if test="spareReplacementCycle != null and spareReplacementCycle != ''"> and spare_replacement_cycle = #{spareReplacementCycle}</if>
<if test="spareMeasurementUnit != null and spareMeasurementUnit != ''"> and spare_measurement_unit = #{spareMeasurementUnit}</if>
<if test="spareConversionUnit != null and spareConversionUnit != ''"> and spare_conversion_unit = #{spareConversionUnit}</if>
<if test="spareConversionRatio != null and spareConversionRatio != ''"> and spare_conversion_ratio = #{spareConversionRatio}</if>
<if test="spareInventoryFloor != null and spareInventoryFloor != ''"> and spare_inventory_floor = #{spareInventoryFloor}</if>
<if test="spareInventoryUpper != null and spareInventoryUpper != ''"> and spare_inventory_upper = #{spareInventoryUpper}</if>
<if test="spareType != null and spareType != ''"> and spare_type = #{spareType}</if>
and del_flag = '0'
<if test="storageId != null and storageId != ''"> and womsn.storage_id = #{storageId}</if>
<if test="whCode != null and whCode != ''"> and womsn.wh_code = #{whCode}</if>
<if test="regionCode != null and regionCode != ''"> and womsn.region_code = #{regionCode}</if>
<if test="waCode != null and waCode != ''"> and womsn.wa_code = #{waCode}</if>
<if test="storageType != null and storageType != ''"> and womsn.storage_type = #{storageType}</if>
<if test="wlCode != null and wlCode != ''"> and womsn.wl_code = #{wlCode}</if>
<if test="materialCode != null and materialCode != ''"> and womsn.material_code like concat('%', #{materialCode}, '%')</if>
<if test="materialDesc != null and materialDesc != ''"> and womsn.material_desc like concat('%', #{materialDesc}, '%')</if>
<if test="amount != null "> and womsn.amount = #{amount}</if>
<if test="storageAmount != null "> and womsn.storage_amount = #{storageAmount}</if>
<if test="occupyAmount != null "> and womsn.occupy_amount = #{occupyAmount}</if>
<if test="lpn != null and lpn != ''"> and womsn.lpn = #{lpn}</if>
<if test="productBatch != null and productBatch != ''"> and womsn.product_batch = #{productBatch}</if>
<if test="receiveDate != null "> and womsn.receive_date = #{receiveDate}</if>
<if test="productDate != null "> and womsn.product_date = #{productDate}</if>
<if test="userDefined1 != null and userDefined1 != ''"> and womsn.user_defined1 = #{userDefined1}</if>
<if test="userDefined2 != null and userDefined2 != ''"> and womsn.user_defined2 = #{userDefined2}</if>
<if test="userDefined3 != null and userDefined3 != ''"> and womsn.user_defined3 = #{userDefined3}</if>
<if test="userDefined4 != null and userDefined4 != ''"> and womsn.user_defined4 = #{userDefined4}</if>
<if test="userDefined5 != null and userDefined5 != ''"> and womsn.user_defined5 = #{userDefined5}</if>
<if test="userDefined6 != null and userDefined6 != ''"> and womsn.user_defined6 = #{userDefined6}</if>
<if test="userDefined7 != null and userDefined7 != ''"> and womsn.user_defined7 = #{userDefined7}</if>
<if test="userDefined8 != null and userDefined8 != ''"> and womsn.user_defined8 = #{userDefined8}</if>
<if test="userDefined9 != null and userDefined9 != ''"> and womsn.user_defined9 = #{userDefined9}</if>
<if test="userDefined10 != null and userDefined10 != ''"> and womsn.user_defined10 = #{userDefined10}</if>
<if test="gmtCreate != null "> and womsn.gmt_create = #{gmtCreate}</if>
<if test="lastModifiedBy != null and lastModifiedBy != ''"> and womsn.last_modified_by = #{lastModifiedBy}</if>
<if test="gmtModified != null "> and womsn.gmt_modified = #{gmtModified}</if>
<if test="activeFlag != null and activeFlag != ''"> and womsn.active_flag = #{activeFlag}</if>
<if test="factoryCode != null and factoryCode != ''"> and womsn.factory_code = #{factoryCode}</if>
<if test="sapFactoryCode != null and sapFactoryCode != ''"> and womsn.sap_factory_code = #{sapFactoryCode}</if>
<if test="wlName != null and wlName != ''"> and womsn.wl_name like concat('%', #{wlName}, '%')</if>
<if test="spareUseLife != null and spareUseLife != ''"> and womsn.spare_use_life = #{spareUseLife}</if>
<if test="spareName != null and spareName != ''"> and womsn.spare_name like concat('%', #{spareName}, '%')</if>
<if test="spareMode != null and spareMode != ''"> and womsn.spare_mode like concat('%', #{spareMode}, '%')</if>
<if test="spareManufacturer != null and spareManufacturer != ''"> and womsn.spare_manufacturer = #{spareManufacturer}</if>
<if test="spareSupplier != null and spareSupplier != ''"> and womsn.spare_supplier like concat('%', #{spareSupplier}, '%')</if>
<if test="spareReplacementCycle != null and spareReplacementCycle != ''"> and womsn.spare_replacement_cycle = #{spareReplacementCycle}</if>
<if test="spareMeasurementUnit != null and spareMeasurementUnit != ''"> and womsn.spare_measurement_unit = #{spareMeasurementUnit}</if>
<if test="spareConversionUnit != null and spareConversionUnit != ''"> and womsn.spare_conversion_unit = #{spareConversionUnit}</if>
<if test="spareConversionRatio != null and spareConversionRatio != ''"> and womsn.spare_conversion_ratio = #{spareConversionRatio}</if>
<if test="spareInventoryFloor != null and spareInventoryFloor != ''"> and womsn.spare_inventory_floor = #{spareInventoryFloor}</if>
<if test="spareInventoryUpper != null and spareInventoryUpper != ''"> and womsn.spare_inventory_upper = #{spareInventoryUpper}</if>
<if test="spareType != null and spareType != ''"> and womsn.spare_type = #{spareType}</if>
<if test="ownEquipmentName != null and ownEquipmentName != ''"> and womsna.own_equipment_name like concat('%', #{ownEquipmentName}, '%')</if>
and womsn.del_flag = '0'
</where>
</select>

@ -67,8 +67,8 @@ public interface MesPrepareDetailMapper {
/**
* idlist
* @param prepareId
* @param workorderCode
* @return
*/
List<MesPrepareDetail> selectPrintPrepareDetailList(String prepareId);
List<MesPrepareDetail> selectPrintPrepareDetailList(String workorderCode);
}

@ -267,7 +267,7 @@ public class IWCInterfaceServiceImpl implements IWCSInterfaceService {
new LinkedBlockingQueue<Runnable>());
try {
dateSources.forEach(dateSource -> {
if("ds_1000".equals(dateSource.get("poolName"))){//只有999白坯工厂有这种情况
if("ds_999".equals(dateSource.get("poolName"))){//只有999白坯工厂有这种情况
logger.info("++++++++++++" + dateSource.get("poolName") + "++++开始++++++++++");
Runnable run = () -> dateBKFunc(dateSource.get("poolName"),tables);
executorService.execute(run);
@ -310,56 +310,64 @@ public class IWCInterfaceServiceImpl implements IWCSInterfaceService {
}
//子工单报工
logger.info("==========================子工单报工开始");
this.reportHzToSap(sHzWorks);
logger.info("==========================子工单报工结束");
mesReportWork.setWorkorderCode(sapWorkOrders.get(0).getWorkorderCode());
MesReportWork pHzWork = mesReportWorkMapper.getReportWorkHz(mesReportWork);
if(pHzWork==null){
return R.fail("未查询到母报工单");
}
//母工单报工
logger.info("==========================母工单报工开始");
pHzWork.setQuantityFeedback(sHzWorks.getQuantityFeedback());
this.reportHzToSap(pHzWork);
logger.info("==========================母工单报工结束");
//最终报工标识:关闭子母工单
MesReportWork endReport = mesReportWorkMapper.getEndReport(pHzWork);
if("1".equals(endReport.getEndReport())){
logger.info("报工======母sap工单编码"+sapWorkOrders.get(0).getWorkorderCodeSap()+
"子sap工单编码"+sapWorkOrders.get(1).getWorkorderCodeSap()
);
//关闭母子订单//订单的订单编码
SapCloseOrderQuery sapCloseOrderQuery = new SapCloseOrderQuery();
sapCloseOrderQuery.setLeadOrder(sapWorkOrders.get(0).getWorkorderCodeSap());
sapCloseOrderQuery.setOrder(sapWorkOrders.get(1).getWorkorderCodeSap());
R closeR = remoteSapService.sapCloseOrder(sapCloseOrderQuery);
logger.info("报工======关闭母子sap工单"+sapCloseOrderQuery.getLeadOrder()+":"+
sapCloseOrderQuery.getOrder()+":"+
closeR.getCode()+","+
closeR.getMsg()+","+
closeR.getData());
MesReportWork rworkVo = new MesReportWork();
rworkVo.setStatus("w3");
rworkVo.setUpdateTime(DateUtils.getNowDate());
rworkVo.setUpdateBy(SecurityUtils.getUsername());
rworkVo.setWorkorderCode(belongWorkOrder);
//pro_work_order status->w3报工--belong_work_order
mesReportWorkMapper.updateOrderWorkStatus(rworkVo);
R sapRson = this.reportHzToSap(sHzWorks);
logger.info("==========================子工单报工结束:"+JSONObject.toJSONString(sapRson));
if(sapRson.getCode()== 200){
//一定是子单报工成功返回后,再母单报工
mesReportWork.setWorkorderCode(sapWorkOrders.get(0).getWorkorderCode());
MesReportWork pHzWork = mesReportWorkMapper.getReportWorkHz(mesReportWork);
if(pHzWork==null){
return R.fail("未查询到母报工单");
}
//母工单报工
logger.info("==========================母工单报工开始");
pHzWork.setQuantityFeedback(sHzWorks.getQuantityFeedback());
pHzWork.setSac1(sHzWorks.getSac1());
R sapR = this.reportHzToSap(pHzWork);
logger.info("==========================母工单报工结束"+JSONObject.toJSONString(sapR));
//最终报工标识且sap报工成功关闭子母工单
MesReportWork endReport = mesReportWorkMapper.getEndReport(pHzWork);
if("1".equals(endReport.getEndReport())&&sapR.getCode()==200){
MesReportWork rworkVo = new MesReportWork();
rworkVo.setStatus("w3");
rworkVo.setUpdateTime(DateUtils.getNowDate());
rworkVo.setUpdateBy(SecurityUtils.getUsername());
rworkVo.setWorkorderCode(belongWorkOrder);
//pro_work_order status->w3报工--belong_work_order
mesReportWorkMapper.updateOrderWorkStatus(rworkVo);
}
}
return R.ok();
}
/**
*
* =sum(/)
* = *
* =
* =
*
*
* =
* = *
* =
* =
* @param workOrder
* @return
*/
private R reportHzToSap(MesReportWork workOrder){
SapRFW sapRFW = new SapRFW();
sapRFW.setAufnr(workOrder.getWorkorderCodeSap());//虚拟工单号
sapRFW.setGamng(workOrder.getQuantityFeedback().toString());//报工数量
SapRFW.lt_gs ltgs = new SapRFW.lt_gs();//生产订单报工工时修改
ltgs.setConf_activity1(workOrder.getSac1());//人工
ltgs.setConf_activity2(workOrder.getSac2());
ltgs.setConf_activity3(workOrder.getSac3());//机器
ltgs.setConf_activity4(workOrder.getSac4());
ltgs.setConf_activity5(workOrder.getSac5());//折旧
ltgs.setConf_activity6(workOrder.getSac6());
ltgs.setConf_activity1(workOrder.getSac1());//机器
BigDecimal newMan = new BigDecimal(workOrder.getSac1())
.multiply(new BigDecimal(workOrder.getSac2()));
ltgs.setConf_activity2(newMan.toString());//人工
ltgs.setConf_activity3(workOrder.getSac1());//折旧
ltgs.setConf_activity4(newMan.toString());//其它
// ltgs.setConf_activity5(workOrder.getSac5());
// ltgs.setConf_activity6(workOrder.getSac6());
sapRFW.setLt_gs(ltgs);
List<SapRFW.lt_hw> lt_hwList =new ArrayList<>();
MesReportWorkConsume consumeqo = new MesReportWorkConsume();
@ -387,6 +395,7 @@ public class IWCInterfaceServiceImpl implements IWCSInterfaceService {
} else {
workOrder.setUploadStatus("2");
workOrder.setUploadMsg(r.getMsg());
return r;
}
workOrder.setUploadTime(DateUtils.getNowDate());
mesReportWorkMapper.updateSyncSapStatus(workOrder);

@ -16,7 +16,7 @@ import com.op.mes.service.IMesPrepareDetailService;
/**
* mesService
*
*
* @author Open Platform
* @date 2023-08-04
*/
@ -29,7 +29,7 @@ public class MesPrepareDetailServiceImpl implements IMesPrepareDetailService {
/**
* mes
*
*
* @param recordId mes
* @return mes
*/
@ -40,7 +40,7 @@ public class MesPrepareDetailServiceImpl implements IMesPrepareDetailService {
/**
* mes
*
*
* @param mesPrepareDetail mes
* @return mes
*/
@ -51,7 +51,7 @@ public class MesPrepareDetailServiceImpl implements IMesPrepareDetailService {
/**
* mes
*
*
* @param mesPrepareDetail mes
* @return
*/
@ -63,7 +63,7 @@ public class MesPrepareDetailServiceImpl implements IMesPrepareDetailService {
/**
* mes
*
*
* @param mesPrepareDetail mes
* @return
*/
@ -75,7 +75,7 @@ public class MesPrepareDetailServiceImpl implements IMesPrepareDetailService {
/**
* mes
*
*
* @param recordIds mes
* @return
*/
@ -86,7 +86,7 @@ public class MesPrepareDetailServiceImpl implements IMesPrepareDetailService {
/**
* mes
*
*
* @param recordId mes
* @return
*/
@ -103,7 +103,7 @@ public class MesPrepareDetailServiceImpl implements IMesPrepareDetailService {
@DS("#header.poolName")
public AjaxResult printPrepareByCode(String workorderCode) {
MesPrepare mesPrepare = mesPrepareMapper.selectMesPrepareByCode(workorderCode);
List<MesPrepareDetail> mesPrepareDetailList = mesPrepareDetailMapper.selectPrintPrepareDetailList(mesPrepare.getPrepareId());
List<MesPrepareDetail> mesPrepareDetailList = mesPrepareDetailMapper.selectPrintPrepareDetailList(workorderCode);
PrintPrepareVo printPrepareVo = new PrintPrepareVo();
printPrepareVo.setMesPrepare(mesPrepare);
printPrepareVo.setMesPrepareDetailList(mesPrepareDetailList);

@ -8,7 +8,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="recordId" column="record_id" />
<result property="prepareId" column="prepare_id" />
<result property="materialCode" column="material_code" />
<result property="materailName" column="material_name" />
<result property="materialName" column="material_name" />
<result property="materailSpc" column="material_spc" />
<result property="unit" column="unit" />
<result property="quantity" column="quantity" />
@ -63,12 +63,22 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
where record_id = #{recordId}
</select>
<select id="selectPrintPrepareDetailList" parameterType="String" resultMap="MesPrepareDetailResult">
select record_id, prepare_id, material_code,material_name, unit,
quantity, status, remark, attr1, attr2, attr3, attr4,
create_by, create_time, update_by, update_time, prod_type, factory_code,fund_quanlity
from mes_prepare_detail
where prepare_id = #{prepareId}
<select id="selectPrintPrepareDetailList" parameterType="String" resultType="com.op.mes.domain.MesPrepareDetail">
select
mp.workorder_name workorderCode,
mpd.material_code materialCode,
mpd.material_name materialName,
mpd.quantity,
mpd.unit,
mpd.status,
mpd.fund_quanlity fundQuanlity,
mpd.factory_code factoryCode,
ow.product_date productDate
from pro_order_workorder ow
left join mes_prepare mp on ow.workorder_code = mp.workorder_code
left join mes_prepare_detail mpd on mp.prepare_id = mpd.prepare_id
where ow.belong_work_order = #{workorderCode}
order by mp.workorder_name desc
</select>
<insert id="insertMesPrepareDetail" parameterType="MesPrepareDetail">

@ -39,63 +39,34 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</resultMap>
<sql id="selectMesPrepareVo">
select prepare_id, workorder_code, workorder_name, parent_order, order_id, order_code, product_id, product_code, prod_type, product_name, product_spc, wet_detail_plan_id, product_date, shift_id, ancestors, status, remark, attr1, attr2, attr3, attr4, create_by, create_time, update_by, update_time, factory_code, material_code, material_name, material_spc, unit, quantity from mes_prepare
select prepare_id, workorder_code, workorder_name, parent_order, order_id, order_code, product_id,
product_code, prod_type, product_name, product_spc, wet_detail_plan_id, product_date,
shift_id, ancestors, status, remark, attr1, attr2, attr3, attr4, create_by, create_time,
update_by, update_time, factory_code, material_code, material_name, material_spc, unit, quantity
from mes_prepare
</sql>
<select id="selectMesPrepareList" parameterType="MesPrepare" resultMap="MesPrepareResult">
<select id="selectMesPrepareList" parameterType="com.op.mes.domain.MesPrepare" resultType="com.op.mes.domain.MesPrepare">
select
ms.prepare_id,
ms.workorder_code,
ms.workorder_name,
ms.parent_order,
ms.order_id,
ms.order_code,
ms.product_id,
ms.product_code,
ms.prod_type,
ms.product_name,
ms.product_spc,
ms.wet_detail_plan_id,
ms.product_date,
ms.shift_id,
ms.ancestors,
ms.status,
ms.remark,
ms.attr1,
ms.attr2,
ms.attr3,
ms.attr4,
ms.create_by,
ms.create_time,
ms.update_by,
ms.update_time,
ms.factory_code,
msd.prepare_id id,
msd.material_code,
msd.material_name,
msd.material_spc,
msd.unit,
msd.quantity
from mes_prepare ms,mes_prepare_detail msd
ms.workorder_name workorderCodeSap,
ow.workorder_code workorderCode,
ow.product_code productCode,
ow.product_name productName,
ow.product_date productDate,
ow.quantity_split quantity,
ow.unit
from mes_prepare ms
left join pro_order_workorder ow on ms.workorder_code = ow.workorder_code
<where>
<if test="workorderCode != null and workorderCode != ''"> and workorder_code like concat('%', #{workorderCode}, '%')</if>
<if test="workorderName != null and workorderName != ''"> and workorder_name like concat('%', #{workorderName}, '%')</if>
<if test="parentOrder != null and parentOrder != ''"> and parent_order = #{parentOrder}</if>
<if test="orderId != null and orderId != ''"> and order_id like concat('%', #{orderId}, '%')</if>
<if test="orderCode != null and orderCode != ''"> and order_code = #{orderCode}</if>
<if test="productId != null and productId != ''"> and product_id = #{productId}</if>
<if test="productCode != null and productCode != ''"> and product_code like concat('%', #{productCode}, '%')</if>
<if test="prodType != null and prodType != ''"> and prod_type = #{prodType}</if>
<if test="productName != null and productName != ''"> and product_name like concat('%', #{productName}, '%')</if>
<if test="productSpc != null and productSpc != ''"> and product_spc = #{productSpc}</if>
<if test="wetDetailPlanId != null and wetDetailPlanId != ''"> and wet_detail_plan_id = #{wetDetailPlanId}</if>
<if test="productDate != null "> and product_date = #{productDate}</if>
<if test="shiftId != null and shiftId != ''"> and shift_id = #{shiftId}</if>
<if test="ancestors != null and ancestors != ''"> and ancestors = #{ancestors}</if>
<if test="status != null and status != ''"> and ms.status = #{status}</if>
<if test="factoryCode != null and factoryCode != ''"> and factory_code = #{factoryCode}</if>
ow.del_flag = '0' and ow.parent_order = '0'
<if test="workorderCode != null and workorderCode != ''"> and ow.workorder_code like concat('%', #{workorderCode}, '%')</if>
<if test="workorderCodeSap != null and workorderCodeSap != ''"> and ms.workorder_name like concat('%', #{workorderCodeSap}, '%')</if>
<if test="productCode != null and productCode != ''"> and ow.product_code like concat('%', #{productCode}, '%')</if>
<if test="productName != null and productName != ''"> and ow.product_name like concat('%', #{productName}, '%')</if>
<if test="productDate != null "> and ow.product_date = #{productDate}</if>
and ms.del_flag = '0'
</where>
order by ow.product_date desc
</select>
<select id="selectMesPrepareByPrepareId" parameterType="String" resultMap="MesPrepareResult">

@ -106,7 +106,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
mrwc.recoil
from mes_report_work_consume mrwc
left join pro_order_workorder pow on pow.workorder_code = mrwc.workorder_code
where mrwc.del_flag = '0'
where mrwc.del_flag = '0' and pow.del_flag = '0'
and pow.parent_order = #{workorderCode}
</select>

@ -319,7 +319,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
from mes_material_transfer_result mt
left join base_equipment equ on mt.equipmentCode = equ.equipment_code
left join pro_order_workorder pow on pow.workorder_id = mt.OrderCode
where 1=1
where mt.rfid_status = '1'
<if test="productDateStart != null "> and CONVERT(varchar(30),mt.update_time, 120) >= #{productDateStart}</if>
<if test="productDateEnd != null "> and #{productDateEnd} > CONVERT(varchar(30),mt.update_time, 120)</if>
<if test="shiftId != null and shiftId != ''">
@ -360,7 +360,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
equipmentCode,
OrderCode
from mes_material_transfer_result
where 1=1
where rfid_status = '1'
<if test="productDateStart != null "> and CONVERT(varchar(30),update_time, 120) >= #{productDateStart}</if>
<if test="productDateEnd != null "> and #{productDateEnd} > CONVERT(varchar(30),update_time, 120)</if>
)mt
@ -466,14 +466,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
select workorder_code_sap workorderCodeSap,
workorder_code workorderCode
from pro_order_workorder
where belong_work_order = #{workorderCode} and del_flag = '0'
where belong_work_order = #{workorderCode} and del_flag = '0' and status = 'w2'
order by parent_order
</select>
<select id="getReportWorkHzList" resultType="com.op.mes.domain.MesReportWork">
select mrw.workorderCode,mrw.productCode,mrw.productName,mrw.machineCode,mrw.machineName,
mrw.shiftCode,mrw.feedbackTime feedbackTimeStr,mrw.quantityFeedback,
mrw.workTime,mrw.useMan,mrw.uploadStatus,mrw.unit,<!--mrw.uploadTime,-->
pow.order_code orderCode,pow.quantity_split quantity
mrw.shiftCode,mrw.quantityFeedback,
mrw.workTime,mrw.useMan,mrw.uploadStatus,mrw.unit,
pow.order_code orderCode,pow.quantity_split quantity,
pow.workorder_code_sap workorderCodeSap,
pow.product_date productDate
from (
select workorder_code workorderCode,
product_code productCode,
@ -481,7 +483,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
machine_code machineCode,
machine_name machineName,
shift_code shiftCode,
CONVERT(varchar(10),feedback_time, 120) feedbackTime,
sum(quantity_feedback) quantityFeedback,
sum(work_time) workTime,
sum(use_man) useMan,
@ -495,18 +496,19 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="productName != null and productName != ''"> and product_name like concat('%', #{productName}, '%')</if>
<if test="machineCode != null and machineCode != ''"> and machine_code = #{machineCode}</if>
<if test="machineName != null and machineName != ''"> and machine_name like concat('%', #{machineName}, '%')</if>
<if test="feedbackTimeStart != null "> and CONVERT(varchar(19),feedback_time, 120) >= #{feedbackTimeStart}</if>
<if test="feedbackTimeEnd != null "> and #{feedbackTimeEnd} >= CONVERT(varchar(19),feedback_time, 120)</if>
<if test="uploadStatus != null and uploadStatus != ''"> and upload_status = #{uploadStatus}</if>
group by workorder_code, product_code,product_name,CONVERT(varchar(10),feedback_time, 120),machine_code,machine_name,shift_code
group by workorder_code, product_code,product_name,machine_code,machine_name,shift_code
,upload_status,unit
<!--,upload_time-->
) mrw
left join pro_order_workorder pow on mrw.workorderCode = pow.workorder_code
<where>
pow.del_flag = '0'
<if test="feedbackTimeStart != null "> and pow.product_date >= #{feedbackTimeStart}</if>
<if test="feedbackTimeEnd != null "> and #{feedbackTimeEnd} >= pow.product_date</if>
<if test="orderCode != null and orderCode != ''"> and pow.order_code like concat('%', #{orderCode}, '%')</if>
</where>
order by mrw.feedbackTime desc
order by pow.product_date desc
</select>
<select id="getReportList" resultType="com.op.mes.domain.MesReportWork">
select
@ -552,26 +554,32 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
mrw.quantity_feedback quantityFeedback,
mrw.product_code productCode,
mrw.product_name productName,
mrw.sac1,
mrw.sac2
<!--,
rte.tec_machine sac1,
rte.tec_man sac2,
rte.tec_depreciation sac3,
rte.tec_other sac4,
rte.tec_conf_acivity5 sac5,
rte.tec_conf_acivity6 sac6
-->
from (
select
workorder_code,
sum(quantity_feedback) quantity_feedback,
sum(round( work_time/use_man,2)) sac1,
use_man sac2,
product_code,
product_name
from
mes_report_work
where upload_status != #{uploadStatus} and prod_type = #{prodType}
and workorder_code = #{workorderCode}
group by workorder_code,product_code,product_name
group by workorder_code,product_code,product_name,use_man
) mrw
left join pro_order_workorder ow on mrw.workorder_code = ow.workorder_code
left join pro_route rte on rte.route_code = ow.route_code
<!--left join pro_route rte on rte.route_code = ow.route_code-->
</select>
<select id="getEndReport" resultType="com.op.mes.domain.MesReportWork">
select end_report endReport

@ -9,10 +9,7 @@ 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.security.utils.SecurityUtils;
import com.op.quality.domain.QcBomComponent;
import com.op.quality.domain.QcCheckTaskDetail;
import com.op.quality.domain.QcCheckReportIncome;
import com.op.quality.domain.QcSupplier;
import com.op.quality.domain.*;
import com.op.quality.service.IQcCheckReportIncomeService;
import com.op.system.api.domain.SysUser;
import org.apache.commons.lang.StringUtils;
@ -49,7 +46,7 @@ public class QcCheckReportIncomeController extends BaseController {
LocalDate date = LocalDate.now();
LocalDate dateEnd = date.plusDays(1);
DateTimeFormatter dtf = DateTimeFormatter.ofPattern("yyyy-MM-dd");
String dateEndStr = dtf.format(dateEnd)+" 00:00:00";
String dateEndStr = dtf.format(dateEnd)+" 23:59:59";
qcCheckReportIncome.setCheckTimeEnd(dateEndStr);//end
}

@ -3,6 +3,7 @@ package com.op.quality.controller;
import java.util.List;
import javax.servlet.http.HttpServletResponse;
import com.op.quality.domain.QcCheckProject;
import com.op.quality.domain.QcMaterialGroup;
import com.op.quality.service.IQcMaterialGroupService;
import org.springframework.beans.factory.annotation.Autowired;
@ -105,5 +106,15 @@ public class QcCheckTypeProjectController extends BaseController {
public AjaxResult changeStatus(@RequestBody QcCheckTypeProject qcCheckTypeProject) {
return toAjax(qcCheckTypeProjectService.changeStatus(qcCheckTypeProject));
}
@GetMapping("/getProjectInfoList")
public TableDataInfo getProjectInfoList(QcCheckProject qcCheckProject) {
startPage();
List<QcCheckProject> list = qcCheckTypeProjectService.getProjectInfoList(qcCheckProject);
return getDataTable(list);
}
@PostMapping("/submitProjects")
public AjaxResult submitProjects(@RequestBody List<QcCheckTypeProject> typeProjects) {
return toAjax(qcCheckTypeProjectService.submitProjects(typeProjects));
}
}

@ -0,0 +1,89 @@
package com.op.quality.controller;
import com.op.common.core.utils.StringUtils;
import com.op.quality.domain.QcCheckType;
import com.op.quality.domain.QcInterface;
import com.op.quality.service.IQcInterfaceService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import java.util.List;
/**
*
*
* @author zxl
* @date 2023-11-15
*/
@RestController
@RequestMapping("/qcInterface")
public class QcInterfaceController {
@Autowired
private IQcInterfaceService qcInterfaceService;
/**
*/
@GetMapping("/getDictData")
public List<QcInterface> getDictData(QcInterface qcInterface) {
return qcInterfaceService.getDictData(qcInterface);
}
/**
* --
* @param qcInterface
* @return
*/
@PostMapping("/getOverallInfo")
public List<QcInterface> getOverallInfo(@RequestBody QcInterface qcInterface) {
return qcInterfaceService.getOverallInfo(qcInterface);
}
/**
* --
* @param qcInterface
* @return
*/
@PostMapping("/getCheckProjectsPie")
public List<QcInterface> getCheckProjectsPie(@RequestBody QcInterface qcInterface) {
return qcInterfaceService.getCheckProjectsPie(qcInterface);
}
/**
* --
* @param qcInterface
* @return
*/
@PostMapping("/getSupplierBadTOP5")
public List<QcInterface> getSupplierBadTOP5(@RequestBody QcInterface qcInterface) {
return qcInterfaceService.getSupplierBadTOP5(qcInterface);
}
@PostMapping("/getSupplierNoOkList")
public List<QcInterface> getSupplierNoOkList(@RequestBody QcInterface qcInterface) {
return qcInterfaceService.getSupplierNoOkList(qcInterface);
}
/**
* --
* @param qcInterface
* @return
*/
@PostMapping("/getSupplierTaskList")
public List<QcInterface> getSupplierTaskList(@RequestBody QcInterface qcInterface) {
return qcInterfaceService.getSupplierTaskList(qcInterface);
}
/**
* -
* @param qcInterface
* @return
*/
@PostMapping("/getProduceStaticInfo")
public List<QcInterface> getProduceStaticInfo(@RequestBody QcInterface qcInterface) {
return qcInterfaceService.getProduceStaticInfo(qcInterface);
}
}

@ -138,6 +138,15 @@ public class QcStaticTableController extends BaseController {
String key = keyPre+ymd;
QcStaticTable mdata = seriesdtos.get(key);
if(mdata != null){
if(mdata.getaNoOkquality()==null){
mdata.setaNoOkquality(new BigDecimal("0"));
}
if(mdata.getbNoOkquality()==null){
mdata.setbNoOkquality(new BigDecimal("0"));
}
if(mdata.getcNoOkquality()==null){
mdata.setcNoOkquality(new BigDecimal("0"));
}
BigDecimal defectRate = (mdata.getaNoOkquality().add(mdata.getbNoOkquality()).multiply(new BigDecimal("0.65"))
.add(mdata.getcNoOkquality()).multiply(new BigDecimal(0.35)))
.divide(new BigDecimal(mdata.getSampleQuality()))

@ -234,7 +234,7 @@ public class QuaController extends BaseController {
*/
@GetMapping("/pdaMaterialTree")
public AjaxResult pdaMaterialTree(QcMaterialGroup materialGroup) {
DynamicDataSourceContextHolder.push("ds_"+materialGroup.getFactoryCode());
DynamicDataSourceContextHolder.push(materialGroup.getFactoryCode());
return success(qcMaterialGroupService.selectQcMaterialTreeList(materialGroup));
}
@ -244,7 +244,7 @@ public class QuaController extends BaseController {
@GetMapping("/getCheckTypeProjectList")
public TableDataInfo list(QcCheckTypeProject qcCheckTypeProject) {
DynamicDataSourceContextHolder.push("ds_"+qcCheckTypeProject.getFactoryCode());
DynamicDataSourceContextHolder.push(qcCheckTypeProject.getFactoryCode());
startPage();
List<QcCheckTypeProject> list = qcMaterialGroupService.getCheckTypeProjectList(qcCheckTypeProject);
return getDataTable(list);
@ -252,7 +252,7 @@ public class QuaController extends BaseController {
@GetMapping("/getUnqualifiedList")
public TableDataInfo getUnqualifiedList(QcCheckUnqualified qcCheckUnqualified) {
DynamicDataSourceContextHolder.push("ds_"+qcCheckUnqualified.getFactoryCode());
DynamicDataSourceContextHolder.push(qcCheckUnqualified.getFactoryCode());
startPage();
qcCheckUnqualified.setDelFlag("0");
List<QcCheckUnqualified> list = qcCheckUnqualifiedService.selectQcCheckUnqualifiedList(qcCheckUnqualified);
@ -262,7 +262,7 @@ public class QuaController extends BaseController {
/**获取来料工单列表**/
@GetMapping("/getLLWorkOrder")
public TableDataInfo getLLWorkOrder(QcCheckTaskIncome qcCheckTaskIncome) {
DynamicDataSourceContextHolder.push("ds_"+qcCheckTaskIncome.getFactoryCode());
DynamicDataSourceContextHolder.push(qcCheckTaskIncome.getFactoryCode());
startPage();
List<QcCheckTaskIncome> list = qcCheckTaskIncomeService.getLLWorkOrder(qcCheckTaskIncome);
return getDataTable(list);
@ -270,7 +270,7 @@ public class QuaController extends BaseController {
/**获取生产工单列表**/
@GetMapping("/getWorkOrder")
public TableDataInfo getWorkOrder(QcCheckTaskIncome qcCheckTaskIncome) {
DynamicDataSourceContextHolder.push("ds_"+qcCheckTaskIncome.getFactoryCode());
DynamicDataSourceContextHolder.push(qcCheckTaskIncome.getFactoryCode());
startPage();
List<QcCheckTaskIncome> list = qcCheckTaskIncomeService.getWorkOrder(qcCheckTaskIncome);
return getDataTable(list);
@ -278,7 +278,7 @@ public class QuaController extends BaseController {
@PutMapping("/getBatchList")
public List<QcCheckTaskIncome> getBatchList(@RequestBody QcCheckTaskIncome qcCheckTaskIncome) {
DynamicDataSourceContextHolder.push("ds_"+qcCheckTaskIncome.getFactoryCode());
DynamicDataSourceContextHolder.push(qcCheckTaskIncome.getFactoryCode());
return qcCheckTaskIncomeService.getBatchList(qcCheckTaskIncome);
}
}

@ -57,6 +57,43 @@ public class QcCheckProject extends BaseEntity {
private String judge;
private String defectLevel;
private String materialCode;
private String typeCode;
private String groupId;
public String getMaterialCode() {
return materialCode;
}
public void setMaterialCode(String materialCode) {
this.materialCode = materialCode;
}
public String getGroupId() {
return groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getTypeCode() {
return typeCode;
}
public void setTypeCode(String typeCode) {
this.typeCode = typeCode;
}
public String getDefectLevel() {
return defectLevel;
}
public void setDefectLevel(String defectLevel) {
this.defectLevel = defectLevel;
}
public String getJudge() {
return judge;
}

@ -0,0 +1,180 @@
package com.op.quality.domain;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.op.common.core.annotation.Excel;
import com.op.common.core.web.domain.BaseEntity;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
/**
*
*
* @author Open Platform
* @date 2023-10-12
*/
public class QcInterface extends BaseEntity {
private static final long serialVersionUID = 1L;
private String ymdType;
private String ymdTypeName;
private String dictType;
private String factoryCode;
private String quality;
private String ymd;
private String projectName;
private String checkNo;
private String incomeBatchNo;
private String orderNo;
private String materialName;
private String unit;
private String supplierName;
@JsonFormat(pattern = "yyyy-MM-dd")
private String incomeTime;
private String checkStatus;
private String checkResult;
private String checkManName;
private String checkName;
public String getCheckNo() {
return checkNo;
}
public void setCheckNo(String checkNo) {
this.checkNo = checkNo;
}
public String getIncomeBatchNo() {
return incomeBatchNo;
}
public void setIncomeBatchNo(String incomeBatchNo) {
this.incomeBatchNo = incomeBatchNo;
}
public String getOrderNo() {
return orderNo;
}
public void setOrderNo(String orderNo) {
this.orderNo = orderNo;
}
public String getMaterialName() {
return materialName;
}
public void setMaterialName(String materialName) {
this.materialName = materialName;
}
public String getUnit() {
return unit;
}
public void setUnit(String unit) {
this.unit = unit;
}
public String getSupplierName() {
return supplierName;
}
public void setSupplierName(String supplierName) {
this.supplierName = supplierName;
}
public String getIncomeTime() {
return incomeTime;
}
public void setIncomeTime(String incomeTime) {
this.incomeTime = incomeTime;
}
public String getCheckStatus() {
return checkStatus;
}
public void setCheckStatus(String checkStatus) {
this.checkStatus = checkStatus;
}
public String getCheckResult() {
return checkResult;
}
public void setCheckResult(String checkResult) {
this.checkResult = checkResult;
}
public String getCheckManName() {
return checkManName;
}
public void setCheckManName(String checkManName) {
this.checkManName = checkManName;
}
public String getCheckName() {
return checkName;
}
public void setCheckName(String checkName) {
this.checkName = checkName;
}
public String getProjectName() {
return projectName;
}
public void setProjectName(String projectName) {
this.projectName = projectName;
}
public String getYmd() {
return ymd;
}
public void setYmd(String ymd) {
this.ymd = ymd;
}
public String getQuality() {
return quality;
}
public void setQuality(String quality) {
this.quality = quality;
}
public String getFactoryCode() {
return factoryCode;
}
public void setFactoryCode(String factoryCode) {
this.factoryCode = factoryCode;
}
public String getYmdType() {
return ymdType;
}
public void setYmdType(String ymdType) {
this.ymdType = ymdType;
}
public String getYmdTypeName() {
return ymdTypeName;
}
public void setYmdTypeName(String ymdTypeName) {
this.ymdTypeName = ymdTypeName;
}
public String getDictType() {
return dictType;
}
public void setDictType(String dictType) {
this.dictType = dictType;
}
}

@ -7,7 +7,7 @@ import org.apache.ibatis.annotations.Mapper;
/**
* Mapper
*
*
* @author Open Platform
* @date 2023-10-13
*/
@ -15,7 +15,7 @@ import org.apache.ibatis.annotations.Mapper;
public interface QcCheckProjectMapper {
/**
*
*
*
* @param id
* @return
*/
@ -23,7 +23,7 @@ public interface QcCheckProjectMapper {
/**
*
*
*
* @param qcCheckProject
* @return
*/
@ -31,7 +31,7 @@ public interface QcCheckProjectMapper {
/**
*
*
*
* @param qcCheckProject
* @return
*/
@ -39,7 +39,7 @@ public interface QcCheckProjectMapper {
/**
*
*
*
* @param qcCheckProject
* @return
*/
@ -47,7 +47,7 @@ public interface QcCheckProjectMapper {
/**
*
*
*
* @param id
* @return
*/
@ -55,11 +55,12 @@ public interface QcCheckProjectMapper {
/**
*
*
*
* @param ids
* @return
*/
public int deleteQcCheckProjectByIds(String[] ids);
public QcCheckProject selectSerialNumber();
}

@ -1,9 +1,6 @@
package com.op.quality.mapper;
import com.op.quality.domain.QcBomComponent;
import com.op.quality.domain.QcCheckReportIncome;
import com.op.quality.domain.QcCheckTaskDetail;
import com.op.quality.domain.QcSupplier;
import com.op.quality.domain.*;
import com.op.system.api.domain.SysUser;
import org.apache.ibatis.annotations.Mapper;

@ -84,4 +84,6 @@ public interface QcCheckTaskIncomeMapper {
List<SysDictData> getQcUnitList(SysDictData sysDictData);
List<QcCheckTaskIncome> getBatchList(QcCheckTaskIncome qcCheckTaskIncome);
String getTypeCode(String checkType);
}

@ -3,11 +3,13 @@ package com.op.quality.mapper;
import java.util.List;
import java.util.Map;
import com.op.quality.domain.QcCheckProject;
import com.op.quality.domain.QcCheckTaskDetail;
import com.op.quality.domain.QcCheckTypeProject;
import com.op.system.api.domain.SysDictData;
import org.apache.ibatis.annotations.MapKey;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
/**
* Mapper
@ -72,4 +74,7 @@ public interface QcCheckTypeProjectMapper {
List<QcCheckTypeProject> getCheckTypeProjectList(QcCheckTypeProject qcCheckTypeProject);
@MapKey("dictValue")
Map<String, SysDictData> getDictMap(SysDictData sysDictData);
List<QcCheckProject> getProjectInfoList(QcCheckProject qcCheckProject);
int insertQcCheckTypeProjects(@Param("list") List<QcCheckTypeProject> typeProjects);
}

@ -0,0 +1,30 @@
package com.op.quality.mapper;
import com.op.quality.domain.QcCheckProject;
import com.op.quality.domain.QcCheckType;
import com.op.quality.domain.QcInterface;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
/**
* Mapper
*
* @author Open Platform
* @date 2023-10-13
*/
@Mapper
public interface QcInterfaceMapper {
List<QcInterface> getDictData(QcInterface qcInterface);
List<QcInterface> getOverallInfo(QcInterface qcInterface);
List<QcInterface> getCheckProjectsPie(QcInterface qcInterface);
List<QcInterface> getSupplierBadTOP5(QcInterface qcInterface);
List<QcInterface> getSupplierTaskList(QcInterface qcInterface);
List<QcInterface> getSupplierNoOkList(QcInterface qcInterface);
}

@ -5,14 +5,14 @@ import com.op.quality.domain.QcCheckProject;
/**
* Service
*
*
* @author Open Platform
* @date 2023-10-13
*/
public interface IQcCheckProjectService {
/**
*
*
*
* @param id
* @return
*/
@ -20,7 +20,7 @@ public interface IQcCheckProjectService {
/**
*
*
*
* @param qcCheckProject
* @return
*/
@ -28,7 +28,7 @@ public interface IQcCheckProjectService {
/**
*
*
*
* @param qcCheckProject
* @return
*/
@ -36,7 +36,7 @@ public interface IQcCheckProjectService {
/**
*
*
*
* @param qcCheckProject
* @return
*/
@ -44,7 +44,7 @@ public interface IQcCheckProjectService {
/**
*
*
*
* @param ids
* @return
*/
@ -52,7 +52,7 @@ public interface IQcCheckProjectService {
/**
*
*
*
* @param id
* @return
*/

@ -71,4 +71,5 @@ public interface IQcCheckReportIncomeService {
List<QcCheckTaskDetail> getCkeckProjectList(QcCheckTaskDetail qcCheckTaskDetail);
public List<QcCheckReportIncome> getPrintData(QcCheckReportIncome qcCheckReportIncome);
}

@ -1,18 +1,20 @@
package com.op.quality.service;
import java.util.List;
import com.op.quality.domain.QcCheckProject;
import com.op.quality.domain.QcCheckTypeProject;
/**
* Service
*
*
* @author Open Platform
* @date 2023-10-17
*/
public interface IQcCheckTypeProjectService {
/**
*
*
*
* @param id
* @return
*/
@ -20,7 +22,7 @@ public interface IQcCheckTypeProjectService {
/**
*
*
*
* @param qcCheckTypeProject
* @return
*/
@ -28,7 +30,7 @@ public interface IQcCheckTypeProjectService {
/**
*
*
*
* @param qcCheckTypeProject
* @return
*/
@ -36,7 +38,7 @@ public interface IQcCheckTypeProjectService {
/**
*
*
*
* @param qcCheckTypeProject
* @return
*/
@ -44,7 +46,7 @@ public interface IQcCheckTypeProjectService {
/**
*
*
*
* @param ids
* @return
*/
@ -52,7 +54,7 @@ public interface IQcCheckTypeProjectService {
/**
*
*
*
* @param id
* @return
*/
@ -61,4 +63,7 @@ public interface IQcCheckTypeProjectService {
*
*/
public int changeStatus(QcCheckTypeProject qcCheckTypeProject);
List<QcCheckProject> getProjectInfoList(QcCheckProject qcCheckProject);
int submitProjects(List<QcCheckTypeProject> typeProjects);
}

@ -0,0 +1,29 @@
package com.op.quality.service;
import com.op.quality.domain.QcCheckType;
import com.op.quality.domain.QcInterface;
import java.util.List;
/**
*
* @author Open Platform
* @date 2023-10-13
*/
public interface IQcInterfaceService {
List<QcInterface> getDictData(QcInterface qcInterface);
List<QcInterface> getOverallInfo(QcInterface qcInterface);
List<QcInterface> getCheckProjectsPie(QcInterface qcInterface);
List<QcInterface> getSupplierBadTOP5(QcInterface qcInterface);
List<QcInterface> getSupplierTaskList(QcInterface qcInterface);
List<QcInterface> getSupplierNoOkList(QcInterface qcInterface);
List<QcInterface> getProduceStaticInfo(QcInterface qcInterface);
}

@ -196,6 +196,7 @@ public class QcCheckReportIncomeServiceImpl implements IQcCheckReportIncomeServi
}
@Override
@DS("#header.poolName")
public List<QcCheckReportIncome> getPrintData(QcCheckReportIncome qcCheckReportIncome) {
return null;
}

@ -135,6 +135,8 @@ public class QcCheckTaskIncomeServiceImpl implements IQcCheckTaskIncomeService {
qcCheckTaskIncome.setRecordId(beLongId);
qcCheckTaskIncome.setFactoryCode(factoryCode);
qcCheckTaskIncome.setCreateTime(nowDate);
//String typeCode = qcCheckTaskIncomeMapper.getTypeCode(qcCheckTaskIncome.getCheckType());
qcCheckTaskIncome.setTypeCode("material");//大检验节点
qcCheckTaskIncomeMapper.insertQcCheckTaskIncome(qcCheckTaskIncome);
/**qc_check_task_detail**/
for(QcCheckTaskDetail item:items){
@ -321,7 +323,7 @@ public class QcCheckTaskIncomeServiceImpl implements IQcCheckTaskIncomeService {
@Override
public int commitCheckResults(List<QcCheckTaskDetail> details) {
DynamicDataSourceContextHolder.push("ds_"+details.get(0).getFactoryCode());
DynamicDataSourceContextHolder.push(details.get(0).getFactoryCode());
Date nowTime = DateUtils.getNowDate();
String factoryCode = details.get(0).getFactoryCode();
String updateBy = details.get(0).getUpdateBy();
@ -341,8 +343,9 @@ public class QcCheckTaskIncomeServiceImpl implements IQcCheckTaskIncomeService {
QcCheckTaskIncome qcCheckTask = new QcCheckTaskIncome();
qcCheckTask.setUpdateBy(updateBy);
qcCheckTask.setRecordId(belongId);
qcCheckTask.setCheckResult("2");//检测状态0待检测1检测中2检测完成
qcCheckTask.setCheckStatus("2");//检测状态0待检测1检测中2检测完成
qcCheckTask.setUpdateTime(nowTime);
qcCheckTask.setCheckTime(nowTime);
qcCheckTask.setCheckResult(result);//检验结果Y合格 N不合格
/**qc_check_task**/
n = qcCheckTaskIncomeMapper.updateQcCheckTask(qcCheckTask);

@ -126,6 +126,7 @@ public class QcCheckTaskProduceServiceImpl implements IQcCheckTaskProduceService
qcCheckTaskProduce.setRecordId(beLongId);
qcCheckTaskProduce.setFactoryCode(factoryCode);
qcCheckTaskProduce.setCreateTime(nowDate);
qcCheckTaskProduce.setTypeCode("produce");//大检验节点
qcCheckTaskProduceMapper.insertQcCheckTaskProduce(qcCheckTaskProduce);
/**qc_check_task_detail**/
for(QcCheckTaskDetail item:items){

@ -127,6 +127,7 @@ public class QcCheckTaskWarehousingServiceImpl implements IQcCheckTaskWarehousin
qcCheckTaskWarehousing.setRecordId(beLongId);
qcCheckTaskWarehousing.setFactoryCode(factoryCode);
qcCheckTaskWarehousing.setCreateTime(nowDate);
qcCheckTaskWarehousing.setTypeCode("product");//大检验节点
qcCheckTaskWarehousingMapper.insertQcCheckTaskWarehousing(qcCheckTaskWarehousing);
/**qc_check_task_detail**/
for(QcCheckTaskDetail item:items){

@ -1,5 +1,6 @@
package com.op.quality.service.impl;
import java.util.Date;
import java.util.List;
import java.util.Map;
@ -8,6 +9,7 @@ import com.baomidou.dynamic.datasource.toolkit.DynamicDataSourceContextHolder;
import com.op.common.core.utils.DateUtils;
import com.op.common.core.utils.uuid.IdUtils;
import com.op.common.security.utils.SecurityUtils;
import com.op.quality.domain.QcCheckProject;
import com.op.system.api.domain.SysDictData;
import org.apache.commons.lang.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
@ -131,4 +133,27 @@ public class QcCheckTypeProjectServiceImpl implements IQcCheckTypeProjectService
qcCheckTypeProject.setUpdateTime(DateUtils.getNowDate());
return qcCheckTypeProjectMapper.updateQcCheckTypeProject(qcCheckTypeProject);
}
@Override
@DS("#header.poolName")
public List<QcCheckProject> getProjectInfoList(QcCheckProject qcCheckProject) {
return qcCheckTypeProjectMapper.getProjectInfoList(qcCheckProject);
}
@Override
@DS("#header.poolName")
public int submitProjects(List<QcCheckTypeProject> typeProjects) {
int m = 0;
Date nowTime = DateUtils.getNowDate();
String createBy = SecurityUtils.getUsername();
for(QcCheckTypeProject typeProject:typeProjects){
typeProject.setId(IdUtils.fastSimpleUUID());
typeProject.setCreateBy(createBy);
typeProject.setCreateTime(nowTime);
}
m = qcCheckTypeProjectMapper.insertQcCheckTypeProjects(typeProjects);
return m;
}
}

@ -0,0 +1,127 @@
package com.op.quality.service.impl;
import com.baomidou.dynamic.datasource.toolkit.DynamicDataSourceContextHolder;
import com.op.common.core.utils.DateUtils;
import com.op.quality.domain.QcCheckType;
import com.op.quality.domain.QcInterface;
import com.op.quality.mapper.QcInterfaceMapper;
import com.op.quality.service.IQcInterfaceService;
import com.op.system.api.domain.SysDictData;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.util.CollectionUtils;
import java.math.BigDecimal;
import java.math.RoundingMode;
import java.time.LocalDate;
import java.util.Calendar;
import java.util.List;
/**
* Service
*
* @author Open Platform
* @date 2023-10-13
*/
@Service
public class QcInterfaceServiceImpl implements IQcInterfaceService {
@Autowired
private QcInterfaceMapper qcInterfaceMapper;
@Override
public List<QcInterface> getDictData(QcInterface qcInterface) {
DynamicDataSourceContextHolder.push("master");
return qcInterfaceMapper.getDictData(qcInterface);
}
@Override
public List<QcInterface> getOverallInfo(QcInterface qcInterface) {
DynamicDataSourceContextHolder.push(qcInterface.getFactoryCode());
String nowYMD = DateUtils.getDate();
qcInterface.setYmd(nowYMD);
List<QcInterface> dtos = qcInterfaceMapper.getOverallInfo(qcInterface);
if(!CollectionUtils.isEmpty(dtos)&&dtos.size()==2){
QcInterface qif = new QcInterface();
qif.setYmdTypeName("okRate");
if(dtos.get(1).getQuality().equals("0")){
qif.setQuality("100%");
}else{
BigDecimal okRate = (new BigDecimal(dtos.get(0).getQuality())
.subtract(new BigDecimal(dtos.get(1).getQuality())))
.multiply(new BigDecimal("100"))
.divide(new BigDecimal(dtos.get(0).getQuality()),2, RoundingMode.HALF_UP);
qif.setQuality(okRate.toString()+"%");
}
dtos.add(qif);
}
return dtos;
}
@Override
public List<QcInterface> getCheckProjectsPie(QcInterface qcInterface) {
DynamicDataSourceContextHolder.push(qcInterface.getFactoryCode());
String nowYMD = DateUtils.getDate();
qcInterface.setYmd(nowYMD);
List<QcInterface> dtos = qcInterfaceMapper.getCheckProjectsPie(qcInterface);
return dtos;
}
@Override
public List<QcInterface> getSupplierBadTOP5(QcInterface qcInterface) {
DynamicDataSourceContextHolder.push(qcInterface.getFactoryCode());
String nowYMD = DateUtils.getDate();
qcInterface.setYmd(nowYMD);
List<QcInterface> dtos = qcInterfaceMapper.getSupplierBadTOP5(qcInterface);
return dtos;
}
@Override
public List<QcInterface> getSupplierTaskList(QcInterface qcInterface) {
DynamicDataSourceContextHolder.push(qcInterface.getFactoryCode());
String nowYMD = DateUtils.getDate();
qcInterface.setYmd(nowYMD);
List<QcInterface> dtos = qcInterfaceMapper.getSupplierTaskList(qcInterface);
for(QcInterface dto:dtos){
String[] ymdArray = dto.getIncomeTime().split("-");
LocalDate date1 = LocalDate.of(Integer.parseInt(ymdArray[0]),
Integer.parseInt(ymdArray[1]),
Integer.parseInt(ymdArray[2]));
LocalDate date2 = LocalDate.now();
if(date1.compareTo(date2)<0){
dto.setCheckStatus("逾期未检");
}else {
dto.setCheckStatus("0".equals(dto.getCheckStatus()) ? "待检测" : "检测完成");
}
dto.setCheckResult("Y".equals(dto.getCheckResult())?"合格":"不合格");
}
return dtos;
}
@Override
public List<QcInterface> getSupplierNoOkList(QcInterface qcInterface) {
DynamicDataSourceContextHolder.push(qcInterface.getFactoryCode());
String nowYMD = DateUtils.getDate();
qcInterface.setYmd(nowYMD);
List<QcInterface> dtos = qcInterfaceMapper.getSupplierNoOkList(qcInterface);
for(QcInterface dto:dtos){
dto.setCheckStatus("0".equals(dto.getCheckStatus())?"待检测":"检测完成");
dto.setCheckResult("Y".equals(dto.getCheckResult())?"合格":"不合格");
}
return dtos;
}
@Override
public List<QcInterface> getProduceStaticInfo(QcInterface qcInterface) {
DynamicDataSourceContextHolder.push(qcInterface.getFactoryCode());
String nowYMD = DateUtils.getDate();
qcInterface.setYmd(nowYMD);
List<QcInterface> dtos = qcInterfaceMapper.getSupplierNoOkList(qcInterface);
return dtos;
}
}

@ -194,7 +194,9 @@ public class QcMaterialGroupServiceImpl implements IQcMaterialGroupService {
Map<String,SysDictData> dictMap = qcCheckTypeProjectMapper.getDictMap(sData);
if(dictMap != null){
for(QcCheckTypeProject dto:dtos){
dto.setUnit(dictMap.get(dto.getUnit()).getDictLabel());
if(StringUtils.isNotBlank(dto.getUnit())){
dto.setUnit(dictMap.get(dto.getUnit()).getDictLabel());
}
}
}
return dtos;

@ -126,7 +126,7 @@ public class QcProCheckServiceImpl implements QcProCheckService {
@Override
public List<QcCheckTaskDetail> getCheckTaskDetailList(QcCheckTaskDetail qcCheckTaskDetail) {
DynamicDataSourceContextHolder.push("ds_"+qcCheckTaskDetail.getFactoryCode());
DynamicDataSourceContextHolder.push(qcCheckTaskDetail.getFactoryCode());
return qcCheckTaskIncomeMapper.getCkeckProjectList(qcCheckTaskDetail);
}

@ -146,6 +146,7 @@ public class QcUserMaterialServiceImpl implements IQcUserMaterialService {
public List<QcUserMaterial> getList(QcUserMaterial qcUserMaterial) {
List<QcUserMaterial> dto = qcUserMaterialMapper.getUserMaterialListUndo(qcUserMaterial);
qcUserMaterial.setMaterialName(null);
List<QcUserMaterial> selected = qcUserMaterialMapper.getUserMaterialListDo(qcUserMaterial);
dto.addAll(selected);

@ -22,13 +22,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="delFlag" column="del_flag" />
<result property="samplePlan" column="sample_plan" />
<result property="judge" column="judge" />
<result property="defectLevel" column="defect_level" />
</resultMap>
<sql id="selectQcCheckProjectVo">
select id, order_num, rule_name, property_code, check_mode, check_tool, unit_code, check_standard,
attr1, create_by, create_time, update_by, update_time, factory_code, del_flag,sample_plan,
judge
judge,defect_level
from qc_check_project
</sql>
@ -74,6 +75,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="delFlag != null">del_flag,</if>
<if test="samplePlan != null">sample_plan,</if>
<if test="judge != null">judge,</if>
<if test="defectLevel != null">defect_level,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="id != null">#{id},</if>
@ -93,6 +96,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="delFlag != null">#{delFlag},</if>
<if test="samplePlan != null">#{samplePlan},</if>
<if test="judge != null">#{judge},</if>
<if test="defectLevel != null">#{defectLevel},</if>
</trim>
</insert>
@ -115,6 +119,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="delFlag != null">del_flag = #{delFlag},</if>
<if test="samplePlan != null">sample_plan = #{samplePlan},</if>
<if test="judge != null">judge = #{judge},</if>
<if test="defectLevel != null">defect_level = #{defectLevel},</if>
</trim>
where id = #{id}
</update>
@ -135,4 +140,5 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
FROM qc_check_project
WHERE CONVERT(varchar(10),create_time, 120) = CONVERT(varchar(10),GETDATE(), 120)
</select>
</mapper>

@ -154,6 +154,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
where powb.del_flag = '0' and pow.del_flag = '0'
and pow.workorder_code = #{workorderCode}
</select>
<select id="getTypeCode" resultType="java.lang.String">
select type_code from qc_check_type where order_code = #{checkType}
</select>
<insert id="insertQcCheckTaskIncome" parameterType="QcCheckTaskIncome">
insert into qc_check_task
@ -188,6 +191,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="factoryCode != null and factoryCode != ''">factory_code,</if>
<if test="delFlag != null">del_flag,</if>
<if test="checkType != null">check_type,</if>
<if test="typeCode != null">type_code,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="recordId != null">#{recordId},</if>
@ -220,6 +224,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="factoryCode != null and factoryCode != ''">#{factoryCode},</if>
<if test="delFlag != null">#{delFlag},</if>
<if test="checkType != null">#{checkType},</if>
<if test="typeCode != null">#{typeCode},</if>
</trim>
</insert>

@ -145,6 +145,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="factoryCode != null and factoryCode != ''">factory_code,</if>
<if test="delFlag != null">del_flag,</if>
<if test="checkType != null">check_type,</if>
<if test="typeCode != null">type_code,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="recordId != null">#{recordId},</if>
@ -181,6 +182,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="factoryCode != null and factoryCode != ''">#{factoryCode},</if>
<if test="delFlag != null">#{delFlag},</if>
<if test="checkType != null">#{checkType},</if>
<if test="typeCode != null">#{typeCode},</if>
</trim>
</insert>

@ -128,6 +128,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="factoryCode != null and factoryCode != ''">factory_code,</if>
<if test="delFlag != null">del_flag,</if>
<if test="checkType != null">check_type,</if>
<if test="typeCode != null">type_code,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="recordId != null">#{recordId},</if>
@ -159,6 +160,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="factoryCode != null and factoryCode != ''">#{factoryCode},</if>
<if test="delFlag != null">#{delFlag},</if>
<if test="checkType != null">#{checkType},</if>
<if test="typeCode != null">#{typeCode},</if>
</trim>
</insert>

@ -152,8 +152,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
SELECT
ctp.id,
ctp.project_id projectId,
cp.rule_name ruleName,
cp.property_code propertyCode,
qcp.rule_name ruleName,
qcp.property_code propertyCode,
ctp.type_id typeId,
ct.check_name,
ctp.standard_value standardValue,
@ -166,11 +166,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
qcp.check_tool checkTool,
qcp.check_mode checkMode
FROM qc_check_type_project ctp
LEFT JOIN qc_check_project cp ON ctp.project_id = cp.id
LEFT JOIN qc_check_project qcp ON ctp.project_id = qcp.id
left join qc_check_type ct on ct.id = ctp.type_id
left join base_product p on p.product_code = ctp.material_code
<where>
AND ctp.del_flag = '0' AND cp.del_flag = '0'
AND ctp.del_flag = '0' AND qcp.del_flag = '0'
<if test="groupId != null and groupId != ''"> and ctp.group_id = #{groupId}</if>
</where>
order by ctp.type_id
@ -231,6 +231,24 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="sort != null">#{sort},</if>
</trim>
</insert>
<insert id="insertQcCheckTypeProjects">
insert into qc_check_type_project(
id,project_id,project_no,type_id,
standard_value,upper_diff,down_diff,unit,
sample,sort,
create_by,create_time,
group_id,material_code,property_code
)values
<foreach collection="list" index="index" item="item" separator=",">
(
#{item.id},#{item.projectId},#{item.projectNo},#{item.typeId},
#{item.standardValue},#{item.upperDiff},#{item.downDiff},#{item.unit},
#{item.sample},#{item.sort},
#{item.createBy},#{item.createTime},
#{item.groupId},#{item.materialCode},#{item.propertyCode}
)
</foreach>
</insert>
<update id="updateQcCheckTypeProject" parameterType="QcCheckTypeProject">
update qc_check_type_project
@ -270,4 +288,27 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{id}
</foreach>
</delete>
<select id="getProjectInfoList" resultType="com.op.quality.domain.QcCheckProject">
select
id,
order_num orderNum,
rule_name ruleName,
property_code propertyCode,
check_mode checkMode,
check_tool checkTool,
unit_code unitCode,
check_standard checkStandard,
sample_plan samplePlan,
judge ,
defect_level defectLevel
from qc_check_project
where del_flag = '0'
<if test="ruleName != null">and rule_name like concat('%',#{ruleName},'%') </if>
and id not in(
select project_id from qc_check_type_project
where type_id = #{typeCode}
<if test="samplePlan != null">and sample_plan = #{samplePlan}</if>
<if test="materialCode != null">and material_code = #{materialCode} </if>
)
</select>
</mapper>

@ -101,7 +101,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
from wms_raw_order_in wroi
left join base_supplier bs on bs.supplier_code = wroi.supply_code
where wroi.active_flag = '1' and wroi.quality_status = '0'
<if test="orderNo != null">and wroi.order_no like contact like ('%',#{orderNo})</if>
<if test="orderNo != null">and wroi.order_no like concat like ('%',#{orderNo})</if>
</select>
<select id="getWorkOrder" resultType="com.op.quality.domain.QcCheckTaskIncome">
select
@ -114,7 +114,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
product_date incomeTime
from pro_order_workorder
where status != 'w5' and parent_order != '0' and workorder_code_sap is not null
<if test="orderNo != null">and workorder_code_sap like contact like ('%',#{orderNo})</if>
<if test="orderNo != null">and workorder_code_sap like concat like ('%',#{orderNo})</if>
order by product_date desc
</select>

@ -0,0 +1,157 @@
<?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.QcInterfaceMapper">
<select id="getDictData" resultType="com.op.quality.domain.QcInterface">
select dict_label ymdTypeName,
dict_value ymdType
from sys_dict_data
where dict_type = #{dictType} and status = '0'
</select>
<select id="getOverallInfo" resultType="com.op.quality.domain.QcInterface">
select count(0) quality,'all' ymdTypeName
from wms_raw_order_in
where active_flag = '1'
<if test='ymdType=="yyyy"'>
and CONVERT(varchar(4),receipt_time, 120) = SUBSTRING(#{ymd},0,5)
</if>
<if test='ymdType=="mm"'>
and CONVERT(varchar(7),receipt_time, 120) =SUBSTRING(#{ymd},0,8)
</if>
<if test='ymdType=="dd"'>
and CONVERT(varchar(10),receipt_time, 120) = SUBSTRING(#{ymd},0,11)
</if>
union ALL
select count(0),'unOk'
from qc_check_unqualified qcu
left join qc_check_type qct on qcu.type = qct.order_code
where qct.type_code = #{typeCode} and qcu.del_flag = '0'
<if test='ymdType=="yyyy"'>
and CONVERT(varchar(4),qcu.create_time, 120) = SUBSTRING(#{ymd},0,5)
</if>
<if test='ymdType=="mm"'>
and CONVERT(varchar(7),qcu.create_time, 120) = SUBSTRING(#{ymd},0,8)
</if>
<if test='ymdType=="dd"'>
and CONVERT(varchar(10),qcu.create_time, 120) = SUBSTRING(#{ymd},0,11)
</if>
</select>
<select id="getCheckProjectsPie" resultType="com.op.quality.domain.QcInterface">
select count(0) quality,
qctd.project_no,
qctd.rule_name projectName
from qc_check_task_detail qctd
left join qc_check_task qct on qctd.belong_to = qct.record_id
where qct.check_result = 'N' and qct.type_code = #{typeCode}
<if test='ymdType=="yyyy"'>
and CONVERT(varchar(4),qctd.update_time, 120) = SUBSTRING(#{ymd},0,5)
</if>
<if test='ymdType=="mm"'>
and CONVERT(varchar(7),qcu.update_time, 120) = SUBSTRING(#{ymd},0,8)
</if>
<if test='ymdType=="dd"'>
and CONVERT(varchar(10),qcu.update_time, 120) = SUBSTRING(#{ymd},0,11)
</if>
group by qctd.project_no,qctd.rule_name
</select>
<select id="getSupplierBadTOP5" resultType="com.op.quality.domain.QcInterface">
select top 5 * from(
select
concat(t1.supplier_name,'-',t1.material_name) supplierName,
ROUND(t2.noOkNum*100.00/t1.allNum, 2) quality
from (
select count(0) allNum,
qct.supplier_code,qct.supplier_name,qct.material_code,qct.material_name
from qc_check_task qct
where qct.type_code = #{typeCode}
<if test='ymdType=="yyyy"'>
and CONVERT(varchar(4),qct.income_time, 120) = SUBSTRING(#{ymd},0,5)
</if>
<if test='ymdType=="mm"'>
and CONVERT(varchar(7),qct.income_time, 120) = SUBSTRING(#{ymd},0,8)
</if>
<if test='ymdType=="dd"'>
and CONVERT(varchar(10),qct.income_time, 120) = SUBSTRING(#{ymd},0,11)
</if>
group by
qct.supplier_code,qct.supplier_name,qct.material_code,qct.material_name
) t1
left join (
select
count(0) noOkNum,qct.supplier_code,qct.supplier_name,qct.material_code,qct.material_name
from qc_check_task qct
where qct.type_code = #{typeCode} and qct.check_result = 'N'
<if test='ymdType=="yyyy"'>
and CONVERT(varchar(4),qct.income_time, 120) = SUBSTRING(#{ymd},0,5)
</if>
<if test='ymdType=="mm"'>
and CONVERT(varchar(7),qct.income_time, 120) = SUBSTRING(#{ymd},0,8)
</if>
<if test='ymdType=="dd"'>
and CONVERT(varchar(10),qct.income_time, 120) = SUBSTRING(#{ymd},0,11)
</if>
group by
qct.supplier_code,qct.supplier_name,qct.material_code,qct.material_name
) t2 on t1.supplier_code = t2.supplier_code and t1.material_code = t2.material_code
) t order by t.quality desc
</select>
<select id="getSupplierTaskList" resultType="com.op.quality.domain.QcInterface">
select
qct.check_no checkNo,
qct.income_batch_no incomeBatchNo,
qct.order_no orderNo,
qct.material_name materialName,
qct.quality,
qct.unit,
qct.supplier_name supplierName,
qct.income_time incomeTime,
qct.check_status checkStatus,
qct.check_result checkResult,
qct.check_man_name checkManName,
qc.check_name checkName
from qc_check_task qct
left join qc_check_type qc on qct.check_type = qc.order_code
where qct.del_flag = '0' and qct.status = '1'
and qct.type_code = #{typeCode}
<if test='ymdType=="yyyy"'>
and CONVERT(varchar(4),qct.income_time, 120) = SUBSTRING(#{ymd},0,5)
</if>
<if test='ymdType=="mm"'>
and CONVERT(varchar(7),qct.income_time, 120) = SUBSTRING(#{ymd},0,8)
</if>
<if test='ymdType=="dd"'>
and CONVERT(varchar(10),qct.income_time, 120) = SUBSTRING(#{ymd},0,11)
</if>
order by qct.income_time desc,qct.check_status asc
</select>
<select id="getSupplierNoOkList" resultType="com.op.quality.domain.QcInterface">
select
qct.check_no checkNo,
qct.income_batch_no incomeBatchNo,
qct.order_no orderNo,
qct.material_name materialName,
qct.quality,
qct.unit,
qct.supplier_name supplierName,
qct.income_time incomeTime,
qct.check_result checkResult,
qct.check_man_name checkManName,
qc.check_name checkName
from qc_check_task qct
left join qc_check_type qc on qct.check_type = qc.order_code
where qct.type_code = #{typeCode} and qct.check_result = 'N'
<if test='ymdType=="yyyy"'>
and CONVERT(varchar(4),qct.income_time, 120) = SUBSTRING(#{ymd},0,5)
</if>
<if test='ymdType=="mm"'>
and CONVERT(varchar(7),qct.income_time, 120) = SUBSTRING(#{ymd},0,8)
</if>
<if test='ymdType=="dd"'>
and CONVERT(varchar(10),qct.income_time, 120) = SUBSTRING(#{ymd},0,11)
</if>
order by qct.income_time desc
</select>
</mapper>

@ -24,8 +24,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
qct.supplier_code supplierCode,qct.supplier_name supplierName,
count(0) batchs,sum(qct.quality) nums
from qc_check_task qct
left join qc_check_type qc on qc.order_code = qct.check_type
where qc.type_code = #{qc.typeCode}
where qct.type_code = #{qc.typeCode}
and qct.del_flag = '0'
and CONVERT(varchar(7),qct.income_time, 120) = #{qc.yearMonth}
<if test="qc.checkResult != null">
@ -44,8 +43,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
qct.supplier_code supplierCode,qct.supplier_name supplierName,
sum(qct.noOk_quality) noOkNums
from qc_check_task qct
left join qc_check_type qc on qc.order_code = qct.check_type
where qc.type_code = #{qc.typeCode}
where qct.type_code = #{qc.typeCode}
and qct.del_flag = '0'
and CONVERT(varchar(7),qct.income_time, 120) = #{qc.yearMonth}
<if test="codes != null and codes.size()>0">
@ -66,8 +64,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
qct.cNoOkquality,
qct.income_time
from qc_check_task qct
left join qc_check_type qc on qc.order_code = qct.check_type
where qct.del_flag = '0' and qc.type_code = 'produce'
where qct.del_flag = '0' and qct.type_code = 'produce'
<if test="materialCode != null "> and qct.material_code in (${materialCode})</if>
<if test="workCenter != null "> and qct.supplier_code = #{workCenter}</if>
<if test="ymArrayStart != null "> and CONVERT(varchar(10),qct.income_time, 120) >= #{ymArrayStart}</if>
@ -77,8 +74,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
select distinct qct.material_code materialCode,
qct.material_name materialName
from qc_check_task qct
left join qc_check_type qc on qc.order_code = qct.check_type
where qct.del_flag = '0' and qc.type_code = 'produce'
where qct.del_flag = '0' and qct.type_code = 'produce'
<if test="materialCode != null "> and qct.material_code in (${materialCode})</if>
<if test="workCenter != null "> and qct.supplier_code = #{workCenter}</if>
<if test="ymArrayStart != null "> and CONVERT(varchar(10),qct.income_time, 120) >= #{ymArrayStart}</if>
@ -95,8 +91,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
sum(qct.cNoOkquality) cNoOkquality,
CONVERT(varchar(7),qct.income_time, 120) incomeTime
from qc_check_task qct
left join qc_check_type qc on qc.order_code = qct.check_type
where qct.del_flag = '0' and qc.type_code = 'produce'
where qct.del_flag = '0' and qct.type_code = 'produce'
<if test="materialCode != null "> and qct.material_code in (${materialCode})</if>
<if test="workCenter != null "> and qct.supplier_code = #{workCenter}</if>
<if test="ymArrayStart != null "> and CONVERT(varchar(10),qct.income_time, 120) >= #{ymArrayStart}</if>

@ -3,7 +3,7 @@
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.op.quality.mapper.QcUserMaterialMapper">
<resultMap type="QcUserMaterial" id="QcUserMaterialResult">
<result property="id" column="id" />
<result property="userCode" column="user_code" />
@ -45,7 +45,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectQcUserMaterialList" parameterType="QcUserMaterial" resultMap="QcUserMaterialResult">
<include refid="selectQcUserMaterialVo"/>
<where>
<where>
<if test="userCode != null and userCode != ''"> and user_code = #{userCode}</if>
<if test="userName != null and userName != ''"> and user_name like concat('%', #{userName}, '%')</if>
<if test="materialCode != null and materialCode != ''"> and material_code = #{materialCode}</if>
@ -170,4 +170,4 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{userCode}
</foreach>
</delete>
</mapper>
</mapper>

@ -11,9 +11,7 @@ import com.op.common.core.utils.DateUtils;
import com.op.common.core.utils.poi.ExcelMapUtil;
import com.op.common.security.utils.SecurityUtils;
import com.op.system.api.domain.SysUser;
import com.op.wms.domain.BaseTeamUser;
import com.op.wms.domain.EquSpareEquipment;
import com.op.wms.domain.WmsSparePartsLedger;
import com.op.wms.domain.*;
import com.op.wms.service.IBaseEquipmentService;
import org.apache.poi.xssf.streaming.SXSSFWorkbook;
import org.springframework.beans.factory.annotation.Autowired;
@ -28,7 +26,6 @@ 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.wms.domain.BaseEquipment;
import com.op.common.core.web.controller.BaseController;
import com.op.common.core.web.domain.AjaxResult;
import com.op.common.core.utils.poi.ExcelUtil;
@ -241,4 +238,14 @@ public class BaseEquipmentController extends BaseController {
return getDataTable(list);
}
/**
* 线/
*/
@GetMapping("/getAuxiliaryEquipmentList")
public TableDataInfo getAuxiliaryEquipmentList(EquBindAuxiliaryEquipment equBindAuxiliaryEquipment) {
startPage();
List<BaseEquipment> list = baseEquipmentService.selectAuxiliaryEquipmentList(equBindAuxiliaryEquipment);
return getDataTable(list);
}
}

@ -211,6 +211,10 @@ public class BaseEquipment extends BaseEntity {
@Excel(name = "设备状态")
private String equipmentStatus;
/** 设备类别 */
@Excel(name = "设备类别")
private String equipmentCategory;
private String imageFileList;
private String barCodeFileList;
@ -651,6 +655,14 @@ public class BaseEquipment extends BaseEntity {
return equipmentStatus;
}
//设备类别
public void setEquipmentCategory(String equipmentCategory) {
this.equipmentCategory = equipmentCategory;
}
public String getEquipmentCategory() {
return equipmentCategory;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)

@ -117,4 +117,7 @@ public interface BaseEquipmentMapper {
//删除
void deleteAuxiliaryEquipmentByCode(String equipmentCode);
//查询组线/辅助设备
List<BaseEquipment> selectAuxiliaryEquipmentList(EquBindAuxiliaryEquipment equBindAuxiliaryEquipment);
}

@ -3,10 +3,7 @@ package com.op.wms.service;
import java.util.List;
import com.op.common.core.web.domain.AjaxResult;
import com.op.wms.domain.BaseEquipment;
import com.op.wms.domain.BaseTeamUser;
import com.op.wms.domain.EquSpareEquipment;
import com.op.wms.domain.WmsSparePartsLedger;
import com.op.wms.domain.*;
/**
* Service
@ -83,4 +80,7 @@ public interface IBaseEquipmentService {
//查询人员列表
List<BaseTeamUser> getPersonList(BaseTeamUser baseTeamUser);
//查询组线/辅助设备
List<BaseEquipment> selectAuxiliaryEquipmentList(EquBindAuxiliaryEquipment equBindAuxiliaryEquipment);
}

@ -139,8 +139,8 @@ public class BaseEquipmentServiceImpl implements IBaseEquipmentService {
@Override
@DS("#header.poolName")
public int insertBaseEquipment(BaseEquipment baseEquipment) {
Date createTime = DateUtils.getNowDate();
baseEquipment.setCreateTime(createTime);
baseEquipment.setCreateTime(DateUtils.getNowDate());
baseEquipment.setCreateBy(SecurityUtils.getUsername());
String equipmentTypeName = baseEquipmentMapper.getEquipmentTypeName(baseEquipment);
String workCenterName = baseEquipmentMapper.getWorkCenterName(baseEquipment);
baseEquipment.setWorkshopName(workCenterName);
@ -245,6 +245,7 @@ public class BaseEquipmentServiceImpl implements IBaseEquipmentService {
public int updateBaseEquipment(BaseEquipment baseEquipment) {
baseEquipment.setUpdateTime(DateUtils.getNowDate());
baseEquipment.setUpdateBy(SecurityUtils.getUsername());
String equipmentTypeName = baseEquipmentMapper.getEquipmentTypeName(baseEquipment);
String workCenterName = baseEquipmentMapper.getWorkCenterName(baseEquipment);
baseEquipment.setWorkshopName(workCenterName);
@ -335,10 +336,14 @@ public class BaseEquipmentServiceImpl implements IBaseEquipmentService {
EquBindAuxiliaryEquipment equBindAuxiliaryEquipment = new EquBindAuxiliaryEquipment();
equBindAuxiliaryEquipment.setAuxiliaryEquipmentCode(code);
equBindAuxiliaryEquipment.setEquipmentCode(baseEquipment.getEquipmentCode());
equBindAuxiliaryEquipment.setEquipmentName(baseEquipment.getEquipmentName());
equBindAuxiliaryEquipment.setCreateBy(SecurityUtils.getUsername());
equBindAuxiliaryEquipment.setCreateTime(DateUtils.getNowDate());
equBindAuxiliaryEquipment.setId(IdUtils.fastSimpleUUID());
equBindAuxiliaryEquipment.setAuxiliaryEquipmentName(baseEquipment.getEquipmentName());
//工厂号
HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();
String key = "#header.poolName";
equBindAuxiliaryEquipment.setFactoryCode(request.getHeader(key.substring(8)).replace("ds_",""));
baseEquipmentMapper.bindAuxiliaryEquipment(equBindAuxiliaryEquipment);
}
}
@ -552,4 +557,16 @@ public class BaseEquipmentServiceImpl implements IBaseEquipmentService {
return baseTeamUserMapper.getPersonList(baseTeamUser);
}
/**
*
*
* @param equBindAuxiliaryEquipment
* @return
*/
@Override
@DS("#header.poolName")
public List<BaseEquipment> selectAuxiliaryEquipmentList(EquBindAuxiliaryEquipment equBindAuxiliaryEquipment) {
return baseEquipmentMapper.selectAuxiliaryEquipmentList(equBindAuxiliaryEquipment);
}
}

@ -48,6 +48,7 @@
<result property="equipmentHead" column="equipment_head" />
<result property="factoryCode" column="factory_code" />
<result property="equipmentStatus" column="equipment_status" />
<result property="equipmentCategory" column="equipment_category" />
</resultMap>
<resultMap type="WmsSparePartsLedger" id="WmsSparePartsLedgerResult">
@ -162,7 +163,8 @@
department,
equipment_head,
factory_code,
equipment_status
equipment_status,
equipment_category
from base_equipment
</sql>
@ -205,6 +207,7 @@
<if test="sapAsset != null and sapAsset != ''"> and sap_asset = #{sapAsset}</if>
<if test="factoryCode != null and factoryCode != ''"> and factory_code = #{factoryCode}</if>
<if test="equipmentStatus != null and equipmentStatus != ''"> and equipment_status = #{equipmentStatus}</if>
<if test="equipmentCategory != null and equipmentCategory != ''"> and equipment_category = #{equipmentCategory}</if>
and del_flag ='0'
</where>
</select>
@ -259,6 +262,7 @@
<if test="equipmentHead != null">equipment_head,</if>
<if test="factoryCode != null">factory_code,</if>
<if test="equipmentStatus != null">equipment_status,</if>
<if test="equipmentCategory != null">equipment_category,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="equipmentCode != null and equipmentCode != ''">#{equipmentCode},</if>
@ -301,7 +305,8 @@
<if test="sapAsset != null">#{sapAsset},</if>
<if test="equipmentHead != null">#{equipmentHead},</if>
<if test="factoryCode != null">#{factoryCode},</if>
<if test="equipmentStatus != null">equipmentStatus,</if>
<if test="equipmentStatus != null">#{equipmentStatus},</if>
<if test="equipmentCategory != null">#{equipmentCategory},</if>
</trim>
</insert>
@ -349,6 +354,7 @@
<if test="equipmentHead != null">equipment_head = #{equipmentHead},</if>
<if test="factoryCode != null">factory_code = #{factoryCode},</if>
<if test="equipmentStatus != null">equipment_status = #{equipmentStatus},</if>
<if test="equipmentCategory != null">equipment_category = #{equipmentCategory},</if>
</trim>
where equipment_id = #{equipmentId}
</update>
@ -575,4 +581,14 @@
where equipment_id = #{equipmentId}
</update>
<select id="selectAuxiliaryEquipmentList" parameterType="com.op.wms.domain.EquBindAuxiliaryEquipment" resultType="BaseEquipment">
select
ebac.auxiliary_equipment_code AS equipmentCode,
be.equipment_name AS equipmentName,
be.equipment_status AS equipmentStatus
from equ_bind_auxiliary_equipment ebac
left join base_equipment be on ebac.auxiliary_equipment_code = be.equipment_code
where ebac.equipment_code = #{equipmentCode}
</select>
</mapper>
Loading…
Cancel
Save