领料单提交
parent
a5340c0934
commit
7fc87674e9
@ -1,123 +0,0 @@
|
||||
package com.op.sap.domain;
|
||||
|
||||
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;
|
||||
|
||||
/**
|
||||
* 附件对象 base_file
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-07-10
|
||||
*/
|
||||
public class SapBaseFile extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 附件ID */
|
||||
private String fileId;
|
||||
|
||||
/** 附件名称 */
|
||||
@Excel(name = "附件名称")
|
||||
private String fileName;
|
||||
|
||||
/** 附件地址 */
|
||||
@Excel(name = "附件地址")
|
||||
private String fileAddress;
|
||||
|
||||
/** 数据来源 */
|
||||
@Excel(name = "数据来源")
|
||||
private String sourceId;
|
||||
|
||||
/** 预留字段1 */
|
||||
@Excel(name = "预留字段1")
|
||||
private String attr1;
|
||||
|
||||
/** 预留字段2 */
|
||||
@Excel(name = "预留字段2")
|
||||
private String attr2;
|
||||
|
||||
/** 预留字段3 */
|
||||
@Excel(name = "预留字段3")
|
||||
private Long attr3;
|
||||
|
||||
/** 预留字段4 */
|
||||
@Excel(name = "预留字段4")
|
||||
private Long attr4;
|
||||
|
||||
public void setFileId(String fileId) {
|
||||
this.fileId = fileId;
|
||||
}
|
||||
|
||||
public String getFileId() {
|
||||
return fileId;
|
||||
}
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
|
||||
public String getFileName() {
|
||||
return fileName;
|
||||
}
|
||||
public void setFileAddress(String fileAddress) {
|
||||
this.fileAddress = fileAddress;
|
||||
}
|
||||
|
||||
public String getFileAddress() {
|
||||
return fileAddress;
|
||||
}
|
||||
public void setSourceId(String sourceId) {
|
||||
this.sourceId = sourceId;
|
||||
}
|
||||
|
||||
public String getSourceId() {
|
||||
return sourceId;
|
||||
}
|
||||
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(Long attr3) {
|
||||
this.attr3 = attr3;
|
||||
}
|
||||
|
||||
public Long getAttr3() {
|
||||
return attr3;
|
||||
}
|
||||
public void setAttr4(Long attr4) {
|
||||
this.attr4 = attr4;
|
||||
}
|
||||
|
||||
public Long getAttr4() {
|
||||
return attr4;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("fileId", getFileId())
|
||||
.append("fileName", getFileName())
|
||||
.append("fileAddress", getFileAddress())
|
||||
.append("sourceId", getSourceId())
|
||||
.append("remark", getRemark())
|
||||
.append("attr1", getAttr1())
|
||||
.append("attr2", getAttr2())
|
||||
.append("attr3", getAttr3())
|
||||
.append("attr4", getAttr4())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.toString();
|
||||
}
|
||||
}
|
@ -1,232 +0,0 @@
|
||||
package com.op.sap.domain;
|
||||
|
||||
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;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* 生产工序对象 pro_process
|
||||
*
|
||||
* @author yinjinlu
|
||||
* @date 2022-05-12
|
||||
*/
|
||||
public class SapProProcess extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 工序ID */
|
||||
private String processId;
|
||||
|
||||
/** 工序编码 */
|
||||
@Excel(name = "工序编码")
|
||||
private String processCode;
|
||||
|
||||
/** 工序名称 */
|
||||
@Excel(name = "工序名称")
|
||||
private String processName;
|
||||
|
||||
/** 工艺要求 */
|
||||
@Excel(name = "工艺要求")
|
||||
private String attention;
|
||||
|
||||
/** 是否启用 */
|
||||
@Excel(name = "是否启用")
|
||||
private String enableFlag;
|
||||
|
||||
/** 预留字段1 */
|
||||
private String attr1;
|
||||
|
||||
/** 预留字段2 */
|
||||
private String attr2;
|
||||
|
||||
/** 预留字段3 */
|
||||
private Long attr3;
|
||||
|
||||
/** 预留字段4 */
|
||||
private Long attr4;
|
||||
|
||||
private String fileList;
|
||||
private List<SapBaseFile> files;
|
||||
//s:拆分 m合并
|
||||
private String splitMerge;
|
||||
//拆分合并数量
|
||||
private int splitMergNum;
|
||||
//1允许多单并行
|
||||
private String sync;
|
||||
//工作中心
|
||||
private String workCenter;
|
||||
//工作时长
|
||||
private Double workTime;
|
||||
//线体设备
|
||||
private String equipment;
|
||||
|
||||
public List<SapBaseFile> getFiles() {
|
||||
return files;
|
||||
}
|
||||
|
||||
public void setFiles(List<SapBaseFile> files) {
|
||||
this.files = files;
|
||||
}
|
||||
|
||||
public String getWorkCenter() {
|
||||
return workCenter;
|
||||
}
|
||||
|
||||
public void setWorkCenter(String workCenter) {
|
||||
this.workCenter = workCenter;
|
||||
}
|
||||
|
||||
public Double getWorkTime() {
|
||||
return workTime;
|
||||
}
|
||||
|
||||
public void setWorkTime(Double workTime) {
|
||||
this.workTime = workTime;
|
||||
}
|
||||
|
||||
public String getSplitMerge() {
|
||||
return splitMerge;
|
||||
}
|
||||
|
||||
public void setSplitMerge(String splitMerge) {
|
||||
this.splitMerge = splitMerge;
|
||||
}
|
||||
|
||||
public int getSplitMergNum() {
|
||||
return splitMergNum;
|
||||
}
|
||||
|
||||
public void setSplitMergNum(int splitMergNum) {
|
||||
this.splitMergNum = splitMergNum;
|
||||
}
|
||||
|
||||
public String getSync() {
|
||||
return sync;
|
||||
}
|
||||
|
||||
public void setSync(String sync) {
|
||||
this.sync = sync;
|
||||
}
|
||||
|
||||
public String getFileList() {
|
||||
return fileList;
|
||||
}
|
||||
|
||||
public void setFileList(String fileList) {
|
||||
this.fileList = fileList;
|
||||
}
|
||||
|
||||
public void setProcessId(String processId)
|
||||
{
|
||||
this.processId = processId;
|
||||
}
|
||||
|
||||
public String getProcessId()
|
||||
{
|
||||
return processId;
|
||||
}
|
||||
public void setProcessCode(String processCode)
|
||||
{
|
||||
this.processCode = processCode;
|
||||
}
|
||||
|
||||
public String getProcessCode()
|
||||
{
|
||||
return processCode;
|
||||
}
|
||||
public void setProcessName(String processName)
|
||||
{
|
||||
this.processName = processName;
|
||||
}
|
||||
|
||||
public String getProcessName()
|
||||
{
|
||||
return processName;
|
||||
}
|
||||
public void setAttention(String attention)
|
||||
{
|
||||
this.attention = attention;
|
||||
}
|
||||
|
||||
public String getAttention()
|
||||
{
|
||||
return attention;
|
||||
}
|
||||
public void setEnableFlag(String enableFlag)
|
||||
{
|
||||
this.enableFlag = enableFlag;
|
||||
}
|
||||
|
||||
public String getEnableFlag()
|
||||
{
|
||||
return enableFlag;
|
||||
}
|
||||
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(Long attr3)
|
||||
{
|
||||
this.attr3 = attr3;
|
||||
}
|
||||
|
||||
public Long getAttr3()
|
||||
{
|
||||
return attr3;
|
||||
}
|
||||
public void setAttr4(Long attr4)
|
||||
{
|
||||
this.attr4 = attr4;
|
||||
}
|
||||
|
||||
public Long getAttr4()
|
||||
{
|
||||
return attr4;
|
||||
}
|
||||
|
||||
public void setEquipment(String equipment)
|
||||
{
|
||||
this.equipment = equipment;
|
||||
}
|
||||
public String getEquipment()
|
||||
{
|
||||
return equipment;
|
||||
}
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("processId", getProcessId())
|
||||
.append("processCode", getProcessCode())
|
||||
.append("processName", getProcessName())
|
||||
.append("attention", getAttention())
|
||||
.append("enableFlag", getEnableFlag())
|
||||
.append("remark", getRemark())
|
||||
.append("attr1", getAttr1())
|
||||
.append("attr2", getAttr2())
|
||||
.append("attr3", getAttr3())
|
||||
.append("attr4", getAttr4())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.toString();
|
||||
}
|
||||
}
|
@ -1,178 +0,0 @@
|
||||
package com.op.sap.domain;
|
||||
|
||||
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;
|
||||
|
||||
/**
|
||||
* 生产工序内容对象 pro_process_content
|
||||
*
|
||||
* @author yinjinlu
|
||||
* @date 2022-05-12
|
||||
*/
|
||||
public class SapProProcessContent extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 内容ID */
|
||||
private String contentId;
|
||||
|
||||
/** 工序ID */
|
||||
@Excel(name = "工序ID")
|
||||
private String processId;
|
||||
|
||||
/** 顺序编号 */
|
||||
@Excel(name = "顺序编号")
|
||||
private Integer orderNum;
|
||||
|
||||
/** 内容说明 */
|
||||
@Excel(name = "内容说明")
|
||||
private String contentText;
|
||||
|
||||
/** 辅助设备 */
|
||||
@Excel(name = "辅助设备")
|
||||
private String device;
|
||||
|
||||
/** 辅助材料 */
|
||||
@Excel(name = "辅助材料")
|
||||
private String material;
|
||||
|
||||
/** 材料URL */
|
||||
@Excel(name = "材料URL")
|
||||
private String docUrl;
|
||||
|
||||
/** 预留字段1 */
|
||||
private String attr1;
|
||||
|
||||
/** 预留字段2 */
|
||||
private String attr2;
|
||||
|
||||
/** 预留字段3 */
|
||||
private Long attr3;
|
||||
|
||||
/** 预留字段4 */
|
||||
private Long attr4;
|
||||
|
||||
public void setContentId(String contentId)
|
||||
{
|
||||
this.contentId = contentId;
|
||||
}
|
||||
|
||||
public String getContentId()
|
||||
{
|
||||
return contentId;
|
||||
}
|
||||
public void setProcessId(String processId)
|
||||
{
|
||||
this.processId = processId;
|
||||
}
|
||||
|
||||
public String getProcessId()
|
||||
{
|
||||
return processId;
|
||||
}
|
||||
public void setOrderNum(Integer orderNum)
|
||||
{
|
||||
this.orderNum = orderNum;
|
||||
}
|
||||
|
||||
public Integer getOrderNum()
|
||||
{
|
||||
return orderNum;
|
||||
}
|
||||
public void setContentText(String contentText)
|
||||
{
|
||||
this.contentText = contentText;
|
||||
}
|
||||
|
||||
public String getContentText()
|
||||
{
|
||||
return contentText;
|
||||
}
|
||||
public void setDevice(String device)
|
||||
{
|
||||
this.device = device;
|
||||
}
|
||||
|
||||
public String getDevice()
|
||||
{
|
||||
return device;
|
||||
}
|
||||
public void setMaterial(String material)
|
||||
{
|
||||
this.material = material;
|
||||
}
|
||||
|
||||
public String getMaterial()
|
||||
{
|
||||
return material;
|
||||
}
|
||||
public void setDocUrl(String docUrl)
|
||||
{
|
||||
this.docUrl = docUrl;
|
||||
}
|
||||
|
||||
public String getDocUrl()
|
||||
{
|
||||
return docUrl;
|
||||
}
|
||||
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(Long attr3)
|
||||
{
|
||||
this.attr3 = attr3;
|
||||
}
|
||||
|
||||
public Long getAttr3()
|
||||
{
|
||||
return attr3;
|
||||
}
|
||||
public void setAttr4(Long attr4)
|
||||
{
|
||||
this.attr4 = attr4;
|
||||
}
|
||||
|
||||
public Long getAttr4()
|
||||
{
|
||||
return attr4;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("contentId", getContentId())
|
||||
.append("processId", getProcessId())
|
||||
.append("orderNum", getOrderNum())
|
||||
.append("contentText", getContentText())
|
||||
.append("device", getDevice())
|
||||
.append("material", getMaterial())
|
||||
.append("docUrl", getDocUrl())
|
||||
.append("remark", getRemark())
|
||||
.append("attr1", getAttr1())
|
||||
.append("attr2", getAttr2())
|
||||
.append("attr3", getAttr3())
|
||||
.append("attr4", getAttr4())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.toString();
|
||||
}
|
||||
}
|
@ -1,319 +0,0 @@
|
||||
package com.op.sap.domain;
|
||||
|
||||
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;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Objects;
|
||||
|
||||
|
||||
/**
|
||||
* 工艺路线对象 pro_route
|
||||
*
|
||||
* @author yinjinlu
|
||||
* @date 2022-05-12
|
||||
*/
|
||||
public class SapProRoute extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 工艺路线ID */
|
||||
private String routeId;
|
||||
|
||||
/** 工艺路线编号 */
|
||||
@Excel(name = "工艺路线编号")
|
||||
private String routeCode;
|
||||
|
||||
/** 工艺路线名称 */
|
||||
@Excel(name = "工艺路线名称")
|
||||
private String routeName;
|
||||
|
||||
/** 工艺路线说明 */
|
||||
@Excel(name = "工艺路线说明")
|
||||
private String routeDesc;
|
||||
|
||||
/** 是否启用 */
|
||||
@Excel(name = "是否启用")
|
||||
private String enableFlag;
|
||||
|
||||
/** 是否需要首检 */
|
||||
@Excel(name = "是否需要首检")
|
||||
private String needCheck;
|
||||
|
||||
/** 预留字段1 */
|
||||
private String attr1;
|
||||
|
||||
/** 预留字段2 */
|
||||
private String attr2;
|
||||
|
||||
/** 预留字段3 */
|
||||
private String attr3;
|
||||
|
||||
/** 预留字段4 */
|
||||
private String attr4;
|
||||
|
||||
private String tecMan;
|
||||
|
||||
private String tecManUnit;
|
||||
private String tecMachine;
|
||||
private String tecMachineUnit;
|
||||
private String tecDepreciation;
|
||||
private String tecDepreciationUnit;
|
||||
private String tecOther;
|
||||
private String tecOtherUnit;
|
||||
private String tecConfAcivity5;
|
||||
private String tecConfAcivity5Unit;
|
||||
private String tecConfAcivity6;
|
||||
private String tecConfAcivity6Unit;
|
||||
|
||||
private String fileList;
|
||||
private List<SapBaseFile> files;
|
||||
|
||||
private List<String> idList;
|
||||
|
||||
private String routeVersion;
|
||||
|
||||
public String getRouteId() {
|
||||
return routeId;
|
||||
}
|
||||
|
||||
public void setRouteId(String routeId) {
|
||||
this.routeId = routeId;
|
||||
}
|
||||
|
||||
public String getRouteCode() {
|
||||
return routeCode;
|
||||
}
|
||||
|
||||
public void setRouteCode(String routeCode) {
|
||||
this.routeCode = routeCode;
|
||||
}
|
||||
|
||||
public String getRouteName() {
|
||||
return routeName;
|
||||
}
|
||||
|
||||
public void setRouteName(String routeName) {
|
||||
this.routeName = routeName;
|
||||
}
|
||||
|
||||
public String getRouteDesc() {
|
||||
return routeDesc;
|
||||
}
|
||||
|
||||
public void setRouteDesc(String routeDesc) {
|
||||
this.routeDesc = routeDesc;
|
||||
}
|
||||
|
||||
public String getEnableFlag() {
|
||||
return enableFlag;
|
||||
}
|
||||
|
||||
public void setEnableFlag(String enableFlag) {
|
||||
this.enableFlag = enableFlag;
|
||||
}
|
||||
|
||||
public String getNeedCheck() {
|
||||
return needCheck;
|
||||
}
|
||||
|
||||
public void setNeedCheck(String needCheck) {
|
||||
this.needCheck = needCheck;
|
||||
}
|
||||
|
||||
public String getAttr1() {
|
||||
return attr1;
|
||||
}
|
||||
|
||||
public void setAttr1(String attr1) {
|
||||
this.attr1 = attr1;
|
||||
}
|
||||
|
||||
public String getAttr2() {
|
||||
return attr2;
|
||||
}
|
||||
|
||||
public void setAttr2(String attr2) {
|
||||
this.attr2 = attr2;
|
||||
}
|
||||
|
||||
public String getAttr3() {
|
||||
return attr3;
|
||||
}
|
||||
|
||||
public void setAttr3(String attr3) {
|
||||
this.attr3 = attr3;
|
||||
}
|
||||
|
||||
public String getAttr4() {
|
||||
return attr4;
|
||||
}
|
||||
|
||||
public void setAttr4(String attr4) {
|
||||
this.attr4 = attr4;
|
||||
}
|
||||
|
||||
public String getTecMan() {
|
||||
return tecMan;
|
||||
}
|
||||
|
||||
public void setTecMan(String tecMan) {
|
||||
this.tecMan = tecMan;
|
||||
}
|
||||
|
||||
public String getTecManUnit() {
|
||||
return tecManUnit;
|
||||
}
|
||||
|
||||
public void setTecManUnit(String tecManUnit) {
|
||||
this.tecManUnit = tecManUnit;
|
||||
}
|
||||
|
||||
public String getTecMachine() {
|
||||
return tecMachine;
|
||||
}
|
||||
|
||||
public void setTecMachine(String tecMachine) {
|
||||
this.tecMachine = tecMachine;
|
||||
}
|
||||
|
||||
public String getTecMachineUnit() {
|
||||
return tecMachineUnit;
|
||||
}
|
||||
|
||||
public void setTecMachineUnit(String tecMachineUnit) {
|
||||
this.tecMachineUnit = tecMachineUnit;
|
||||
}
|
||||
|
||||
public String getTecDepreciation() {
|
||||
return tecDepreciation;
|
||||
}
|
||||
|
||||
public void setTecDepreciation(String tecDepreciation) {
|
||||
this.tecDepreciation = tecDepreciation;
|
||||
}
|
||||
|
||||
public String getTecDepreciationUnit() {
|
||||
return tecDepreciationUnit;
|
||||
}
|
||||
|
||||
public void setTecDepreciationUnit(String tecDepreciationUnit) {
|
||||
this.tecDepreciationUnit = tecDepreciationUnit;
|
||||
}
|
||||
|
||||
public String getTecOther() {
|
||||
return tecOther;
|
||||
}
|
||||
|
||||
public void setTecOther(String tecOther) {
|
||||
this.tecOther = tecOther;
|
||||
}
|
||||
|
||||
public String getTecOtherUnit() {
|
||||
return tecOtherUnit;
|
||||
}
|
||||
|
||||
public void setTecOtherUnit(String tecOtherUnit) {
|
||||
this.tecOtherUnit = tecOtherUnit;
|
||||
}
|
||||
|
||||
public String getTecConfAcivity5() {
|
||||
return tecConfAcivity5;
|
||||
}
|
||||
|
||||
public void setTecConfAcivity5(String tecConfAcivity5) {
|
||||
this.tecConfAcivity5 = tecConfAcivity5;
|
||||
}
|
||||
|
||||
public String getTecConfAcivity5Unit() {
|
||||
return tecConfAcivity5Unit;
|
||||
}
|
||||
|
||||
public void setTecConfAcivity5Unit(String tecConfAcivity5Unit) {
|
||||
this.tecConfAcivity5Unit = tecConfAcivity5Unit;
|
||||
}
|
||||
|
||||
public String getTecConfAcivity6() {
|
||||
return tecConfAcivity6;
|
||||
}
|
||||
|
||||
public void setTecConfAcivity6(String tecConfAcivity6) {
|
||||
this.tecConfAcivity6 = tecConfAcivity6;
|
||||
}
|
||||
|
||||
public String getTecConfAcivity6Unit() {
|
||||
return tecConfAcivity6Unit;
|
||||
}
|
||||
|
||||
public void setTecConfAcivity6Unit(String tecConfAcivity6Unit) {
|
||||
this.tecConfAcivity6Unit = tecConfAcivity6Unit;
|
||||
}
|
||||
|
||||
public String getFileList() {
|
||||
return fileList;
|
||||
}
|
||||
|
||||
public void setFileList(String fileList) {
|
||||
this.fileList = fileList;
|
||||
}
|
||||
|
||||
public List<SapBaseFile> getFiles() {
|
||||
return files;
|
||||
}
|
||||
|
||||
public void setFiles(List<SapBaseFile> files) {
|
||||
this.files = files;
|
||||
}
|
||||
|
||||
public List<String> getIdList() {
|
||||
return idList;
|
||||
}
|
||||
|
||||
public void setIdList(List<String> idList) {
|
||||
this.idList = idList;
|
||||
}
|
||||
|
||||
public String getRouteVersion() {
|
||||
return routeVersion;
|
||||
}
|
||||
|
||||
public void setRouteVersion(String routeVersion) {
|
||||
this.routeVersion = routeVersion;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "SapProRoute{" +
|
||||
"routeId='" + routeId + '\'' +
|
||||
", routeCode='" + routeCode + '\'' +
|
||||
", routeName='" + routeName + '\'' +
|
||||
", routeDesc='" + routeDesc + '\'' +
|
||||
", enableFlag='" + enableFlag + '\'' +
|
||||
", needCheck='" + needCheck + '\'' +
|
||||
", attr1='" + attr1 + '\'' +
|
||||
", attr2='" + attr2 + '\'' +
|
||||
", attr3='" + attr3 + '\'' +
|
||||
", attr4='" + attr4 + '\'' +
|
||||
", tecMan='" + tecMan + '\'' +
|
||||
", tecManUnit='" + tecManUnit + '\'' +
|
||||
", tecMachine='" + tecMachine + '\'' +
|
||||
", tecMachineUnit='" + tecMachineUnit + '\'' +
|
||||
", tecDepreciation='" + tecDepreciation + '\'' +
|
||||
", tecDepreciationUnit='" + tecDepreciationUnit + '\'' +
|
||||
", tecOther='" + tecOther + '\'' +
|
||||
", tecOtherUnit='" + tecOtherUnit + '\'' +
|
||||
", tecConfAcivity5='" + tecConfAcivity5 + '\'' +
|
||||
", tecConfAcivity5Unit='" + tecConfAcivity5Unit + '\'' +
|
||||
", tecConfAcivity6='" + tecConfAcivity6 + '\'' +
|
||||
", tecConfAcivity6Unit='" + tecConfAcivity6Unit + '\'' +
|
||||
", fileList='" + fileList + '\'' +
|
||||
", files=" + files +
|
||||
", idList=" + idList +
|
||||
", routeVersion='" + routeVersion + '\'' +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,270 +0,0 @@
|
||||
package com.op.sap.domain;
|
||||
|
||||
import com.op.common.core.annotation.Excel;
|
||||
import com.op.common.core.web.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 工艺组成对象 pro_route_process
|
||||
*
|
||||
* @author yinjinlu
|
||||
* @date 2022-05-13
|
||||
*/
|
||||
public class SapProRouteProcess extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 记录ID */
|
||||
private String recordId;
|
||||
|
||||
/** 工艺路线ID */
|
||||
@Excel(name = "工艺路线ID")
|
||||
private String routeId;
|
||||
|
||||
/** 工序ID */
|
||||
@Excel(name = "工序ID")
|
||||
private String processId;
|
||||
|
||||
/** 工序编码 */
|
||||
@Excel(name = "工序编码")
|
||||
private String processCode;
|
||||
|
||||
/** 工序名称 */
|
||||
@Excel(name = "工序名称")
|
||||
private String processName;
|
||||
|
||||
/** 序号 */
|
||||
@Excel(name = "序号")
|
||||
private Integer orderNum;
|
||||
|
||||
/** 工序ID */
|
||||
@Excel(name = "工序ID")
|
||||
private String nextProcessId;
|
||||
|
||||
/** 工序编码 */
|
||||
@Excel(name = "工序编码")
|
||||
private String nextProcessCode;
|
||||
|
||||
/** 工序名称 */
|
||||
@Excel(name = "工序名称")
|
||||
private String nextProcessName;
|
||||
|
||||
/** 与下一道工序关系 */
|
||||
@Excel(name = "与下一道工序关系")
|
||||
private String linkType;
|
||||
|
||||
/** 准备时间 */
|
||||
@Excel(name = "准备时间")
|
||||
private String defaultPreTime;
|
||||
|
||||
/** 等待时间 */
|
||||
@Excel(name = "等待时间")
|
||||
private String defaultSufTime;
|
||||
|
||||
/** 甘特图显示颜色 */
|
||||
@Excel(name = "甘特图显示颜色")
|
||||
private String colorCode;
|
||||
|
||||
/** 是否关键工序 */
|
||||
private String keyFlag;
|
||||
|
||||
/** 预留字段1 */
|
||||
private String attr1;
|
||||
|
||||
/** 预留字段2 */
|
||||
private String attr2;
|
||||
|
||||
/** 预留字段3 */
|
||||
private String attr3;
|
||||
|
||||
/** 预留字段4 */
|
||||
private String attr4;
|
||||
|
||||
public void setRecordId(String recordId)
|
||||
{
|
||||
this.recordId = recordId;
|
||||
}
|
||||
|
||||
public String getRecordId()
|
||||
{
|
||||
return recordId;
|
||||
}
|
||||
public void setRouteId(String routeId)
|
||||
{
|
||||
this.routeId = routeId;
|
||||
}
|
||||
|
||||
public String getRouteId()
|
||||
{
|
||||
return routeId;
|
||||
}
|
||||
public void setProcessId(String processId)
|
||||
{
|
||||
this.processId = processId;
|
||||
}
|
||||
|
||||
public String getProcessId()
|
||||
{
|
||||
return processId;
|
||||
}
|
||||
public void setProcessCode(String processCode)
|
||||
{
|
||||
this.processCode = processCode;
|
||||
}
|
||||
|
||||
public String getProcessCode()
|
||||
{
|
||||
return processCode;
|
||||
}
|
||||
public void setProcessName(String processName)
|
||||
{
|
||||
this.processName = processName;
|
||||
}
|
||||
|
||||
public String getProcessName()
|
||||
{
|
||||
return processName;
|
||||
}
|
||||
public void setOrderNum(Integer orderNum)
|
||||
{
|
||||
this.orderNum = orderNum;
|
||||
}
|
||||
|
||||
public Integer getOrderNum()
|
||||
{
|
||||
return orderNum;
|
||||
}
|
||||
public void setNextProcessId(String nextProcessId)
|
||||
{
|
||||
this.nextProcessId = nextProcessId;
|
||||
}
|
||||
|
||||
public String getNextProcessId()
|
||||
{
|
||||
return nextProcessId;
|
||||
}
|
||||
public void setNextProcessCode(String nextProcessCode)
|
||||
{
|
||||
this.nextProcessCode = nextProcessCode;
|
||||
}
|
||||
|
||||
public String getNextProcessCode()
|
||||
{
|
||||
return nextProcessCode;
|
||||
}
|
||||
public void setNextProcessName(String nextProcessName)
|
||||
{
|
||||
this.nextProcessName = nextProcessName;
|
||||
}
|
||||
|
||||
public String getNextProcessName()
|
||||
{
|
||||
return nextProcessName;
|
||||
}
|
||||
public void setLinkType(String linkType)
|
||||
{
|
||||
this.linkType = linkType;
|
||||
}
|
||||
|
||||
public String getLinkType()
|
||||
{
|
||||
return linkType;
|
||||
}
|
||||
public void setDefaultPreTime(String defaultPreTime)
|
||||
{
|
||||
this.defaultPreTime = defaultPreTime;
|
||||
}
|
||||
|
||||
public String getDefaultPreTime()
|
||||
{
|
||||
return defaultPreTime;
|
||||
}
|
||||
public void setDefaultSufTime(String defaultSufTime)
|
||||
{
|
||||
this.defaultSufTime = defaultSufTime;
|
||||
}
|
||||
|
||||
public String getKeyFlag() {
|
||||
return keyFlag;
|
||||
}
|
||||
|
||||
public void setKeyFlag(String keyFlag) {
|
||||
this.keyFlag = keyFlag;
|
||||
}
|
||||
|
||||
public String getDefaultSufTime()
|
||||
{
|
||||
return defaultSufTime;
|
||||
}
|
||||
public void setColorCode(String colorCode)
|
||||
{
|
||||
this.colorCode = colorCode;
|
||||
}
|
||||
|
||||
public String getColorCode()
|
||||
{
|
||||
return colorCode;
|
||||
}
|
||||
|
||||
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 setAttr4(String attr4)
|
||||
{
|
||||
this.attr4 = attr4;
|
||||
}
|
||||
|
||||
public String getAttr4()
|
||||
{
|
||||
return attr4;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "ProRouteProcess{" +
|
||||
"recordId=" + recordId +
|
||||
", routeId=" + routeId +
|
||||
", processId=" + processId +
|
||||
", processCode='" + processCode + '\'' +
|
||||
", processName='" + processName + '\'' +
|
||||
", orderNum=" + orderNum +
|
||||
", nextProcessId=" + nextProcessId +
|
||||
", nextProcessCode='" + nextProcessCode + '\'' +
|
||||
", nextProcessName='" + nextProcessName + '\'' +
|
||||
", linkType='" + linkType + '\'' +
|
||||
", defaultPreTime=" + defaultPreTime +
|
||||
", defaultSufTime=" + defaultSufTime +
|
||||
", colorCode='" + colorCode + '\'' +
|
||||
", keyFlag='" + keyFlag + '\'' +
|
||||
", attr1='" + attr1 + '\'' +
|
||||
", attr2='" + attr2 + '\'' +
|
||||
", attr3=" + attr3 +
|
||||
", attr4=" + attr4 +
|
||||
'}';
|
||||
}
|
||||
}
|
@ -1,183 +0,0 @@
|
||||
package com.op.sap.domain;
|
||||
|
||||
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;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 工艺产品关联对象 pro_route_product
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-07-13
|
||||
*/
|
||||
public class SapProRouteProduct extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 记录ID */
|
||||
private String recordId;
|
||||
|
||||
/** 工艺路线ID */
|
||||
@Excel(name = "工艺路线ID")
|
||||
private String routeId;
|
||||
|
||||
/** 产品ID */
|
||||
@Excel(name = "产品ID")
|
||||
private String itemId;
|
||||
|
||||
/** 产品编码 */
|
||||
@Excel(name = "产品编码")
|
||||
private String itemCode;
|
||||
|
||||
/** 产品名称 */
|
||||
@Excel(name = "产品名称")
|
||||
private String itemName;
|
||||
|
||||
/** 预留字段1 */
|
||||
@Excel(name = "预留字段1")
|
||||
private String attr1;
|
||||
|
||||
/** 预留字段2 */
|
||||
@Excel(name = "预留字段2")
|
||||
private String attr2;
|
||||
|
||||
/** 预留字段3 */
|
||||
@Excel(name = "预留字段3")
|
||||
private String attr3;
|
||||
|
||||
/** 预留字段4 */
|
||||
@Excel(name = "预留字段4")
|
||||
private String attr4;
|
||||
|
||||
private String key;
|
||||
private String label;
|
||||
private List<SapProRouteProduct> unSelect;
|
||||
private List<SapProRouteProduct> selected;
|
||||
private List<String> selectedValues;
|
||||
|
||||
public List<String> getSelectedValues() {
|
||||
return selectedValues;
|
||||
}
|
||||
|
||||
public void setSelectedValues(List<String> selectedValues) {
|
||||
this.selectedValues = selectedValues;
|
||||
}
|
||||
|
||||
public List<SapProRouteProduct> getUnSelect() {
|
||||
return unSelect;
|
||||
}
|
||||
|
||||
public void setUnSelect(List<SapProRouteProduct> unSelect) {
|
||||
this.unSelect = unSelect;
|
||||
}
|
||||
|
||||
public List<SapProRouteProduct> getSelected() {
|
||||
return selected;
|
||||
}
|
||||
|
||||
public void setSelected(List<SapProRouteProduct> selected) {
|
||||
this.selected = selected;
|
||||
}
|
||||
|
||||
public String getKey() {
|
||||
return key;
|
||||
}
|
||||
|
||||
public void setKey(String key) {
|
||||
this.key = key;
|
||||
}
|
||||
|
||||
public String getLabel() {
|
||||
return label;
|
||||
}
|
||||
|
||||
public void setLabel(String label) {
|
||||
this.label = label;
|
||||
}
|
||||
|
||||
public void setRecordId(String recordId) {
|
||||
this.recordId = recordId;
|
||||
}
|
||||
|
||||
public String getRecordId() {
|
||||
return recordId;
|
||||
}
|
||||
public void setRouteId(String routeId) {
|
||||
this.routeId = routeId;
|
||||
}
|
||||
|
||||
public String getRouteId() {
|
||||
return routeId;
|
||||
}
|
||||
public void setItemId(String itemId) {
|
||||
this.itemId = itemId;
|
||||
}
|
||||
|
||||
public String getItemId() {
|
||||
return itemId;
|
||||
}
|
||||
public void setItemCode(String itemCode) {
|
||||
this.itemCode = itemCode;
|
||||
}
|
||||
|
||||
public String getItemCode() {
|
||||
return itemCode;
|
||||
}
|
||||
public void setItemName(String itemName) {
|
||||
this.itemName = itemName;
|
||||
}
|
||||
|
||||
public String getItemName() {
|
||||
return itemName;
|
||||
}
|
||||
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 setAttr4(String attr4) {
|
||||
this.attr4 = attr4;
|
||||
}
|
||||
|
||||
public String getAttr4() {
|
||||
return attr4;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("recordId", getRecordId())
|
||||
.append("routeId", getRouteId())
|
||||
.append("itemId", getItemId())
|
||||
.append("itemCode", getItemCode())
|
||||
.append("itemName", getItemName())
|
||||
.append("remark", getRemark())
|
||||
.append("attr1", getAttr1())
|
||||
.append("attr2", getAttr2())
|
||||
.append("attr3", getAttr3())
|
||||
.append("attr4", getAttr4())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.toString();
|
||||
}
|
||||
}
|
@ -1,71 +0,0 @@
|
||||
package com.op.sap.mapper;
|
||||
|
||||
import com.op.common.core.domain.BaseFileData;
|
||||
import com.op.sap.domain.SapBaseFile;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 附件Mapper接口
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-07-10
|
||||
*/
|
||||
@Mapper
|
||||
public interface SapBaseFileMapper {
|
||||
/**
|
||||
* 查询附件
|
||||
*
|
||||
* @param fileId 附件主键
|
||||
* @return 附件
|
||||
*/
|
||||
public SapBaseFile selectBaseFileByFileId(String fileId);
|
||||
|
||||
/**
|
||||
* 查询附件列表
|
||||
*
|
||||
* @param baseFile 附件
|
||||
* @return 附件集合
|
||||
*/
|
||||
public List<SapBaseFile> selectBaseFileList(SapBaseFile baseFile);
|
||||
|
||||
/**
|
||||
* 新增附件
|
||||
*
|
||||
* @param baseFile 附件
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBaseFile(SapBaseFile baseFile);
|
||||
|
||||
/**
|
||||
* 修改附件
|
||||
*
|
||||
* @param baseFile 附件
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBaseFile(SapBaseFile baseFile);
|
||||
|
||||
/**
|
||||
* 删除附件
|
||||
*
|
||||
* @param fileId 附件主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBaseFileByFileId(String fileId);
|
||||
|
||||
/**
|
||||
* 批量删除附件
|
||||
*
|
||||
* @param fileIds 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBaseFileByFileIds(String[] fileIds);
|
||||
|
||||
Boolean insertBaseFileBatch(@Param("baseFiles") List<BaseFileData> baseFiles);
|
||||
|
||||
List<SapBaseFile> getBaseFileBatch(String processId);
|
||||
|
||||
void deleteBaseFileBySourceId(String processId);
|
||||
}
|
@ -1,67 +0,0 @@
|
||||
package com.op.sap.mapper;
|
||||
|
||||
|
||||
|
||||
import com.op.sap.domain.SapBaseProduct;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 物料信息Mapper接口
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-07-18
|
||||
*/
|
||||
@Mapper
|
||||
public interface SapBaseProductMapper {
|
||||
/**
|
||||
* 查询物料信息
|
||||
*
|
||||
* @param productId 物料信息主键
|
||||
* @return 物料信息
|
||||
*/
|
||||
public SapBaseProduct selectBaseProductByProductId(String productId);
|
||||
|
||||
/**
|
||||
* 查询物料信息列表
|
||||
*
|
||||
* @param baseProduct 物料信息
|
||||
* @return 物料信息集合
|
||||
*/
|
||||
public List<SapBaseProduct> selectBaseProductList(SapBaseProduct baseProduct);
|
||||
|
||||
/**
|
||||
* 新增物料信息
|
||||
*
|
||||
* @param baseProduct 物料信息
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBaseProduct(SapBaseProduct baseProduct);
|
||||
|
||||
/**
|
||||
* 修改物料信息
|
||||
*
|
||||
* @param baseProduct 物料信息
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBaseProduct(SapBaseProduct baseProduct);
|
||||
|
||||
/**
|
||||
* 删除物料信息
|
||||
*
|
||||
* @param productId 物料信息主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBaseProductByProductId(String productId);
|
||||
|
||||
/**
|
||||
* 批量删除物料信息
|
||||
*
|
||||
* @param productIds 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBaseProductByProductIds(String[] productIds);
|
||||
|
||||
public String selectBaseProductIDByProductCode(String productCode);
|
||||
}
|
@ -1,65 +0,0 @@
|
||||
package com.op.sap.mapper;
|
||||
|
||||
import com.op.sap.domain.SapProProcessContent;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* 生产工序内容Mapper接口
|
||||
*
|
||||
* @author yinjinlu
|
||||
* @date 2022-05-12
|
||||
*/
|
||||
@Mapper
|
||||
public interface SapProProcessContentMapper
|
||||
{
|
||||
/**
|
||||
* 查询生产工序内容
|
||||
*
|
||||
* @param contentId 生产工序内容主键
|
||||
* @return 生产工序内容
|
||||
*/
|
||||
public SapProProcessContent selectProProcessContentByContentId(String contentId);
|
||||
|
||||
/**
|
||||
* 查询生产工序内容列表
|
||||
*
|
||||
* @param proProcessContent 生产工序内容
|
||||
* @return 生产工序内容集合
|
||||
*/
|
||||
public List<SapProProcessContent> selectProProcessContentList(SapProProcessContent proProcessContent);
|
||||
|
||||
/**
|
||||
* 新增生产工序内容
|
||||
*
|
||||
* @param proProcessContent 生产工序内容
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertProProcessContent(SapProProcessContent proProcessContent);
|
||||
|
||||
/**
|
||||
* 修改生产工序内容
|
||||
*
|
||||
* @param proProcessContent 生产工序内容
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateProProcessContent(SapProProcessContent proProcessContent);
|
||||
|
||||
/**
|
||||
* 删除生产工序内容
|
||||
*
|
||||
* @param contentId 生产工序内容主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteProProcessContentByContentId(String contentId);
|
||||
|
||||
/**
|
||||
* 批量删除生产工序内容
|
||||
*
|
||||
* @param contentIds 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteProProcessContentByContentIds(String[] contentIds);
|
||||
}
|
@ -1,72 +0,0 @@
|
||||
package com.op.sap.mapper;
|
||||
|
||||
import com.op.sap.domain.SapProProcess;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* 生产工序Mapper接口
|
||||
*
|
||||
* @author yinjinlu
|
||||
* @date 2022-05-11
|
||||
*/
|
||||
@Mapper
|
||||
public interface SapProProcessMapper
|
||||
{
|
||||
/**
|
||||
* 查询生产工序
|
||||
*
|
||||
* @param processId 生产工序主键
|
||||
* @return 生产工序
|
||||
*/
|
||||
public SapProProcess selectProProcessByProcessId(String processId);
|
||||
|
||||
/**
|
||||
* 查询生产工序列表
|
||||
*
|
||||
* @param proProcess 生产工序
|
||||
* @return 生产工序集合
|
||||
*/
|
||||
public List<SapProProcess> selectProProcessList(SapProProcess proProcess);
|
||||
|
||||
public SapProProcess checkProcessCodeUnique(SapProProcess proProcess);
|
||||
public SapProProcess checkProcessNameUnique(SapProProcess proProcess);
|
||||
|
||||
|
||||
/**
|
||||
* 新增生产工序
|
||||
*
|
||||
* @param proProcess 生产工序
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertProProcess(SapProProcess proProcess);
|
||||
|
||||
/**
|
||||
* 修改生产工序
|
||||
*
|
||||
* @param proProcess 生产工序
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateProProcess(SapProProcess proProcess);
|
||||
|
||||
/**
|
||||
* 删除生产工序
|
||||
*
|
||||
* @param processId 生产工序主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteProProcessByProcessId(String processId);
|
||||
|
||||
/**
|
||||
* 批量删除生产工序
|
||||
*
|
||||
* @param processIds 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteProProcessByProcessIds(String[] processIds);
|
||||
|
||||
int selectProProcessByProcessName(String processName);
|
||||
}
|
@ -1,81 +0,0 @@
|
||||
package com.op.sap.mapper;
|
||||
|
||||
import com.op.sap.domain.SapProRouteProcess;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* 工艺组成Mapper接口
|
||||
*
|
||||
* @author yinjinlu
|
||||
* @date 2022-05-13
|
||||
*/
|
||||
@Mapper
|
||||
public interface SapProRouteProcessMapper
|
||||
{
|
||||
/**
|
||||
* 查询工艺组成
|
||||
*
|
||||
* @param recordId 工艺组成主键
|
||||
* @return 工艺组成
|
||||
*/
|
||||
public SapProRouteProcess selectProRouteProcessByRecordId(String recordId);
|
||||
|
||||
/**
|
||||
* 查询工艺组成列表
|
||||
*
|
||||
* @param proRouteProcess 工艺组成
|
||||
* @return 工艺组成集合
|
||||
*/
|
||||
public List<SapProRouteProcess> selectProRouteProcessList(SapProRouteProcess proRouteProcess);
|
||||
|
||||
public SapProRouteProcess checkOrderNumExists(SapProRouteProcess proRouteProcess);
|
||||
public SapProRouteProcess checkProcessExists(SapProRouteProcess proRouteProcess);
|
||||
public SapProRouteProcess checkUpdateFlagUnique(SapProRouteProcess proRouteProcess);
|
||||
|
||||
public SapProRouteProcess findPreProcess(SapProRouteProcess proRouteProcess);
|
||||
|
||||
public SapProRouteProcess findNextProcess(SapProRouteProcess proRouteProcess);
|
||||
/**
|
||||
* 新增工艺组成
|
||||
*
|
||||
* @param proRouteProcess 工艺组成
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertProRouteProcess(SapProRouteProcess proRouteProcess);
|
||||
|
||||
/**
|
||||
* 修改工艺组成
|
||||
*
|
||||
* @param proRouteProcess 工艺组成
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateProRouteProcess(SapProRouteProcess proRouteProcess);
|
||||
|
||||
/**
|
||||
* 删除工艺组成
|
||||
*
|
||||
* @param recordId 工艺组成主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteProRouteProcessByRecordId(String recordId);
|
||||
|
||||
/**
|
||||
* 批量删除工艺组成
|
||||
*
|
||||
* @param recordIds 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteProRouteProcessByRecordIds(String[] recordIds);
|
||||
|
||||
/**
|
||||
* 根据工艺路线ID删除所有工序配置
|
||||
* @param routeId
|
||||
* @return
|
||||
*/
|
||||
public int deleteByRouteId(String routeId);
|
||||
|
||||
|
||||
}
|
@ -1,71 +0,0 @@
|
||||
package com.op.sap.service;
|
||||
|
||||
|
||||
|
||||
import com.op.common.core.domain.R;
|
||||
import com.op.sap.domain.SapBaseProduct;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 物料信息Service接口
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-07-18
|
||||
*/
|
||||
public interface ISapBaseProductService {
|
||||
/**
|
||||
* 查询物料信息
|
||||
*
|
||||
* @param productId 物料信息主键
|
||||
* @return 物料信息
|
||||
*/
|
||||
public SapBaseProduct selectBaseProductByProductId(String productId);
|
||||
|
||||
/**
|
||||
* 查询物料信息列表
|
||||
*
|
||||
* @param baseProduct 物料信息
|
||||
* @return 物料信息集合
|
||||
*/
|
||||
public List<SapBaseProduct> selectBaseProductList(SapBaseProduct baseProduct);
|
||||
|
||||
/**
|
||||
* 新增物料信息
|
||||
*
|
||||
* @param baseProduct 物料信息
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBaseProduct(SapBaseProduct baseProduct);
|
||||
|
||||
/**
|
||||
* 修改物料信息
|
||||
*
|
||||
* @param baseProduct 物料信息
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBaseProduct(SapBaseProduct baseProduct);
|
||||
|
||||
/**
|
||||
* 批量删除物料信息
|
||||
*
|
||||
* @param productIds 需要删除的物料信息主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBaseProductByProductIds(String[] productIds);
|
||||
|
||||
/**
|
||||
* 删除物料信息信息
|
||||
*
|
||||
* @param productId 物料信息主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBaseProductByProductId(String productId);
|
||||
|
||||
|
||||
|
||||
public String selectBaseProductIDByProductCode(String productCode);
|
||||
|
||||
|
||||
|
||||
}
|
@ -1,65 +0,0 @@
|
||||
package com.op.sap.service;
|
||||
|
||||
import com.op.common.core.domain.BaseFileData;
|
||||
import com.op.sap.domain.SapBaseFile;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 附件Service接口
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-07-10
|
||||
*/
|
||||
public interface SapBaseFileService {
|
||||
/**
|
||||
* 查询附件
|
||||
*
|
||||
* @param fileId 附件主键
|
||||
* @return 附件
|
||||
*/
|
||||
public SapBaseFile selectBaseFileByFileId(String fileId);
|
||||
|
||||
/**
|
||||
* 查询附件列表
|
||||
*
|
||||
* @param baseFile 附件
|
||||
* @return 附件集合
|
||||
*/
|
||||
public List<SapBaseFile> selectBaseFileList(SapBaseFile baseFile);
|
||||
|
||||
/**
|
||||
* 新增附件
|
||||
*
|
||||
* @param baseFile 附件
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBaseFile(SapBaseFile baseFile);
|
||||
|
||||
/**
|
||||
* 修改附件
|
||||
*
|
||||
* @param baseFile 附件
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBaseFile(SapBaseFile baseFile);
|
||||
|
||||
/**
|
||||
* 批量删除附件
|
||||
*
|
||||
* @param fileIds 需要删除的附件主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBaseFileByFileIds(String[] fileIds);
|
||||
|
||||
/**
|
||||
* 删除附件信息
|
||||
*
|
||||
* @param fileId 附件主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBaseFileByFileId(String fileId);
|
||||
|
||||
public Boolean insertBaseFileBatch(List<BaseFileData> baseFiles);
|
||||
}
|
@ -1,64 +0,0 @@
|
||||
package com.op.sap.service;
|
||||
|
||||
import com.op.sap.domain.SapProRouteProduct;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 工艺线体关联Service接口
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-07-13
|
||||
*/
|
||||
public interface SapProRouteProductService {
|
||||
/**
|
||||
* 查询工艺线体关联
|
||||
*
|
||||
* @param recordId 工艺线体关联主键
|
||||
* @return 工艺线体关联
|
||||
*/
|
||||
public SapProRouteProduct selectProRouteProductByRecordId(String recordId);
|
||||
|
||||
/**
|
||||
* 查询工艺线体关联列表
|
||||
*
|
||||
* @param proRouteProduct 工艺线体关联
|
||||
* @return 工艺线体关联集合
|
||||
*/
|
||||
public List<SapProRouteProduct> selectProRouteProductList(SapProRouteProduct proRouteProduct);
|
||||
|
||||
/**
|
||||
* 新增工艺线体关联
|
||||
*
|
||||
* @param proRouteProduct 工艺线体关联
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertProRouteProduct(SapProRouteProduct proRouteProduct);
|
||||
|
||||
/**
|
||||
* 修改工艺线体关联
|
||||
*
|
||||
* @param proRouteProduct 工艺线体关联
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateProRouteProduct(SapProRouteProduct proRouteProduct);
|
||||
|
||||
/**
|
||||
* 批量删除工艺线体关联
|
||||
*
|
||||
* @param recordIds 需要删除的工艺线体关联主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteProRouteProductByRecordIds(String[] recordIds);
|
||||
|
||||
/**
|
||||
* 删除工艺线体关联信息
|
||||
*
|
||||
* @param recordId 工艺线体关联主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteProRouteProductByRecordId(String recordId);
|
||||
|
||||
SapProRouteProduct getList(SapProRouteProduct proRouteProduct);
|
||||
}
|
@ -1,77 +0,0 @@
|
||||
package com.op.sap.service;
|
||||
|
||||
import com.op.sap.domain.SapProRoute;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 工艺路线Service接口
|
||||
*
|
||||
* @author yinjinlu
|
||||
* @date 2022-05-12
|
||||
*/
|
||||
public interface SapProRouteService
|
||||
{
|
||||
/**
|
||||
* 查询工艺路线
|
||||
*
|
||||
* @param routeId 工艺路线主键
|
||||
* @return 工艺路线
|
||||
*/
|
||||
public SapProRoute selectProRouteByRouteId(String routeId);
|
||||
|
||||
/**
|
||||
* 查询工艺路线列表
|
||||
*
|
||||
* @param proRoute 工艺路线
|
||||
* @return 工艺路线集合
|
||||
*/
|
||||
public List<SapProRoute> selectProRouteList(SapProRoute proRoute);
|
||||
|
||||
/**
|
||||
* 根据物料查找生效的工艺路线
|
||||
* @param itemId
|
||||
* @return
|
||||
*/
|
||||
public SapProRoute getRouteByProductId(String itemId);
|
||||
|
||||
public Boolean checkRouteCodeUnique(SapProRoute proRoute);
|
||||
|
||||
/**
|
||||
* 新增工艺路线
|
||||
*
|
||||
* @param proRoute 工艺路线
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertProRoute(SapProRoute proRoute);
|
||||
|
||||
/**
|
||||
* 修改工艺路线
|
||||
*
|
||||
* @param proRoute 工艺路线
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateProRoute(SapProRoute proRoute);
|
||||
|
||||
/**
|
||||
* 批量删除工艺路线
|
||||
*
|
||||
* @param routeIds 需要删除的工艺路线主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteProRouteByRouteIds(String[] routeIds);
|
||||
|
||||
/**
|
||||
* 删除工艺路线信息
|
||||
*
|
||||
* @param routeId 工艺路线主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteProRouteByRouteId(String routeId);
|
||||
|
||||
public int batchInsertProRoute(SapProRoute proRoute);
|
||||
|
||||
//查询工艺路线是否存在
|
||||
int selectProRrouteByRouteCode(String routeCode);
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
package com.op.sap.service;
|
||||
|
||||
import com.op.common.core.domain.R;
|
||||
import com.op.sap.domain.SapBaseProduct;
|
||||
import com.op.system.api.model.SapProOrder;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface SapService {
|
||||
|
||||
|
||||
|
||||
R<Boolean> sapItem();
|
||||
|
||||
R<Boolean> sapBom();
|
||||
|
||||
R<Boolean> sapProRoute();
|
||||
|
||||
R<Boolean> sapProRouteProduct();
|
||||
|
||||
R<Boolean> sapProRouteProcess();
|
||||
|
||||
|
||||
|
||||
List<SapProOrder> shopOrderSync(SapProOrder sapProOrder);
|
||||
}
|
@ -1,110 +0,0 @@
|
||||
package com.op.sap.service.impl;
|
||||
|
||||
import com.baomidou.dynamic.datasource.annotation.DS;
|
||||
import com.op.common.core.domain.BaseFileData;
|
||||
import com.op.common.core.utils.DateUtils;
|
||||
import com.op.sap.domain.SapBaseFile;
|
||||
import com.op.sap.mapper.SapBaseFileMapper;
|
||||
import com.op.sap.service.SapBaseFileService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 附件Service业务层处理
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-07-10
|
||||
*/
|
||||
@Service
|
||||
public class SapBaseFileServiceImpl implements SapBaseFileService {
|
||||
@Autowired
|
||||
private SapBaseFileMapper baseFileMapper;
|
||||
|
||||
/**
|
||||
* 查询附件
|
||||
*
|
||||
* @param fileId 附件主键
|
||||
* @return 附件
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public SapBaseFile selectBaseFileByFileId(String fileId) {
|
||||
return baseFileMapper.selectBaseFileByFileId(fileId);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询附件列表
|
||||
*
|
||||
* @param baseFile 附件
|
||||
* @return 附件
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public List<SapBaseFile> selectBaseFileList(SapBaseFile baseFile) {
|
||||
return baseFileMapper.selectBaseFileList(baseFile);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增附件
|
||||
*
|
||||
* @param baseFile 附件
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int insertBaseFile(SapBaseFile baseFile) {
|
||||
baseFile.setCreateTime(DateUtils.getNowDate());
|
||||
return baseFileMapper.insertBaseFile(baseFile);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改附件
|
||||
*
|
||||
* @param baseFile 附件
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int updateBaseFile(SapBaseFile baseFile) {
|
||||
baseFile.setUpdateTime(DateUtils.getNowDate());
|
||||
return baseFileMapper.updateBaseFile(baseFile);
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除附件
|
||||
*
|
||||
* @param fileIds 需要删除的附件主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteBaseFileByFileIds(String[] fileIds) {
|
||||
return baseFileMapper.deleteBaseFileByFileIds(fileIds);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除附件信息
|
||||
*
|
||||
* @param fileId 附件主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteBaseFileByFileId(String fileId) {
|
||||
return baseFileMapper.deleteBaseFileByFileId(fileId);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增附件
|
||||
*
|
||||
* @param baseFiles 附件
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public Boolean insertBaseFileBatch(List<BaseFileData> baseFiles) {
|
||||
return baseFileMapper.insertBaseFileBatch(baseFiles);
|
||||
}
|
||||
}
|
@ -1,118 +0,0 @@
|
||||
package com.op.sap.service.impl;
|
||||
|
||||
import com.baomidou.dynamic.datasource.annotation.DS;
|
||||
import com.baomidou.dynamic.datasource.toolkit.DynamicDataSourceContextHolder;
|
||||
import com.op.common.core.domain.R;
|
||||
import com.op.common.core.utils.DateUtils;
|
||||
import com.op.common.security.utils.SecurityUtils;
|
||||
import com.op.sap.domain.SapBaseProduct;
|
||||
import com.op.sap.domain.SapConn;
|
||||
import com.op.sap.mapper.SapBaseProductMapper;
|
||||
import com.op.sap.service.ISapBaseProductService;
|
||||
import com.op.sap.util.SAPConnUtils;
|
||||
import com.op.system.api.RemotePlanService;
|
||||
import com.sap.conn.jco.*;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 物料信息Service业务层处理
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-07-18
|
||||
*/
|
||||
@Service
|
||||
public class SapBaseProductServiceImpl implements ISapBaseProductService {
|
||||
|
||||
|
||||
@Autowired
|
||||
private SapBaseProductMapper baseProductMapper;
|
||||
|
||||
/**
|
||||
* 查询物料信息
|
||||
*
|
||||
* @param productId 物料信息主键
|
||||
* @return 物料信息
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public SapBaseProduct selectBaseProductByProductId(String productId) {
|
||||
return baseProductMapper.selectBaseProductByProductId(productId);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询物料信息列表
|
||||
*
|
||||
* @param baseProduct 物料信息
|
||||
* @return 物料信息
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public List<SapBaseProduct> selectBaseProductList(SapBaseProduct baseProduct) {
|
||||
return baseProductMapper.selectBaseProductList(baseProduct);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增物料信息
|
||||
*
|
||||
* @param baseProduct 物料信息
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int insertBaseProduct(SapBaseProduct baseProduct) {
|
||||
|
||||
baseProduct.setCreateTime(DateUtils.getNowDate());
|
||||
baseProduct.setCreateBy(SecurityUtils.getUsername());
|
||||
return baseProductMapper.insertBaseProduct(baseProduct);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改物料信息
|
||||
*
|
||||
* @param baseProduct 物料信息
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int updateBaseProduct(SapBaseProduct baseProduct) {
|
||||
baseProduct.setUpdateTime(DateUtils.getNowDate());
|
||||
baseProduct.setUpdateBy(SecurityUtils.getUsername());
|
||||
return baseProductMapper.updateBaseProduct(baseProduct);
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除物料信息
|
||||
*
|
||||
* @param productIds 需要删除的物料信息主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteBaseProductByProductIds(String[] productIds) {
|
||||
return baseProductMapper.deleteBaseProductByProductIds(productIds);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除物料信息信息
|
||||
*
|
||||
* @param productId 物料信息主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteBaseProductByProductId(String productId) {
|
||||
return baseProductMapper.deleteBaseProductByProductId(productId);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String selectBaseProductIDByProductCode(String productCode) {
|
||||
return baseProductMapper.selectBaseProductIDByProductCode(productCode);
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -1,132 +0,0 @@
|
||||
package com.op.sap.service.impl;
|
||||
|
||||
import com.baomidou.dynamic.datasource.annotation.DS;
|
||||
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.sap.domain.SapProRouteProduct;
|
||||
import com.op.sap.mapper.SapProRouteProductMapper;
|
||||
import com.op.sap.service.SapProRouteProductService;
|
||||
import org.apache.commons.lang.StringUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 工艺线体关联Service业务层处理
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-07-13
|
||||
*/
|
||||
@Service
|
||||
public class SapProRouteProductServiceImpl implements SapProRouteProductService {
|
||||
@Autowired
|
||||
private SapProRouteProductMapper proRouteProductMapper;
|
||||
|
||||
/**
|
||||
* 查询工艺线体关联
|
||||
*
|
||||
* @param recordId 工艺线体关联主键
|
||||
* @return 工艺线体关联
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public SapProRouteProduct selectProRouteProductByRecordId(String recordId) {
|
||||
return proRouteProductMapper.selectProRouteProductByRecordId(recordId);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询工艺线体关联列表
|
||||
*
|
||||
* @param proRouteProduct 工艺线体关联
|
||||
* @return 工艺线体关联
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public List<SapProRouteProduct> selectProRouteProductList(SapProRouteProduct proRouteProduct) {
|
||||
return proRouteProductMapper.selectProRouteProductList(proRouteProduct);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增工艺线体关联
|
||||
*
|
||||
* @param proRouteProduct 工艺线体关联
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int insertProRouteProduct(SapProRouteProduct proRouteProduct) {
|
||||
Date now = DateUtils.getNowDate();
|
||||
if(StringUtils.isNotBlank(proRouteProduct.getRouteId())){
|
||||
//删除之前的关联关系
|
||||
proRouteProductMapper.deleteByRouteId(proRouteProduct);
|
||||
}
|
||||
if(proRouteProduct.getSelectedValues()!=null){
|
||||
SapProRouteProduct proRouteProductDto =null;
|
||||
for(String ProductCode:proRouteProduct.getSelectedValues()){
|
||||
//查询物料编码对应的各种信息
|
||||
proRouteProductDto = new SapProRouteProduct();
|
||||
proRouteProductDto.setRecordId(IdUtils.fastSimpleUUID());
|
||||
proRouteProductDto.setCreateTime(now);
|
||||
proRouteProductDto.setCreateBy(SecurityUtils.getUsername());
|
||||
proRouteProductDto.setRouteId(proRouteProduct.getRouteId());
|
||||
proRouteProductDto.setItemId(proRouteProduct.getItemId());
|
||||
proRouteProductDto.setItemCode(ProductCode);
|
||||
proRouteProductDto.setItemName(proRouteProduct.getItemName());
|
||||
proRouteProductMapper.insertProRouteProduct(proRouteProductDto);
|
||||
}
|
||||
}
|
||||
//新增关联关系
|
||||
return 1;
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改工艺线体关联
|
||||
*
|
||||
* @param proRouteProduct 工艺线体关联
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int updateProRouteProduct(SapProRouteProduct proRouteProduct) {
|
||||
proRouteProduct.setUpdateTime(DateUtils.getNowDate());
|
||||
return proRouteProductMapper.updateProRouteProduct(proRouteProduct);
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除工艺线体关联
|
||||
*
|
||||
* @param recordIds 需要删除的工艺线体关联主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteProRouteProductByRecordIds(String[] recordIds) {
|
||||
return proRouteProductMapper.deleteProRouteProductByRecordIds(recordIds);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除工艺线体关联信息
|
||||
*
|
||||
* @param recordId 工艺线体关联主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteProRouteProductByRecordId(String recordId) {
|
||||
return proRouteProductMapper.deleteProRouteProductByRecordId(recordId);
|
||||
}
|
||||
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public SapProRouteProduct getList(SapProRouteProduct proRouteProduct) {
|
||||
SapProRouteProduct dto = new SapProRouteProduct();
|
||||
List<SapProRouteProduct> unSelected = proRouteProductMapper.getRouteProdProductListUndo(proRouteProduct);
|
||||
dto.setUnSelect(unSelected);
|
||||
List<SapProRouteProduct> selected= proRouteProductMapper.getRouteProdProductListDo(proRouteProduct);
|
||||
dto.setSelected(selected);
|
||||
return dto;
|
||||
}
|
||||
}
|
@ -1,209 +0,0 @@
|
||||
package com.op.sap.service.impl;
|
||||
|
||||
import com.baomidou.dynamic.datasource.annotation.DS;
|
||||
import com.op.common.core.constant.UserConstants;
|
||||
import com.op.common.core.domain.BaseFileData;
|
||||
import com.op.common.core.utils.DateUtils;
|
||||
import com.op.common.core.utils.StringUtils;
|
||||
import com.op.common.core.utils.uuid.IdUtils;
|
||||
import com.op.common.security.utils.SecurityUtils;
|
||||
import com.op.sap.domain.SapBaseFile;
|
||||
import com.op.sap.domain.SapProRoute;
|
||||
import com.op.sap.mapper.SapBaseFileMapper;
|
||||
import com.op.sap.mapper.SapProRouteMapper;
|
||||
import com.op.sap.service.SapProRouteService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.util.CollectionUtils;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* 工艺路线Service业务层处理
|
||||
*
|
||||
* @author yinjinlu
|
||||
* @date 2022-05-12
|
||||
*/
|
||||
@Service
|
||||
public class SapProRouteServiceImpl implements SapProRouteService {
|
||||
@Autowired
|
||||
private SapProRouteMapper proRouteMapper;
|
||||
@Autowired
|
||||
private SapBaseFileMapper baseFileMapper;
|
||||
|
||||
/**
|
||||
* 查询工艺路线
|
||||
*
|
||||
* @param routeId 工艺路线主键
|
||||
* @return 工艺路线
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public SapProRoute selectProRouteByRouteId(String routeId) {
|
||||
|
||||
SapProRoute p = proRouteMapper.selectProRouteByRouteId(routeId);
|
||||
List<SapBaseFile> files = baseFileMapper.getBaseFileBatch(routeId);
|
||||
if (!CollectionUtils.isEmpty(files)) {
|
||||
p.setFiles(files);
|
||||
}
|
||||
return p;
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询工艺路线列表
|
||||
*
|
||||
* @param proRoute 工艺路线
|
||||
* @return 工艺路线
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public List<SapProRoute> selectProRouteList(SapProRoute proRoute) {
|
||||
return proRouteMapper.selectProRouteList(proRoute);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SapProRoute getRouteByProductId(String itemId) {
|
||||
return proRouteMapper.getRouteByProductId(itemId);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public Boolean checkRouteCodeUnique(SapProRoute proRoute) {
|
||||
SapProRoute route = proRouteMapper.checkRouteCodeUnique(proRoute);
|
||||
String routeId = proRoute.getRouteId();
|
||||
if (StringUtils.isNotNull(route) && !route.getRouteId().equals(routeId)) {
|
||||
return UserConstants.NOT_UNIQUE;
|
||||
}
|
||||
return UserConstants.UNIQUE;
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增工艺路线
|
||||
*
|
||||
* @param proRoute 工艺路线
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int insertProRoute(SapProRoute proRoute) {
|
||||
proRoute.setCreateTime(DateUtils.getNowDate());
|
||||
proRoute.setRouteVersion("V.1");
|
||||
//上传附件
|
||||
if (StringUtils.isNotEmpty(proRoute.getFileList())) {
|
||||
String[] ids = proRoute.getFileList().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(proRoute.getRouteId());
|
||||
file.setCreateBy(SecurityUtils.getUsername());
|
||||
file.setCreateTime(new Date());
|
||||
files.add(file);
|
||||
}
|
||||
baseFileMapper.insertBaseFileBatch(files);
|
||||
}
|
||||
|
||||
return proRouteMapper.insertProRoute(proRoute);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改工艺路线
|
||||
*
|
||||
* @param proRoute 工艺路线
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int updateProRoute(SapProRoute proRoute) {
|
||||
proRoute.setUpdateTime(DateUtils.getNowDate());
|
||||
//上传附件
|
||||
if (StringUtils.isNotEmpty(proRoute.getFileList())) {
|
||||
baseFileMapper.deleteBaseFileBySourceId(proRoute.getRouteId());
|
||||
String[] ids = proRoute.getFileList().split(",");
|
||||
List<BaseFileData> files = new ArrayList<>();
|
||||
BaseFileData file = null;
|
||||
for (String id : ids) {
|
||||
file = new BaseFileData();
|
||||
file.setFileId(IdUtils.fastSimpleUUID());
|
||||
file.setFileAddress(id);
|
||||
file.setFileName(id.split("&fileName=")[1]);
|
||||
file.setSourceId(proRoute.getRouteId());
|
||||
file.setCreateBy(SecurityUtils.getUsername());
|
||||
file.setCreateTime(new Date());
|
||||
files.add(file);
|
||||
}
|
||||
baseFileMapper.insertBaseFileBatch(files);
|
||||
}
|
||||
|
||||
//更新版本V.1->递增
|
||||
String nowRouteVersion = proRoute.getRouteVersion().replace("V", "")
|
||||
.replace(".", "");
|
||||
int nowRouteVersionNum = Integer.parseInt(nowRouteVersion);
|
||||
String newRouteVersionNum = "V." + (++nowRouteVersionNum);
|
||||
proRoute.setRouteVersion(newRouteVersionNum);
|
||||
return proRouteMapper.updateProRoute(proRoute);
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除工艺路线
|
||||
*
|
||||
* @param routeIds 需要删除的工艺路线主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteProRouteByRouteIds(String[] routeIds) {
|
||||
return proRouteMapper.deleteProRouteByRouteIds(routeIds);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除工艺路线信息
|
||||
*
|
||||
* @param routeId 工艺路线主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteProRouteByRouteId(String routeId) {
|
||||
return proRouteMapper.deleteProRouteByRouteId(routeId);
|
||||
}
|
||||
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int batchInsertProRoute(SapProRoute proRoute) {
|
||||
proRoute.setCreateTime(DateUtils.getNowDate());
|
||||
if (StringUtils.isNotEmpty(proRoute.getFileList())) {
|
||||
List<String> ids = proRoute.getIdList();
|
||||
// for (int j = ids.size(); j < 1; j--) {
|
||||
for (String id :ids) {
|
||||
String[] f = proRoute.getFileList().split(",");
|
||||
List<BaseFileData> files = new ArrayList<>();
|
||||
BaseFileData file = null;
|
||||
for (String file1 : f) {
|
||||
file = new BaseFileData();
|
||||
file.setFileId(IdUtils.fastSimpleUUID());
|
||||
file.setFileName(file1.split("&fileName=")[1]);
|
||||
file.setFileAddress(file1);
|
||||
file.setSourceId(id);
|
||||
file.setCreateBy(SecurityUtils.getUsername());
|
||||
file.setCreateTime(new Date());
|
||||
files.add(file);
|
||||
}
|
||||
baseFileMapper.insertBaseFileBatch(files);
|
||||
}
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int selectProRrouteByRouteCode(String routeCode) {
|
||||
return proRouteMapper.selectProRouteByRouteCode(routeCode);
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -1,10 +1,10 @@
|
||||
Spring Boot Version: ${spring-boot.version}
|
||||
Spring Application Name: ${spring.application.name}
|
||||
|
||||
____ _____ _____ _____
|
||||
/ __ \| __ \ / ____| /\ | __ \
|
||||
| | | | |__) |____| (___ / \ | |__) |
|
||||
| | | | ___/______\___ \ / /\ \ | ___/
|
||||
| |__| | | ____) / ____ \| |
|
||||
\____/|_| |_____/_/ \_\_|
|
||||
|
||||
_
|
||||
| |
|
||||
___ _ __ ______ ___ _ _ ___| |_ ___ _ __ ___
|
||||
/ _ \| '_ \______/ __| | | / __| __/ _ \ '_ ` _ \
|
||||
| (_) | |_) | \__ \ |_| \__ \ || __/ | | | | |
|
||||
\___/| .__/ |___/\__, |___/\__\___|_| |_| |_|
|
||||
| | __/ |
|
||||
|_| |___/
|
||||
|
@ -1,132 +0,0 @@
|
||||
<?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.sap.mapper.SapBaseFileMapper">
|
||||
|
||||
<resultMap type="SapBaseFile" id="BaseFileResult">
|
||||
<result property="fileId" column="file_id" />
|
||||
<result property="fileName" column="file_name" />
|
||||
<result property="fileAddress" column="file_address" />
|
||||
<result property="sourceId" column="source_id" />
|
||||
<result property="remark" column="remark" />
|
||||
<result property="attr1" column="attr1" />
|
||||
<result property="attr2" column="attr2" />
|
||||
<result property="attr3" column="attr3" />
|
||||
<result property="attr4" column="attr4" />
|
||||
<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="selectBaseFileVo">
|
||||
select file_id, file_name, file_address, source_id, remark, attr1,
|
||||
attr2, attr3, attr4, create_by, create_time, update_by,
|
||||
update_time from base_file
|
||||
</sql>
|
||||
|
||||
<select id="selectBaseFileList" parameterType="SapBaseFile" resultMap="BaseFileResult">
|
||||
<include refid="selectBaseFileVo"/>
|
||||
<where>
|
||||
<if test="fileName != null and fileName != ''"> and file_name like concat('%', #{fileName}, '%')</if>
|
||||
<if test="fileAddress != null and fileAddress != ''"> and file_address = #{fileAddress}</if>
|
||||
<if test="sourceId != null and sourceId != ''"> and source_id = #{sourceId}</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 = #{attr3}</if>
|
||||
<if test="attr4 != null "> and attr4 = #{attr4}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectBaseFileByFileId" parameterType="String" resultMap="BaseFileResult">
|
||||
<include refid="selectBaseFileVo"/>
|
||||
where file_id = #{fileId}
|
||||
</select>
|
||||
<select id="getBaseFileBatch" resultMap="BaseFileResult">
|
||||
<include refid="selectBaseFileVo"/>
|
||||
where source_id = #{sourceId}
|
||||
</select>
|
||||
|
||||
<insert id="insertBaseFile" parameterType="SapBaseFile">
|
||||
insert into base_file
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="fileId != null">file_id,</if>
|
||||
<if test="fileName != null">file_name,</if>
|
||||
<if test="fileAddress != null">file_address,</if>
|
||||
<if test="sourceId != null">source_id,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
<if test="attr1 != null">attr1,</if>
|
||||
<if test="attr2 != null">attr2,</if>
|
||||
<if test="attr3 != null">attr3,</if>
|
||||
<if test="attr4 != null">attr4,</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="fileId != null">#{fileId},</if>
|
||||
<if test="fileName != null">#{fileName},</if>
|
||||
<if test="fileAddress != null">#{fileAddress},</if>
|
||||
<if test="sourceId != null">#{sourceId},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
<if test="attr1 != null">#{attr1},</if>
|
||||
<if test="attr2 != null">#{attr2},</if>
|
||||
<if test="attr3 != null">#{attr3},</if>
|
||||
<if test="attr4 != null">#{attr4},</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>
|
||||
<insert id="insertBaseFileBatch">
|
||||
INSERT INTO base_file(file_id, file_name, file_address, source_id, remark, create_by, create_time)
|
||||
VALUES
|
||||
<foreach collection="baseFiles" index="" item="baseFile" separator=",">
|
||||
(
|
||||
#{baseFile.fileId},
|
||||
#{baseFile.fileName},
|
||||
#{baseFile.fileAddress},
|
||||
#{baseFile.sourceId},
|
||||
#{baseFile.remark},
|
||||
#{baseFile.createBy},
|
||||
#{baseFile.createTime}
|
||||
)
|
||||
</foreach>
|
||||
</insert>
|
||||
|
||||
<update id="updateBaseFile" parameterType="SapBaseFile">
|
||||
update base_file
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="fileName != null">file_name = #{fileName},</if>
|
||||
<if test="fileAddress != null">file_address = #{fileAddress},</if>
|
||||
<if test="sourceId != null">source_id = #{sourceId},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="attr1 != null">attr1 = #{attr1},</if>
|
||||
<if test="attr2 != null">attr2 = #{attr2},</if>
|
||||
<if test="attr3 != null">attr3 = #{attr3},</if>
|
||||
<if test="attr4 != null">attr4 = #{attr4},</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 file_id = #{fileId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteBaseFileByFileId" parameterType="String">
|
||||
delete from base_file where file_id = #{fileId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteBaseFileByFileIds" parameterType="String">
|
||||
delete from base_file where file_id in
|
||||
<foreach item="fileId" collection="array" open="(" separator="," close=")">
|
||||
#{fileId}
|
||||
</foreach>
|
||||
</delete>
|
||||
<delete id="deleteBaseFileBySourceId">
|
||||
delete from base_file where source_id = #{sourceId}
|
||||
</delete>
|
||||
</mapper>
|
@ -1,260 +0,0 @@
|
||||
<?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.sap.mapper.SapBaseProductMapper">
|
||||
|
||||
<resultMap type="SapBaseProduct" id="BaseProductResult">
|
||||
<result property="productId" column="product_id" />
|
||||
<result property="productCode" column="product_code" />
|
||||
<result property="productDescZh" column="product_desc_zh" />
|
||||
<result property="productModel" column="product_model" />
|
||||
<result property="productDescEn" column="product_desc_en" />
|
||||
<result property="ruleCode" column="rule_code" />
|
||||
<result property="oldProductCode" column="old_product_code" />
|
||||
<result property="partsProductCode" column="parts_product_code" />
|
||||
<result property="skuBarcode" column="sku_barcode" />
|
||||
<result property="length" column="length" />
|
||||
<result property="width" column="width" />
|
||||
<result property="height" column="height" />
|
||||
<result property="grossWeight" column="gross_weight" />
|
||||
<result property="netWeight" column="net_weight" />
|
||||
<result property="tareWeight" column="tare_weight" />
|
||||
<result property="volume" column="volume" />
|
||||
<result property="unitPrice" column="unit_price" />
|
||||
<result property="productGroup" column="product_group" />
|
||||
<result property="productGroupName" column="product_group_name" />
|
||||
<result property="userDefined1" column="user_defined1" />
|
||||
<result property="userDefined2" column="user_defined2" />
|
||||
<result property="userDefined3" column="user_defined3" />
|
||||
<result property="userDefined4" column="user_defined4" />
|
||||
<result property="userDefined5" column="user_defined5" />
|
||||
<result property="userDefined6" column="user_defined6" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="factoryCode" column="factory_code" />
|
||||
<result property="activeFlag" column="active_flag" />
|
||||
<result property="syncFlag" column="sync_flag" />
|
||||
<result property="primaryUom" column="primary_uom" />
|
||||
<result property="delFlag" column="del_flag" />
|
||||
<result property="bstme" column="bstme" />
|
||||
<result property="basicOrder" column="basic_order" />
|
||||
<result property="convOrder" column="conv_order" />
|
||||
<result property="ausme" column="ausme" />
|
||||
<result property="basicIssue" column="basic_issue" />
|
||||
<result property="convIssue" column="conv_issue" />
|
||||
<result property="appendFlag" column="append_flag" />
|
||||
<result property="appendPercent" column="append_percent" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectBaseProductVo">
|
||||
select product_id, product_code, product_desc_zh, product_model,product_desc_en, rule_code, old_product_code, parts_product_code, sku_barcode, length, width, height, gross_weight, net_weight, tare_weight, volume, unit_price, product_group, product_group_name, user_defined1, user_defined2, user_defined3, user_defined4, user_defined5, user_defined6, create_by, create_time, update_by, update_time, factory_code, active_flag, sync_flag, primary_uom, del_flag, bstme, basic_order, conv_order, ausme, basic_issue, conv_issue, append_flag, append_percent from base_product
|
||||
</sql>
|
||||
|
||||
<select id="selectSBaseProductList" parameterType="SapBaseProduct" resultMap="BaseProductResult">
|
||||
<include refid="selectBaseProductVo"/>
|
||||
<where>
|
||||
<if test="productCode != null and productCode != ''"> and product_code = #{productCode}</if>
|
||||
<if test="productDescZh != null and productDescZh != ''"> and product_desc_zh = #{productDescZh}</if>
|
||||
<if test="productModel != null and productModel != ''"> and product_model = #{productModel}</if>
|
||||
<if test="productDescEn != null and productDescEn != ''"> and product_desc_en = #{productDescEn}</if>
|
||||
<if test="ruleCode != null and ruleCode != ''"> and rule_code = #{ruleCode}</if>
|
||||
<if test="oldProductCode != null and oldProductCode != ''"> and old_product_code = #{oldProductCode}</if>
|
||||
<if test="partsProductCode != null and partsProductCode != ''"> and parts_product_code = #{partsProductCode}</if>
|
||||
<if test="skuBarcode != null and skuBarcode != ''"> and sku_barcode = #{skuBarcode}</if>
|
||||
<if test="length != null "> and length = #{length}</if>
|
||||
<if test="width != null "> and width = #{width}</if>
|
||||
<if test="height != null "> and height = #{height}</if>
|
||||
<if test="grossWeight != null "> and gross_weight = #{grossWeight}</if>
|
||||
<if test="netWeight != null "> and net_weight = #{netWeight}</if>
|
||||
<if test="tareWeight != null "> and tare_weight = #{tareWeight}</if>
|
||||
<if test="volume != null "> and volume = #{volume}</if>
|
||||
<if test="unitPrice != null "> and unit_price = #{unitPrice}</if>
|
||||
<if test="productGroup != null and productGroup != ''"> and product_group = #{productGroup}</if>
|
||||
<if test="productGroupName != null and productGroupName != ''"> and product_group_name like concat('%', #{productGroupName}, '%')</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="factoryCode != null and factoryCode != ''"> and factory_code = #{factoryCode}</if>
|
||||
<if test="activeFlag != null and activeFlag != ''"> and active_flag = #{activeFlag}</if>
|
||||
<if test="syncFlag != null and syncFlag != ''"> and sync_flag = #{syncFlag}</if>
|
||||
<if test="primaryUom != null and primaryUom != ''"> and primary_uom = #{primaryUom}</if>
|
||||
<if test="bstme != null and bstme != ''"> and bstme = #{bstme}</if>
|
||||
<if test="basicOrder != null "> and basic_order = #{basicOrder}</if>
|
||||
<if test="convOrder != null "> and conv_order = #{convOrder}</if>
|
||||
<if test="ausme != null and ausme != ''"> and ausme = #{ausme}</if>
|
||||
<if test="basicIssue != null "> and basic_issue = #{basicIssue}</if>
|
||||
<if test="convIssue != null "> and conv_issue = #{convIssue}</if>
|
||||
<if test="appendFlag != null and appendFlag != ''"> and append_flag = #{appendFlag}</if>
|
||||
<if test="appendPercent != null and appendPercent != ''"> and append_percent = #{appendPercent}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectBaseProductByProductId" parameterType="String" resultMap="BaseProductResult">
|
||||
<include refid="selectBaseProductVo"/>
|
||||
where product_id = #{productId}
|
||||
</select>
|
||||
<select id="selectBaseProductIDByProductCode" parameterType="String" resultType="String">
|
||||
select product_id
|
||||
from base_product where product_code = #{productCode}
|
||||
|
||||
</select>
|
||||
|
||||
<insert id="insertBaseProduct" parameterType="SapBaseProduct">
|
||||
insert into base_product
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="productId != null">product_id,</if>
|
||||
<if test="productCode != null and productCode != ''">product_code,</if>
|
||||
<if test="productDescZh != null">product_desc_zh,</if>
|
||||
<if test="productModel != null">product_model,</if>
|
||||
<if test="productDescEn != null">product_desc_en,</if>
|
||||
<if test="ruleCode != null">rule_code,</if>
|
||||
<if test="oldProductCode != null">old_product_code,</if>
|
||||
<if test="partsProductCode != null">parts_product_code,</if>
|
||||
<if test="skuBarcode != null">sku_barcode,</if>
|
||||
<if test="length != null">length,</if>
|
||||
<if test="width != null">width,</if>
|
||||
<if test="height != null">height,</if>
|
||||
<if test="grossWeight != null">gross_weight,</if>
|
||||
<if test="netWeight != null">net_weight,</if>
|
||||
<if test="tareWeight != null">tare_weight,</if>
|
||||
<if test="volume != null">volume,</if>
|
||||
<if test="unitPrice != null">unit_price,</if>
|
||||
<if test="productGroup != null">product_group,</if>
|
||||
<if test="productGroupName != null">product_group_name,</if>
|
||||
<if test="userDefined1 != null">user_defined1,</if>
|
||||
<if test="userDefined2 != null">user_defined2,</if>
|
||||
<if test="userDefined3 != null">user_defined3,</if>
|
||||
<if test="userDefined4 != null">user_defined4,</if>
|
||||
<if test="userDefined5 != null">user_defined5,</if>
|
||||
<if test="userDefined6 != null">user_defined6,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="factoryCode != null">factory_code,</if>
|
||||
<if test="activeFlag != null">active_flag,</if>
|
||||
<if test="syncFlag != null">sync_flag,</if>
|
||||
<if test="primaryUom != null">primary_uom,</if>
|
||||
<if test="delFlag != null">del_flag,</if>
|
||||
<if test="bstme != null">bstme,</if>
|
||||
<if test="basicOrder != null">basic_order,</if>
|
||||
<if test="convOrder != null">conv_order,</if>
|
||||
<if test="ausme != null">ausme,</if>
|
||||
<if test="basicIssue != null">basic_issue,</if>
|
||||
<if test="convIssue != null">conv_issue,</if>
|
||||
<if test="appendFlag != null">append_flag,</if>
|
||||
<if test="appendPercent != null">append_percent,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="productId != null">#{productId},</if>
|
||||
<if test="productCode != null and productCode != ''">#{productCode},</if>
|
||||
<if test="productDescZh != null">#{productDescZh},</if>
|
||||
<if test="productModel != null">#{productModel},</if>
|
||||
<if test="productDescEn != null">#{productDescEn},</if>
|
||||
<if test="ruleCode != null">#{ruleCode},</if>
|
||||
<if test="oldProductCode != null">#{oldProductCode},</if>
|
||||
<if test="partsProductCode != null">#{partsProductCode},</if>
|
||||
<if test="skuBarcode != null">#{skuBarcode},</if>
|
||||
<if test="length != null">#{length},</if>
|
||||
<if test="width != null">#{width},</if>
|
||||
<if test="height != null">#{height},</if>
|
||||
<if test="grossWeight != null">#{grossWeight},</if>
|
||||
<if test="netWeight != null">#{netWeight},</if>
|
||||
<if test="tareWeight != null">#{tareWeight},</if>
|
||||
<if test="volume != null">#{volume},</if>
|
||||
<if test="unitPrice != null">#{unitPrice},</if>
|
||||
<if test="productGroup != null">#{productGroup},</if>
|
||||
<if test="productGroupName != null">#{productGroupName},</if>
|
||||
<if test="userDefined1 != null">#{userDefined1},</if>
|
||||
<if test="userDefined2 != null">#{userDefined2},</if>
|
||||
<if test="userDefined3 != null">#{userDefined3},</if>
|
||||
<if test="userDefined4 != null">#{userDefined4},</if>
|
||||
<if test="userDefined5 != null">#{userDefined5},</if>
|
||||
<if test="userDefined6 != null">#{userDefined6},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
<if test="createTime != null">#{createTime},</if>
|
||||
<if test="updateBy != null">#{updateBy},</if>
|
||||
<if test="updateTime != null">#{updateTime},</if>
|
||||
<if test="factoryCode != null">#{factoryCode},</if>
|
||||
<if test="activeFlag != null">#{activeFlag},</if>
|
||||
<if test="syncFlag != null">#{syncFlag},</if>
|
||||
<if test="primaryUom != null">#{primaryUom},</if>
|
||||
<if test="delFlag != null">#{delFlag},</if>
|
||||
<if test="bstme != null">#{bstme},</if>
|
||||
<if test="basicOrder != null">#{basicOrder},</if>
|
||||
<if test="convOrder != null">#{convOrder},</if>
|
||||
<if test="ausme != null">#{ausme},</if>
|
||||
<if test="basicIssue != null">#{basicIssue},</if>
|
||||
<if test="convIssue != null">#{convIssue},</if>
|
||||
<if test="appendFlag != null">#{appendFlag},</if>
|
||||
<if test="appendPercent != null">#{appendPercent},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateBaseProduct" parameterType="SapBaseProduct">
|
||||
update base_product
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="productCode != null and productCode != ''">product_code = #{productCode},</if>
|
||||
<if test="productDescZh != null">product_desc_zh = #{productDescZh},</if>
|
||||
<if test="productModel != null">product_model = #{productModel},</if>
|
||||
<if test="productDescEn != null">product_desc_en = #{productDescEn},</if>
|
||||
<if test="ruleCode != null">rule_code = #{ruleCode},</if>
|
||||
<if test="oldProductCode != null">old_product_code = #{oldProductCode},</if>
|
||||
<if test="partsProductCode != null">parts_product_code = #{partsProductCode},</if>
|
||||
<if test="skuBarcode != null">sku_barcode = #{skuBarcode},</if>
|
||||
<if test="length != null">length = #{length},</if>
|
||||
<if test="width != null">width = #{width},</if>
|
||||
<if test="height != null">height = #{height},</if>
|
||||
<if test="grossWeight != null">gross_weight = #{grossWeight},</if>
|
||||
<if test="netWeight != null">net_weight = #{netWeight},</if>
|
||||
<if test="tareWeight != null">tare_weight = #{tareWeight},</if>
|
||||
<if test="volume != null">volume = #{volume},</if>
|
||||
<if test="unitPrice != null">unit_price = #{unitPrice},</if>
|
||||
<if test="productGroup != null">product_group = #{productGroup},</if>
|
||||
<if test="productGroupName != null">product_group_name = #{productGroupName},</if>
|
||||
<if test="userDefined1 != null">user_defined1 = #{userDefined1},</if>
|
||||
<if test="userDefined2 != null">user_defined2 = #{userDefined2},</if>
|
||||
<if test="userDefined3 != null">user_defined3 = #{userDefined3},</if>
|
||||
<if test="userDefined4 != null">user_defined4 = #{userDefined4},</if>
|
||||
<if test="userDefined5 != null">user_defined5 = #{userDefined5},</if>
|
||||
<if test="userDefined6 != null">user_defined6 = #{userDefined6},</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>
|
||||
<if test="factoryCode != null">factory_code = #{factoryCode},</if>
|
||||
<if test="activeFlag != null">active_flag = #{activeFlag},</if>
|
||||
<if test="syncFlag != null">sync_flag = #{syncFlag},</if>
|
||||
<if test="primaryUom != null">primary_uom = #{primaryUom},</if>
|
||||
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
||||
<if test="bstme != null">bstme = #{bstme},</if>
|
||||
<if test="basicOrder != null">basic_order = #{basicOrder},</if>
|
||||
<if test="convOrder != null">conv_order = #{convOrder},</if>
|
||||
<if test="ausme != null">ausme = #{ausme},</if>
|
||||
<if test="basicIssue != null">basic_issue = #{basicIssue},</if>
|
||||
<if test="convIssue != null">conv_issue = #{convIssue},</if>
|
||||
<if test="appendFlag != null">append_flag = #{appendFlag},</if>
|
||||
<if test="appendPercent != null">append_percent = #{appendPercent},</if>
|
||||
</trim>
|
||||
where product_id = #{productId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteBaseProductByProductId" parameterType="String">
|
||||
delete from base_product where product_id = #{productId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteBaseProductByProductIds" parameterType="String">
|
||||
delete from base_product where product_id in
|
||||
<foreach item="productId" collection="array" open="(" separator="," close=")">
|
||||
#{productId}
|
||||
</foreach>
|
||||
</delete>
|
||||
|
||||
|
||||
</mapper>
|
@ -1,120 +0,0 @@
|
||||
<?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.sap.mapper.SapProProcessContentMapper">
|
||||
|
||||
<resultMap type="SapProProcessContent" id="ProProcessContentResult">
|
||||
<result property="contentId" column="content_id" />
|
||||
<result property="processId" column="process_id" />
|
||||
<result property="orderNum" column="order_num" />
|
||||
<result property="contentText" column="content_text" />
|
||||
<result property="device" column="device" />
|
||||
<result property="material" column="material" />
|
||||
<result property="docUrl" column="doc_url" />
|
||||
<result property="remark" column="remark" />
|
||||
<result property="attr1" column="attr1" />
|
||||
<result property="attr2" column="attr2" />
|
||||
<result property="attr3" column="attr3" />
|
||||
<result property="attr4" column="attr4" />
|
||||
<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="selectProProcessContentVo">
|
||||
select content_id, process_id, order_num, content_text, device, material, doc_url, remark, attr1, attr2, attr3, attr4, create_by, create_time, update_by, update_time from pro_process_content
|
||||
</sql>
|
||||
|
||||
<select id="selectProProcessContentList" parameterType="SapProProcessContent" resultMap="ProProcessContentResult">
|
||||
<include refid="selectProProcessContentVo"/>
|
||||
<where>
|
||||
<if test="processId != null "> and process_id = #{processId}</if>
|
||||
<if test="orderNum != null "> and order_num = #{orderNum}</if>
|
||||
<if test="contentText != null and contentText != ''"> and content_text = #{contentText}</if>
|
||||
<if test="device != null and device != ''"> and device = #{device}</if>
|
||||
<if test="material != null and material != ''"> and material = #{material}</if>
|
||||
<if test="docUrl != null and docUrl != ''"> and doc_url = #{docUrl}</if>
|
||||
</where>
|
||||
order by order_num asc
|
||||
</select>
|
||||
|
||||
<select id="selectProProcessContentByContentId" parameterType="String" resultMap="ProProcessContentResult">
|
||||
<include refid="selectProProcessContentVo"/>
|
||||
where content_id = #{contentId}
|
||||
</select>
|
||||
|
||||
<insert id="insertProProcessContent" parameterType="SapProProcessContent" useGeneratedKeys="true" keyProperty="contentId">
|
||||
insert into pro_process_content
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
content_id,
|
||||
<if test="processId != null">process_id,</if>
|
||||
<if test="orderNum != null">order_num,</if>
|
||||
<if test="contentText != null">content_text,</if>
|
||||
<if test="device != null">device,</if>
|
||||
<if test="material != null">material,</if>
|
||||
<if test="docUrl != null">doc_url,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
<if test="attr1 != null">attr1,</if>
|
||||
<if test="attr2 != null">attr2,</if>
|
||||
<if test="attr3 != null">attr3,</if>
|
||||
<if test="attr4 != null">attr4,</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=",">
|
||||
#{contentId},
|
||||
<if test="processId != null">#{processId},</if>
|
||||
<if test="orderNum != null">#{orderNum},</if>
|
||||
<if test="contentText != null">#{contentText},</if>
|
||||
<if test="device != null">#{device},</if>
|
||||
<if test="material != null">#{material},</if>
|
||||
<if test="docUrl != null">#{docUrl},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
<if test="attr1 != null">#{attr1},</if>
|
||||
<if test="attr2 != null">#{attr2},</if>
|
||||
<if test="attr3 != null">#{attr3},</if>
|
||||
<if test="attr4 != null">#{attr4},</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="updateProProcessContent" parameterType="SapProProcessContent">
|
||||
update pro_process_content
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="processId != null">process_id = #{processId},</if>
|
||||
<if test="orderNum != null">order_num = #{orderNum},</if>
|
||||
<if test="contentText != null">content_text = #{contentText},</if>
|
||||
<if test="device != null">device = #{device},</if>
|
||||
<if test="material != null">material = #{material},</if>
|
||||
<if test="docUrl != null">doc_url = #{docUrl},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="attr1 != null">attr1 = #{attr1},</if>
|
||||
<if test="attr2 != null">attr2 = #{attr2},</if>
|
||||
<if test="attr3 != null">attr3 = #{attr3},</if>
|
||||
<if test="attr4 != null">attr4 = #{attr4},</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 content_id = #{contentId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteProProcessContentByContentId" parameterType="String">
|
||||
delete from pro_process_content where content_id = #{contentId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteProProcessContentByContentIds" parameterType="String">
|
||||
delete from pro_process_content where content_id in
|
||||
<foreach item="contentId" collection="array" open="(" separator="," close=")">
|
||||
#{contentId}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
@ -1,154 +0,0 @@
|
||||
<?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.sap.mapper.SapProProcessMapper">
|
||||
|
||||
<resultMap type="SapProProcess" id="ProProcessResult">
|
||||
<result property="processId" column="process_id" />
|
||||
<result property="processCode" column="process_code" />
|
||||
<result property="processName" column="process_name" />
|
||||
<result property="attention" column="attention" />
|
||||
<result property="enableFlag" column="enable_flag" />
|
||||
<result property="remark" column="remark" />
|
||||
<result property="attr1" column="attr1" />
|
||||
<result property="attr2" column="attr2" />
|
||||
<result property="attr3" column="attr3" />
|
||||
<result property="attr4" column="attr4" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="splitMerge" column="split_merge" />
|
||||
<result property="splitMergNum" column="split_merg_num" />
|
||||
<result property="sync" column="sync"/>
|
||||
<result property="workCenter" column="work_center"/>
|
||||
<result property="workTime" column="work_time"/>
|
||||
<result property="equipment" column="equipment"/>
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectProProcessVo">
|
||||
select process_id, process_code, process_name, attention,
|
||||
enable_flag, remark, attr1, attr2, attr3, attr4, create_by, create_time,
|
||||
update_by, update_time,split_merge,split_merg_num,sync,work_center,work_time,equipment
|
||||
from pro_process
|
||||
</sql>
|
||||
|
||||
<select id="selectProProcessList" parameterType="SapProProcess" resultMap="ProProcessResult">
|
||||
<include refid="selectProProcessVo"/>
|
||||
<where>
|
||||
<if test="processCode != null and processCode != ''"> and process_code = #{processCode}</if>
|
||||
<if test="processName != null and processName != ''"> and process_name like concat('%', #{processName}, '%')</if>
|
||||
<if test="attention != null and attention != ''"> and attention = #{attention}</if>
|
||||
<if test="enableFlag != null and enableFlag != ''"> and enable_flag = #{enableFlag}</if>
|
||||
</where>
|
||||
order by create_time desc
|
||||
</select>
|
||||
|
||||
<select id="selectProProcessByProcessId" parameterType="String" resultMap="ProProcessResult">
|
||||
<include refid="selectProProcessVo"/>
|
||||
where process_id = #{processId}
|
||||
</select>
|
||||
|
||||
<select id="checkProcessCodeUnique" parameterType="SapProProcess" resultMap="ProProcessResult">
|
||||
select top 1 process_id, process_code, process_name, attention, enable_flag,
|
||||
remark, attr1, attr2, attr3, attr4, create_by, create_time,
|
||||
update_by, update_time from pro_process
|
||||
where process_code = #{processCode}
|
||||
</select>
|
||||
|
||||
<select id="checkProcessNameUnique" parameterType="SapProProcess" resultMap="ProProcessResult">
|
||||
select top 1 process_id, process_code, process_name, attention, enable_flag,
|
||||
remark, attr1, attr2, attr3, attr4, create_by, create_time,
|
||||
update_by, update_time from pro_process
|
||||
where process_name = #{processName}
|
||||
</select>
|
||||
|
||||
<select id="selectProProcessByProcessName" parameterType="String" resultType="Integer">
|
||||
select count(process_name) from pro_process where process_name = #{processName}
|
||||
</select>
|
||||
|
||||
<insert id="insertProProcess" parameterType="SapProProcess" useGeneratedKeys="true" keyProperty="processId">
|
||||
insert into pro_process
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
process_id,
|
||||
<if test="processCode != null and processCode != ''">process_code,</if>
|
||||
<if test="processName != null and processName != ''">process_name,</if>
|
||||
<if test="attention != null">attention,</if>
|
||||
<if test="enableFlag != null and enableFlag != ''">enable_flag,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
<if test="attr1 != null">attr1,</if>
|
||||
<if test="attr2 != null">attr2,</if>
|
||||
<if test="attr3 != null">attr3,</if>
|
||||
<if test="attr4 != null">attr4,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="splitMerge != null">split_merge,</if>
|
||||
<if test="splitMergNum != null">split_merg_num,</if>
|
||||
<if test="sync != null">sync,</if>
|
||||
<if test="workCenter != null">work_center,</if>
|
||||
<if test="workTime != null">work_time,</if>
|
||||
<if test="equipment != null">equipment,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
#{processId},
|
||||
<if test="processCode != null and processCode != ''">#{processCode},</if>
|
||||
<if test="processName != null and processName != ''">#{processName},</if>
|
||||
<if test="attention != null">#{attention},</if>
|
||||
<if test="enableFlag != null and enableFlag != ''">#{enableFlag},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
<if test="attr1 != null">#{attr1},</if>
|
||||
<if test="attr2 != null">#{attr2},</if>
|
||||
<if test="attr3 != null">#{attr3},</if>
|
||||
<if test="attr4 != null">#{attr4},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
<if test="createTime != null">#{createTime},</if>
|
||||
<if test="updateBy != null">#{updateBy},</if>
|
||||
<if test="updateTime != null">#{updateTime},</if>
|
||||
<if test="splitMerge != null">#{splitMerge},</if>
|
||||
<if test="splitMergNum != null">#{splitMergNum},</if>
|
||||
<if test="sync != null">#{sync},</if>
|
||||
<if test="workCenter != null">#{workCenter},</if>
|
||||
<if test="workTime != null">#{workTime},</if>
|
||||
<if test="equipment != null">#{equipment},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
<update id="updateProProcess" parameterType="SapProProcess">
|
||||
update pro_process
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="processCode != null and processCode != ''">process_code = #{processCode},</if>
|
||||
<if test="processName != null and processName != ''">process_name = #{processName},</if>
|
||||
<if test="attention != null">attention = #{attention},</if>
|
||||
<if test="enableFlag != null and enableFlag != ''">enable_flag = #{enableFlag},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="attr1 != null">attr1 = #{attr1},</if>
|
||||
<if test="attr2 != null">attr2 = #{attr2},</if>
|
||||
<if test="attr3 != null">attr3 = #{attr3},</if>
|
||||
<if test="attr4 != null">attr4 = #{attr4},</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>
|
||||
<if test="splitMerge != null">split_merge = #{splitMerge},</if>
|
||||
<if test="splitMergNum != null">split_merg_num = #{splitMergNum},</if>
|
||||
<if test="sync != null">sync = #{sync},</if>
|
||||
<if test="workCenter != null">work_center = #{workCenter},</if>
|
||||
<if test="workTime != null">work_time = #{workTime},</if>
|
||||
<if test="equipment != null">equipment = #{equipment},</if>
|
||||
</trim>
|
||||
where process_id = #{processId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteProProcessByProcessId" parameterType="String">
|
||||
delete from pro_process where process_id = #{processId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteProProcessByProcessIds" parameterType="String">
|
||||
delete from pro_process where process_id in
|
||||
<foreach item="processId" collection="array" open="(" separator="," close=")">
|
||||
#{processId}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
@ -1,150 +0,0 @@
|
||||
<?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.sap.mapper.SapProRouteMapper">
|
||||
|
||||
<resultMap type="SapProRoute" id="ProRouteResult">
|
||||
<result property="routeId" column="route_id" />
|
||||
<result property="routeCode" column="route_code" />
|
||||
<result property="routeName" column="route_name" />
|
||||
<result property="routeDesc" column="route_desc" />
|
||||
<result property="enableFlag" column="enable_flag" />
|
||||
<result property="remark" column="remark" />
|
||||
<result property="attr1" column="attr1" />
|
||||
<result property="attr2" column="attr2" />
|
||||
<result property="attr3" column="attr3" />
|
||||
<result property="attr4" column="attr4" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="routeVersion" column="route_version" />
|
||||
<result property="needCheck" column="need_check" />
|
||||
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectProRouteVo">
|
||||
select route_id, route_code, route_name, route_desc, enable_flag, remark,
|
||||
attr1, attr2, attr3, attr4, create_by, create_time, update_by, update_time,
|
||||
route_version,need_check
|
||||
from pro_route
|
||||
</sql>
|
||||
|
||||
<select id="selectProRouteList" parameterType="SapProRoute" resultMap="ProRouteResult">
|
||||
<include refid="selectProRouteVo"/>
|
||||
<where>
|
||||
<if test="routeCode != null and routeCode != ''"> and route_code = #{routeCode}</if>
|
||||
<if test="routeName != null and routeName != ''"> and route_name like concat('%', #{routeName}, '%')</if>
|
||||
<if test="routeDesc != null and routeDesc != ''"> and route_desc = #{routeDesc}</if>
|
||||
<if test="enableFlag != null and enableFlag != ''"> and enable_flag = #{enableFlag}</if>
|
||||
</where>
|
||||
order by create_time desc
|
||||
</select>
|
||||
|
||||
<select id="selectProRouteByRouteId" parameterType="String" resultMap="ProRouteResult">
|
||||
<include refid="selectProRouteVo"/>
|
||||
where route_id = #{routeId}
|
||||
</select>
|
||||
<select id="selectProRouteByRouteCode" parameterType="String" resultType="Integer">
|
||||
select count(route_code) from pro_route where route_code = #{routeCode}
|
||||
</select>
|
||||
|
||||
<select id="getRouteByProductId" parameterType="String" resultMap="ProRouteResult">
|
||||
select r.*
|
||||
from pro_route r
|
||||
left join pro_route_product p
|
||||
on p.route_id = r.route_id
|
||||
where r.enable_flag = 'Y'
|
||||
and p.item_id = #{itemId}
|
||||
</select>
|
||||
|
||||
<select id="checkRouteCodeUnique" parameterType="SapProRoute" resultMap="ProRouteResult">
|
||||
select top 1 route_id, route_code, route_name, route_desc,
|
||||
enable_flag, remark, attr1, attr2, attr3, attr4,
|
||||
create_by, create_time, update_by, update_time,need_check
|
||||
from pro_route
|
||||
where route_code = #{routeCode}
|
||||
</select>
|
||||
|
||||
<select id="selectAllRoute" resultMap="ProRouteResult">
|
||||
select route_code, route_name
|
||||
from pro_route
|
||||
where enable_flag = 'Y'
|
||||
</select>
|
||||
|
||||
<insert id="insertProRoute" parameterType="SapProRoute" useGeneratedKeys="true" keyProperty="routeId">
|
||||
insert into pro_route
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="routeId != null and routeId != ''">route_id,</if>
|
||||
<if test="routeCode != null and routeCode != ''">route_code,</if>
|
||||
<if test="routeName != null and routeName != ''">route_name,</if>
|
||||
<if test="routeDesc != null">route_desc,</if>
|
||||
<if test="enableFlag != null and enableFlag != ''">enable_flag,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
<if test="attr1 != null">attr1,</if>
|
||||
<if test="attr2 != null">attr2,</if>
|
||||
<if test="attr3 != null">attr3,</if>
|
||||
<if test="attr4 != null">attr4,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="routeVersion != null">route_version,</if>
|
||||
<if test="needCheck != null">need_check,</if>
|
||||
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="routeId != null and routeId != ''">#{routeId},</if>
|
||||
<if test="routeCode != null and routeCode != ''">#{routeCode},</if>
|
||||
<if test="routeName != null and routeName != ''">#{routeName},</if>
|
||||
<if test="routeDesc != null">#{routeDesc},</if>
|
||||
<if test="enableFlag != null and enableFlag != ''">#{enableFlag},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
<if test="attr1 != null">#{attr1},</if>
|
||||
<if test="attr2 != null">#{attr2},</if>
|
||||
<if test="attr3 != null">#{attr3},</if>
|
||||
<if test="attr4 != null">#{attr4},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
<if test="createTime != null">#{createTime},</if>
|
||||
<if test="updateBy != null">#{updateBy},</if>
|
||||
<if test="updateTime != null">#{updateTime},</if>
|
||||
<if test="routeVersion != null">#{routeVersion},</if>
|
||||
<if test="needCheck != null">#{needCheck},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
|
||||
<update id="updateProRoute" parameterType="SapProRoute">
|
||||
update pro_route
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="routeCode != null and routeCode != ''">route_code = #{routeCode},</if>
|
||||
<if test="routeName != null and routeName != ''">route_name = #{routeName},</if>
|
||||
<if test="routeDesc != null">route_desc = #{routeDesc},</if>
|
||||
<if test="enableFlag != null and enableFlag != ''">enable_flag = #{enableFlag},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="attr1 != null">attr1 = #{attr1},</if>
|
||||
<if test="attr2 != null">attr2 = #{attr2},</if>
|
||||
<if test="attr3 != null">attr3 = #{attr3},</if>
|
||||
<if test="attr4 != null">attr4 = #{attr4},</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>
|
||||
<if test="routeVersion != null">route_version = #{routeVersion},</if>
|
||||
<if test="needCheck != null">#{needCheck},</if>
|
||||
</trim>
|
||||
where route_id = #{routeId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteProRouteByRouteId" parameterType="String">
|
||||
delete from pro_route where route_id = #{routeId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteProRouteByRouteIds" parameterType="String">
|
||||
delete from pro_route where route_id in
|
||||
<foreach item="routeId" collection="array" open="(" separator="," close=")">
|
||||
#{routeId}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
@ -1,229 +0,0 @@
|
||||
<?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.sap.mapper.SapProRouteProcessMapper">
|
||||
|
||||
<resultMap type="SapProRouteProcess" id="ProRouteProcessResult">
|
||||
<result property="recordId" column="record_id" />
|
||||
<result property="routeId" column="route_id" />
|
||||
<result property="processId" column="process_id" />
|
||||
<result property="processCode" column="process_code" />
|
||||
<result property="processName" column="process_name" />
|
||||
<result property="orderNum" column="order_num" />
|
||||
<result property="nextProcessId" column="next_process_id" />
|
||||
<result property="nextProcessCode" column="next_process_code" />
|
||||
<result property="nextProcessName" column="next_process_name" />
|
||||
<result property="linkType" column="link_type" />
|
||||
<result property="defaultPreTime" column="default_pre_time" />
|
||||
<result property="defaultSufTime" column="default_suf_time" />
|
||||
<result property="colorCode" column="color_code" />
|
||||
<result property="keyFlag" column="key_flag" ></result>
|
||||
<result property="remark" column="remark" />
|
||||
<result property="attr1" column="attr1" />
|
||||
<result property="attr2" column="attr2" />
|
||||
<result property="attr3" column="attr3" />
|
||||
<result property="attr4" column="attr4" />
|
||||
<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="selectProRouteProcessVo">
|
||||
select record_id, route_id, process_id, process_code, process_name, order_num, next_process_id, next_process_code, next_process_name, link_type, default_pre_time, default_suf_time, color_code,key_flag, remark, attr1, attr2, attr3, attr4, create_by, create_time, update_by, update_time from pro_route_process
|
||||
</sql>
|
||||
|
||||
|
||||
<select id="selectProRouteProcessList" parameterType="SapProRouteProcess" resultMap="ProRouteProcessResult">
|
||||
<include refid="selectProRouteProcessVo"/>
|
||||
<where>
|
||||
<if test="routeId != null "> and route_id = #{routeId}</if>
|
||||
<if test="processId != null "> and process_id = #{processId}</if>
|
||||
<if test="processCode != null and processCode != ''"> and process_code = #{processCode}</if>
|
||||
<if test="processName != null and processName != ''"> and process_name like concat('%', #{processName}, '%')</if>
|
||||
<if test="orderNum != null "> and order_num = #{orderNum}</if>
|
||||
<if test="nextProcessId != null "> and next_process_id = #{nextProcessId}</if>
|
||||
<if test="nextProcessCode != null and nextProcessCode != ''"> and next_process_code = #{nextProcessCode}</if>
|
||||
<if test="nextProcessName != null and nextProcessName != ''"> and next_process_name like concat('%', #{nextProcessName}, '%')</if>
|
||||
<if test="linkType != null and linkType != ''"> and link_type = #{linkType}</if>
|
||||
<if test="defaultPreTime != null "> and default_pre_time = #{defaultPreTime}</if>
|
||||
<if test="defaultSufTime != null "> and default_suf_time = #{defaultSufTime}</if>
|
||||
<if test="colorCode != null and colorCode != ''"> and color_code = #{colorCode}</if>
|
||||
<if test="keyFlag !=null and keyFlag !=''"> and key_flag = #{keyFlag}</if>
|
||||
</where>
|
||||
order by order_num asc
|
||||
</select>
|
||||
|
||||
<select id="selectProRouteProcessByRecordId" parameterType="String" resultMap="ProRouteProcessResult">
|
||||
<include refid="selectProRouteProcessVo"/>
|
||||
where record_id = #{recordId}
|
||||
</select>
|
||||
|
||||
<select id="checkOrderNumExists" parameterType="SapProRouteProcess" resultMap="ProRouteProcessResult">
|
||||
select top 1 record_id, route_id, process_id, process_code, process_name,
|
||||
order_num, next_process_id, next_process_code, next_process_name,
|
||||
link_type, default_pre_time, default_suf_time, color_code,key_flag,
|
||||
remark, attr1, attr2, attr3, attr4, create_by, create_time, update_by,
|
||||
update_time
|
||||
from pro_route_process
|
||||
where route_id = #{routeId} and order_num = #{orderNum}
|
||||
</select>
|
||||
|
||||
<select id="checkProcessExists" parameterType="SapProRouteProcess" resultMap="ProRouteProcessResult">
|
||||
select top 1 record_id, route_id, process_id, process_code, process_name,
|
||||
order_num, next_process_id, next_process_code, next_process_name,
|
||||
link_type, default_pre_time, default_suf_time, color_code,key_flag,
|
||||
remark, attr1, attr2, attr3, attr4, create_by, create_time, update_by,
|
||||
update_time
|
||||
from pro_route_process
|
||||
where route_id = #{routeId} and process_id = #{processId}
|
||||
</select>
|
||||
|
||||
<select id="checkUpdateFlagUnique" parameterType="SapProRouteProcess" resultMap="ProRouteProcessResult">
|
||||
select top 1 record_id, route_id, process_id, process_code, process_name,
|
||||
order_num, next_process_id, next_process_code, next_process_name,
|
||||
link_type, default_pre_time, default_suf_time, color_code,key_flag,
|
||||
remark, attr1, attr2, attr3, attr4, create_by, create_time, update_by,
|
||||
update_time
|
||||
from pro_route_process
|
||||
where route_id = #{routeId} and key_flag = 'Y'
|
||||
</select>
|
||||
|
||||
<select id="findPreProcess" parameterType="SapProRouteProcess" resultMap="ProRouteProcessResult">
|
||||
select top 1 record_id, route_id, process_id, process_code, process_name,
|
||||
order_num, next_process_id, next_process_code, next_process_name,
|
||||
link_type, default_pre_time, default_suf_time, color_code,key_flag,
|
||||
remark, attr1, attr2, attr3, attr4, create_by, create_time, update_by,
|
||||
update_time
|
||||
from pro_route_process
|
||||
where route_id = #{routeId}
|
||||
<choose>
|
||||
<when test="orderNum != null "> and order_num < #{orderNum}</when>
|
||||
<otherwise>
|
||||
AND order_num < (
|
||||
SELECT top 1 order_num
|
||||
FROM pro_route_process
|
||||
WHERE route_id = #{routeId}
|
||||
)
|
||||
</otherwise>
|
||||
</choose>
|
||||
ORDER BY order_num DESC
|
||||
</select>
|
||||
|
||||
<select id="findNextProcess" parameterType="SapProRouteProcess" resultMap="ProRouteProcessResult">
|
||||
select top 1 record_id, route_id, process_id, process_code, process_name, order_num,
|
||||
next_process_id, next_process_code, next_process_name, link_type, default_pre_time,
|
||||
default_suf_time, color_code,key_flag, remark, attr1, attr2, attr3, attr4, create_by,
|
||||
create_time, update_by, update_time from pro_route_process
|
||||
where route_id = #{routeId}
|
||||
<choose>
|
||||
<when test="orderNum != null "> and order_num > #{orderNum}</when>
|
||||
<otherwise>
|
||||
AND order_num > (
|
||||
SELECT top 1 order_num
|
||||
FROM pro_route_process
|
||||
WHERE route_id = #{routeId}
|
||||
)
|
||||
</otherwise>
|
||||
</choose>
|
||||
ORDER BY order_num ASC
|
||||
</select>
|
||||
|
||||
<insert id="insertProRouteProcess" parameterType="SapProRouteProcess" useGeneratedKeys="true" keyProperty="recordId">
|
||||
insert into pro_route_process
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="recordId != null and recordId != ''">record_id,</if>
|
||||
<if test="routeId != null">route_id,</if>
|
||||
<if test="processId != null">process_id,</if>
|
||||
<if test="processCode != null">process_code,</if>
|
||||
<if test="processName != null">process_name,</if>
|
||||
<if test="orderNum != null">order_num,</if>
|
||||
<if test="nextProcessId != null">next_process_id,</if>
|
||||
<if test="nextProcessCode != null">next_process_code,</if>
|
||||
<if test="nextProcessName != null">next_process_name,</if>
|
||||
<if test="linkType != null">link_type,</if>
|
||||
<if test="defaultPreTime != null">default_pre_time,</if>
|
||||
<if test="defaultSufTime != null">default_suf_time,</if>
|
||||
<if test="colorCode != null">color_code,</if>
|
||||
<if test="keyFlag !=null">key_flag,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
<if test="attr1 != null">attr1,</if>
|
||||
<if test="attr2 != null">attr2,</if>
|
||||
<if test="attr3 != null">attr3,</if>
|
||||
<if test="attr4 != null">attr4,</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="recordId != null and recordId != ''">#{recordId},</if>
|
||||
<if test="routeId != null">#{routeId},</if>
|
||||
<if test="processId != null">#{processId},</if>
|
||||
<if test="processCode != null">#{processCode},</if>
|
||||
<if test="processName != null">#{processName},</if>
|
||||
<if test="orderNum != null">#{orderNum},</if>
|
||||
<if test="nextProcessId != null">#{nextProcessId},</if>
|
||||
<if test="nextProcessCode != null">#{nextProcessCode},</if>
|
||||
<if test="nextProcessName != null">#{nextProcessName},</if>
|
||||
<if test="linkType != null">#{linkType},</if>
|
||||
<if test="defaultPreTime != null">#{defaultPreTime},</if>
|
||||
<if test="defaultSufTime != null">#{defaultSufTime},</if>
|
||||
<if test="colorCode != null">#{colorCode},</if>
|
||||
<if test="keyFlag !=null">#{keyFlag},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
<if test="attr1 != null">#{attr1},</if>
|
||||
<if test="attr2 != null">#{attr2},</if>
|
||||
<if test="attr3 != null">#{attr3},</if>
|
||||
<if test="attr4 != null">#{attr4},</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="updateProRouteProcess" parameterType="SapProRouteProcess">
|
||||
update pro_route_process
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="routeId != null">route_id = #{routeId},</if>
|
||||
<if test="processId != null">process_id = #{processId},</if>
|
||||
<if test="processCode != null">process_code = #{processCode},</if>
|
||||
<if test="processName != null">process_name = #{processName},</if>
|
||||
<if test="orderNum != null">order_num = #{orderNum},</if>
|
||||
<if test="nextProcessId != null">next_process_id = #{nextProcessId},</if>
|
||||
<if test="nextProcessCode != null">next_process_code = #{nextProcessCode},</if>
|
||||
<if test="nextProcessName != null">next_process_name = #{nextProcessName},</if>
|
||||
<if test="linkType != null">link_type = #{linkType},</if>
|
||||
<if test="defaultPreTime != null">default_pre_time = #{defaultPreTime},</if>
|
||||
<if test="defaultSufTime != null">default_suf_time = #{defaultSufTime},</if>
|
||||
<if test="keyFlag !=null">key_flag = #{keyFlag},</if>
|
||||
<if test="colorCode != null">color_code = #{colorCode},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="attr1 != null">attr1 = #{attr1},</if>
|
||||
<if test="attr2 != null">attr2 = #{attr2},</if>
|
||||
<if test="attr3 != null">attr3 = #{attr3},</if>
|
||||
<if test="attr4 != null">attr4 = #{attr4},</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 record_id = #{recordId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteProRouteProcessByRecordId" parameterType="String">
|
||||
delete from pro_route_process where record_id = #{recordId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteProRouteProcessByRecordIds" parameterType="String">
|
||||
delete from pro_route_process where record_id in
|
||||
<foreach item="recordId" collection="array" open="(" separator="," close=")">
|
||||
#{recordId}
|
||||
</foreach>
|
||||
</delete>
|
||||
<delete id="deleteByRouteId" parameterType="String">
|
||||
delete from pro_route_process where route_id = #{routeId}
|
||||
</delete>
|
||||
</mapper>
|
@ -1,148 +0,0 @@
|
||||
<?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.sap.mapper.SapProRouteProductMapper">
|
||||
|
||||
<resultMap type="SapProRouteProduct" id="ProRouteProductResult">
|
||||
<result property="recordId" column="record_id" />
|
||||
<result property="routeId" column="route_id" />
|
||||
<result property="itemId" column="item_id" />
|
||||
<result property="itemCode" column="item_code" />
|
||||
<result property="itemName" column="item_name" />
|
||||
<result property="remark" column="remark" />
|
||||
<result property="attr1" column="attr1" />
|
||||
<result property="attr2" column="attr2" />
|
||||
<result property="attr3" column="attr3" />
|
||||
<result property="attr4" column="attr4" />
|
||||
<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="selectProRouteProductVo">
|
||||
select record_id, route_id, item_id, item_code, item_name, remark, attr1, attr2, attr3, attr4, create_by, create_time, update_by, update_time from pro_route_product
|
||||
</sql>
|
||||
|
||||
<select id="selectProRouteProductList" parameterType="SapProRouteProduct" resultMap="ProRouteProductResult">
|
||||
<include refid="selectProRouteProductVo"/>
|
||||
<where>
|
||||
<if test="routeId != null and routeId != ''"> and route_id = #{routeId}</if>
|
||||
<if test="itemId != null and itemId != ''"> and item_id = #{itemId}</if>
|
||||
<if test="itemCode != null and itemCode != ''"> and item_code = #{itemCode}</if>
|
||||
<if test="itemName != null and itemName != ''"> and item_name like concat('%', #{itemName}, '%')</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>
|
||||
<if test="attr4 != null and attr4 != ''"> and attr4 = #{attr4}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectProRouteProductByRecordId" parameterType="String" resultMap="ProRouteProductResult">
|
||||
<include refid="selectProRouteProductVo"/>
|
||||
where record_id = #{recordId}
|
||||
</select>
|
||||
<!-- 原来逻辑:关联工厂里面的线体-->
|
||||
<!-- <select id="getRouteProdProductListUndo" resultType="com.op.technology.domain.ProRouteProduct">-->
|
||||
<!-- select sf.f_code [key],-->
|
||||
<!-- sf.factory_name label-->
|
||||
<!-- from sys_factory sf-->
|
||||
<!-- where sf.f_type='l' and sf.status = '1' and sf.del_flag = '0'-->
|
||||
<!-- </select>-->
|
||||
<!-- 现在逻辑:关联产品-->
|
||||
<select id="getRouteProdProductListUndo" resultType="com.op.sap.domain.SapProRouteProduct">
|
||||
select bp.product_code [key],
|
||||
bp.product_desc_zh label,
|
||||
bp.product_desc_zh itemName,
|
||||
bp.product_id itemId
|
||||
from base_product bp
|
||||
where bp.active_flag = '1' and bp.del_flag = '0'
|
||||
</select>
|
||||
|
||||
<!-- <select id="getRouteProdProductListDo" resultType="com.op.technology.domain.ProRouteProduct">-->
|
||||
<!-- select pl.item_code [key],-->
|
||||
<!-- sf.factory_name label-->
|
||||
<!-- from pro_route_product pl-->
|
||||
<!-- left join sys_factory sf on pl.item_code = sf.f_code-->
|
||||
<!-- where pl.route_id = #{routeId}-->
|
||||
<!-- </select>-->
|
||||
|
||||
<select id="getRouteProdProductListDo" resultType="com.op.sap.domain.SapProRouteProduct">
|
||||
select pp.item_code [key],
|
||||
bp.product_desc_zh label
|
||||
from pro_route_product pp
|
||||
left join base_product bp on pp.item_code = bp.product_code
|
||||
where pp.route_id = #{routeId}
|
||||
</select>
|
||||
|
||||
<insert id="insertProRouteProduct" parameterType="SapProRouteProduct">
|
||||
insert into pro_route_product
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="recordId != null">record_id,</if>
|
||||
<if test="routeId != null and routeId != ''">route_id,</if>
|
||||
<if test="itemId != null and itemId != ''">item_id,</if>
|
||||
<if test="itemCode != null and itemCode != ''">item_code,</if>
|
||||
<if test="itemName != null and itemName != ''">item_name,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
<if test="attr1 != null">attr1,</if>
|
||||
<if test="attr2 != null">attr2,</if>
|
||||
<if test="attr3 != null">attr3,</if>
|
||||
<if test="attr4 != null">attr4,</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="recordId != null">#{recordId},</if>
|
||||
<if test="routeId != null and routeId != ''">#{routeId},</if>
|
||||
<if test="itemId != null and itemId != ''">#{itemId},</if>
|
||||
<if test="itemCode != null and itemCode != ''">#{itemCode},</if>
|
||||
<if test="itemName != null and itemName != ''">#{itemName},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
<if test="attr1 != null">#{attr1},</if>
|
||||
<if test="attr2 != null">#{attr2},</if>
|
||||
<if test="attr3 != null">#{attr3},</if>
|
||||
<if test="attr4 != null">#{attr4},</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="updateProRouteProduct" parameterType="SapProRouteProduct">
|
||||
update pro_route_product
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="routeId != null and routeId != ''">route_id = #{routeId},</if>
|
||||
<if test="itemId != null and itemId != ''">item_id = #{itemId},</if>
|
||||
<if test="itemCode != null and itemCode != ''">item_code = #{itemCode},</if>
|
||||
<if test="itemName != null and itemName != ''">item_name = #{itemName},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="attr1 != null">attr1 = #{attr1},</if>
|
||||
<if test="attr2 != null">attr2 = #{attr2},</if>
|
||||
<if test="attr3 != null">attr3 = #{attr3},</if>
|
||||
<if test="attr4 != null">attr4 = #{attr4},</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 record_id = #{recordId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteProRouteProductByRecordId" parameterType="String">
|
||||
delete from pro_route_product where record_id = #{recordId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteProRouteProductByRecordIds" parameterType="String">
|
||||
delete from pro_route_product where record_id in
|
||||
<foreach item="recordId" collection="array" open="(" separator="," close=")">
|
||||
#{recordId}
|
||||
</foreach>
|
||||
</delete>
|
||||
<delete id="deleteByRouteId">
|
||||
delete from pro_route_product where route_id = #{routeId}
|
||||
</delete>
|
||||
</mapper>
|
Loading…
Reference in New Issue