领料单提交

highway
zhaoxiaolin 2 years ago
parent a5340c0934
commit 7fc87674e9

@ -4,6 +4,7 @@ import com.op.common.core.constant.ServiceNameConstants;
import com.op.common.core.domain.BaseFileData;
import com.op.common.core.domain.R;
import com.op.system.api.domain.dto.WCSDTO;
import com.op.system.api.factory.RemoteMesFallbackFactory;
import com.op.system.api.model.SapProOrder;
import org.springframework.cloud.openfeign.FeignClient;
@ -25,5 +26,11 @@ public interface RemoteMesService {
@PostMapping("/file/upLoadFile")
public R<Boolean> upLoadFile(@RequestBody List<BaseFileData> files);
/**下一工序机台集合获取**/
@PostMapping("/wcsInterface/requestDestinationStations")
public R<WCSDTO> requestDestinationStations(@RequestBody WCSDTO wCSDTO);
/**获取领料单**/
@PostMapping("/prepare/getMesPrepare")
public R getMesPrepare();
}

@ -4,6 +4,7 @@ import com.op.common.core.domain.BaseFileData;
import com.op.common.core.domain.R;
import com.op.system.api.RemoteMesService;
import com.op.system.api.domain.dto.WCSDTO;
import com.op.system.api.model.SapProOrder;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@ -29,6 +30,16 @@ public class RemoteMesFallbackFactory implements FallbackFactory<RemoteMesServic
public R<Boolean> upLoadFile(List<BaseFileData> files) {
return R.fail("上传失败:" + throwable.getMessage());
}
@Override
public R<WCSDTO> requestDestinationStations(WCSDTO wCSDTO) {
return R.fail("下一站点获取失败:" + throwable.getMessage());
}
@Override
public R getMesPrepare() {
return R.fail("领料单获取失败:" + throwable.getMessage());
}
};
}
}

@ -1,5 +1,7 @@
package com.op.job.task;
import com.op.system.api.RemoteMesService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import com.op.common.core.utils.StringUtils;
@ -10,6 +12,10 @@ import com.op.common.core.utils.StringUtils;
*/
@Component("ryTask")
public class RyTask {
@Autowired
private RemoteMesService remoteMesService;
public void ryMultipleParams(String s, Boolean b, Long l, Double d, Integer i) {
System.out.println(StringUtils.format("执行多参方法: 字符串类型{},布尔类型{},长整型{},浮点型{},整形{}", s, b, l, d, i));
}
@ -22,4 +28,9 @@ public class RyTask {
System.out.println("执行无参方法");
}
public void getMesPrepareTask(){
System.out.println("++同步领料单+开始++getMesPrepareTask+++++");
remoteMesService.getMesPrepare();
}
}

@ -3,6 +3,7 @@ package com.op.mes.controller;
import java.util.List;
import javax.servlet.http.HttpServletResponse;
import com.op.common.core.domain.R;
import com.op.common.core.utils.uuid.IdUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties;
@ -26,7 +27,7 @@ import com.op.common.core.web.page.TableDataInfo;
/**
* Controller
*
*
* @author Open Platform
* @date 2023-08-03
*/
@ -98,4 +99,11 @@ public class MesPrepareController extends BaseController {
public AjaxResult remove(@PathVariable String[] prepareIds) {
return toAjax(mesPrepareService.deleteMesPrepareByPrepareIds(prepareIds));
}
@Log(title = "备料单", businessType = BusinessType.INSERT)
@PostMapping("/getMesPrepare")
public R getMesPrepare() {
return mesPrepareService.getMesPrepare();
}
}

@ -9,7 +9,7 @@ import com.op.common.core.web.domain.BaseEntity;
/**
* mes mes_prepare_detail
*
*
* @author Open Platform
* @date 2023-08-04
*/
@ -41,7 +41,9 @@ public class MesPrepareDetail extends BaseEntity {
/** 生产数量 */
@Excel(name = "生产数量")
private Long quantity;
private String quantity;
private String fundQuanlity;
/** 工单生产日期 */
@JsonFormat(pattern = "yyyy-MM-dd")
@ -75,11 +77,57 @@ public class MesPrepareDetail extends BaseEntity {
/** 产品类型 */
@Excel(name = "产品类型")
private String prodType;
/** 库位 */
private String locator;
private String needDate;
private String recoil;
private String buyFlag;
public String getBuyFlag() {
return buyFlag;
}
public void setBuyFlag(String buyFlag) {
this.buyFlag = buyFlag;
}
/** $column.columnComment */
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
private String factoryCode;
public String getRecoil() {
return recoil;
}
public void setRecoil(String recoil) {
this.recoil = recoil;
}
public String getFundQuanlity() {
return fundQuanlity;
}
public void setFundQuanlity(String fundQuanlity) {
this.fundQuanlity = fundQuanlity;
}
public String getNeedDate() {
return needDate;
}
public void setNeedDate(String needDate) {
this.needDate = needDate;
}
public String getLocator() {
return locator;
}
public void setLocator(String locator) {
this.locator = locator;
}
public void setRecordId(String recordId) {
this.recordId = recordId;
}
@ -122,11 +170,11 @@ public class MesPrepareDetail extends BaseEntity {
public String getUnit() {
return unit;
}
public void setQuantity(Long quantity) {
public void setQuantity(String quantity) {
this.quantity = quantity;
}
public Long getQuantity() {
public String getQuantity() {
return quantity;
}
public void setProductDate(Date productDate) {

@ -3,17 +3,18 @@ package com.op.mes.mapper;
import java.util.List;
import com.op.mes.domain.MesPrepareDetail;
import org.apache.ibatis.annotations.Param;
/**
* mesMapper
*
*
* @author Open Platform
* @date 2023-08-04
*/
public interface MesPrepareDetailMapper {
/**
* mes
*
*
* @param recordId mes
* @return mes
*/
@ -21,7 +22,7 @@ public interface MesPrepareDetailMapper {
/**
* mes
*
*
* @param mesPrepareDetail mes
* @return mes
*/
@ -29,7 +30,7 @@ public interface MesPrepareDetailMapper {
/**
* mes
*
*
* @param mesPrepareDetail mes
* @return
*/
@ -37,7 +38,7 @@ public interface MesPrepareDetailMapper {
/**
* mes
*
*
* @param mesPrepareDetail mes
* @return
*/
@ -45,7 +46,7 @@ public interface MesPrepareDetailMapper {
/**
* mes
*
*
* @param recordId mes
* @return
*/
@ -53,9 +54,11 @@ public interface MesPrepareDetailMapper {
/**
* mes
*
*
* @param recordIds
* @return
*/
public int deleteMesPrepareDetailByRecordIds(String[] recordIds);
public void insertMesPrepareDetails(@Param("list") List<MesPrepareDetail> details);
}

@ -1,15 +1,18 @@
package com.op.mes.service.impl;
import java.util.List;
import java.util.Map;
import java.util.*;
import java.util.concurrent.*;
import java.util.stream.Collectors;
import com.alibaba.fastjson.JSON;
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.core.utils.uuid.IdUtils;
import com.op.common.core.web.domain.AjaxResult;
import com.op.common.security.utils.SecurityUtils;
import com.op.mes.domain.MesPrepareDetail;
import com.op.mes.mapper.MesPrepareDetailMapper;
import com.op.system.api.RemoteSapService;
import com.op.system.api.RemoteUserService;
@ -148,12 +151,66 @@ public class MesPrepareServiceImpl implements IMesPrepareService {
List<SapMaterialPreparation> list = sapMaterialPreparationList.stream()
.filter(a->a.getWERKS().equals(poolName))
.collect(Collectors.toList());
for(SapMaterialPreparation sap:list){
//取出各单位集合中所有单位名称
Set<String> orderCodes = list.stream().map(SapMaterialPreparation::getAUFNR).collect(Collectors.toSet());
for(String orderCode : orderCodes){
/**mes_prepare**/
String mesPrepareId = IdUtils.fastSimpleUUID();
MesPrepare mesPrepare = new MesPrepare();
mesPrepare.setPrepareId(mesPrepareId);
mesPrepare.setWorkorderCode(orderCode);//工单(子)
mesPrepare.setCreateTime(DateUtils.getNowDate());
mesPrepare.setCreateBy(SecurityUtils.getUsername());
mesPrepare.setStatus("L0");//默认待确认
mesPrepareMapper.insertMesPrepare(mesPrepare);
/**mes_prepare_detail**/
List<MesPrepareDetail> details = new ArrayList<>();
List<SapMaterialPreparation> listdetails = list.stream()
.filter(a->a.getAUFNR().equals(orderCode))
.collect(Collectors.toList());
MesPrepareDetail detail = null;
Date createDate = DateUtils.getNowDate();
for(SapMaterialPreparation sap:listdetails){
detail = new MesPrepareDetail();
detail.setPrepareId(mesPrepareId);
detail.setRecordId(IdUtils.fastSimpleUUID());
detail.setAttr1(sap.getRSPOS());//预留/相关需求的项目编号
detail.setMaterialCode(sap.getMATNR());//物料号
detail.setMaterailName(sap.getMAKTX());//物料描述(短文本)
detail.setFactoryCode(sap.getWERKS());//工厂
detail.setLocator(sap.getLGORT());//库存地点
detail.setNeedDate(sap.getBDTER());//组件的需求日期
detail.setQuantity(sap.getBDMNG());////需求量
detail.setFundQuanlity(sap.getZQLSL());//欠料数量
detail.setUnit(sap.getMEINS());//基本计量单位
detail.setRecoil(sap.getRGEKZ());//反冲标识
detail.setBuyFlag(sap.getDBSKZ());//直接采购标识
detail.setCreateBy(SecurityUtils.getUsername());
detail.setCreateTime(createDate);
details.add(detail);
}
mesPrepareDetailMapper.insertMesPrepareDetails(details);
}
/**mes_prepare**/
//mesPrepareMapper.insertMesPrepare();
/**mes_prepare_detail**/
//mesPrepareDetailMapper.insertMesPrepareDetail()
}
public static void main(String args[]){
List<SapMaterialPreparation> list = new ArrayList<>();
SapMaterialPreparation p1 = new SapMaterialPreparation();
p1.setAUFNR("1001");
p1.setWERKS("1001a");
list.add(p1);
SapMaterialPreparation p2 = new SapMaterialPreparation();
p2.setAUFNR("1001");
p2.setWERKS("1001b");
list.add(p2);
SapMaterialPreparation p3 = new SapMaterialPreparation();
p3.setAUFNR("1002");
p3.setWERKS("1002a");
list.add(p3);
//取出各单位集合中所有单位名称
Set<String> orderCodes = list.stream().map(SapMaterialPreparation::getAUFNR).collect(Collectors.toSet());
System.out.println(JSON.toJSONString(orderCodes));
}
}

@ -110,8 +110,23 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="factoryCode != null">#{factoryCode},</if>
</trim>
</insert>
<insert id="insertMesPrepareDetails">
INSERT INTO mes_prepare_detail (
record_id,prepare_id,material_code,material_name,unit,
quantity,create_by,create_time,factory_code,status,
locator,need_date,recoil,fund_quanlity,buy_flag
)VALUES
<foreach collection="list" item="d" index="index" separator=",">
(
#{list.recordId},#{list.prepareId},#{list.materialCode},#{list.materialName},#{list.unit},
#{list.quantity},#{list.createBy},#{list.createTime},#{list.factoryCode},#{list.status},
#{list.locator},#{list.needDate},#{list.recoil},#{list.fundQuanlity},#{list.buyFlag},
)
</foreach>
</insert>
<update id="updateMesPrepareDetail" parameterType="MesPrepareDetail">
<update id="updateMesPrepareDetail" parameterType="MesPrepareDetail">
update mes_prepare_detail
<trim prefix="SET" suffixOverrides=",">
<if test="prepareId != null and prepareId != ''">prepare_id = #{prepareId},</if>

@ -3,14 +3,11 @@ package com.op.quality.service.serviceImpl;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.dynamic.datasource.toolkit.DynamicDataSourceContextHolder;
import com.op.common.core.domain.R;
//import com.op.quality.domain.BaseFile;
import com.op.quality.domain.BaseFile;
import com.op.quality.domain.QcProCheck;
//import com.op.quality.mapper.BaseFileMapper;
import com.op.quality.mapper.BaseFileMapper;
import com.op.quality.mapper.QcProCheckMapper;
import com.op.quality.service.QcProCheckService;
import com.sap.conn.jco.JCoException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

@ -1,10 +1,15 @@
package com.op.sap.controller;
import com.op.common.core.domain.R;
import com.op.common.core.utils.DateUtils;
import com.op.common.core.web.controller.BaseController;
import com.op.common.core.web.domain.AjaxResult;
import com.op.common.log.annotation.Log;
import com.op.common.log.enums.BusinessType;
import com.op.sap.service.*;
import com.op.sap.service.SapBomService;
import com.op.sap.domain.SapBom;
import com.op.sap.service.SapMaterialPreparationService;
import com.op.sap.service.SapOrderService;
import com.op.system.api.model.SapProOrder;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
@ -13,10 +18,8 @@ import java.util.List;
@RestController
@RequestMapping("/sap")
public class SapController {
public class SapController extends BaseController {
@Autowired
private SapService sapService;
@Autowired
private SapOrderService sapOrderService;
@ -32,9 +35,19 @@ public class SapController {
*/
@PostMapping("/shopOrderSync")
@Log(title = "同步SAP订单", businessType = BusinessType.SAP)
public AjaxResult shopOrderSync(@RequestBody SapProOrder sapProOrder){
public AjaxResult shopOrderSync(@RequestBody SapProOrder sapProOrder){
return sapOrderService.shopOrderSync(sapProOrder);
}
/**
*
* @return
*/
// @PostMapping("/itemSync")
// public List itemSync(){
// return sapService.itemSync();
// }
/**
*
* @return
@ -46,30 +59,17 @@ public class SapController {
}
/**
*
*
* @param shopOrder
* @return
*/
@PostMapping("saveItem")
public R<Boolean> saveItem(){
return sapService.sapItem();
}
// @PostMapping("saveBom")
// public R<Boolean> saveBom(){
// return sapService.sapBom();
// }
@PostMapping("saveProRoute")
public R<Boolean> saveProRoute(){return sapService.sapProRoute();}
@PostMapping("/sapProRouteProduct")
public R<Boolean> sapProRouteProduct(){
return sapService.sapProRouteProduct();
}
@PostMapping("/sapProRouteProcess")
public R<Boolean> sapProRouteProcess() {
return sapService.sapProRouteProcess();
@PostMapping("/materialPreparation")
@Log(title = "生产订单备料单接口", businessType = BusinessType.SAP)
public AjaxResult materialPreparation(@RequestParam("shopOrder") String shopOrder){
return sapMaterialPreparationService.MaterialPreparation(shopOrder);
}
}
}

@ -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,482 +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.math.BigDecimal;
/**
* base_product
*
* @author JGY
* @date 2023-07-18
*/
public class SapBaseProduct extends BaseEntity {
private static final long serialVersionUID = 1L;
/** 主键ID */
private String productId;
/** 物料编码 */
@Excel(name = "物料编码")
private String productCode;
/** 物料名称 */
@Excel(name = "物料名称")
private String productDescZh;
/** 物料名称 */
@Excel(name = "物料型号")
private String productModel;
/** 英文描述 */
@Excel(name = "英文描述")
private String productDescEn;
/** 序列号规则代码 */
@Excel(name = "序列号规则代码")
private String ruleCode;
/** 旧物料号 */
@Excel(name = "旧物料号")
private String oldProductCode;
/** 散件物料号 */
@Excel(name = "散件物料号")
private String partsProductCode;
/** 69码 */
@Excel(name = "69码")
private String skuBarcode;
/** 长 */
@Excel(name = "长")
private BigDecimal length;
/** 宽 */
@Excel(name = "宽")
private BigDecimal width;
/** 高 */
@Excel(name = "高")
private BigDecimal height;
/** 毛重 */
@Excel(name = "毛重")
private BigDecimal grossWeight;
/** 净重 */
@Excel(name = "净重")
private BigDecimal netWeight;
/** 皮重 */
@Excel(name = "皮重")
private BigDecimal tareWeight;
/** 体积 */
@Excel(name = "体积")
private BigDecimal volume;
/** 单价 */
@Excel(name = "单价")
private BigDecimal unitPrice;
/** 物料组 */
@Excel(name = "物料类别组")
private String productGroup;
/** $column.columnComment */
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
private String productGroupName;
/** 用户自定义1 */
@Excel(name = "用户自定义1")
private String userDefined1;
/** 用户自定义2 */
@Excel(name = "用户自定义2")
private String userDefined2;
/** 用户自定义3 */
@Excel(name = "用户自定义3")
private String userDefined3;
/** $column.columnComment */
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
private String userDefined4;
/** $column.columnComment */
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
private String userDefined5;
/** $column.columnComment */
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
private String userDefined6;
/** 工厂编码 */
@Excel(name = "工厂编码")
private String factoryCode;
/** 激活标记 */
@Excel(name = "激活标记")
private String activeFlag;
/** $column.columnComment */
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
private String syncFlag;
/** $column.columnComment */
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
private String primaryUom;
/** $column.columnComment */
private String delFlag;
/** 订单单位 */
@Excel(name = "订单单位")
private String bstme;
/** $column.columnComment */
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
private BigDecimal basicOrder;
/** $column.columnComment */
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
private BigDecimal convOrder;
/** 发货单位 */
@Excel(name = "发货单位")
private String ausme;
/** $column.columnComment */
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
private BigDecimal basicIssue;
/** $column.columnComment */
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
private BigDecimal convIssue;
/** 是否补料0否 */
@Excel(name = "是否补料", readConverterExp = "是否补料0否")
private String appendFlag;
/** 补料比例 */
@Excel(name = "补料比例")
private String appendPercent;
public void setProductId(String productId) {
this.productId = productId;
}
public String getProductId() {
return productId;}
public void setProductCode(String productCode) {
this.productCode = productCode;
}
public String getProductCode() {
return productCode;
}
public void setProductDescZh(String productDescZh) {
this.productDescZh = productDescZh;
}
public String getProductDescZh() {
return productDescZh;
}
public void setProductModel(String productModel) {
this.productModel = productModel;
}
public String getProductModel() {
return productModel;
}
public void setProductDescEn(String productDescEn) {
this.productDescEn = productDescEn;
}
public String getProductDescEn() {
return productDescEn;
}
public void setRuleCode(String ruleCode) {
this.ruleCode = ruleCode;
}
public String getRuleCode() {
return ruleCode;
}
public void setOldProductCode(String oldProductCode) {
this.oldProductCode = oldProductCode;
}
public String getOldProductCode() {
return oldProductCode;
}
public void setPartsProductCode(String partsProductCode) {
this.partsProductCode = partsProductCode;
}
public String getPartsProductCode() {
return partsProductCode;
}
public void setSkuBarcode(String skuBarcode) {
this.skuBarcode = skuBarcode;
}
public String getSkuBarcode() {
return skuBarcode;
}
public void setLength(BigDecimal length) {
this.length = length;
}
public BigDecimal getLength() {
return length;
}
public void setWidth(BigDecimal width) {
this.width = width;
}
public BigDecimal getWidth() {
return width;
}
public void setHeight(BigDecimal height) {
this.height = height;
}
public BigDecimal getHeight() {
return height;
}
public void setGrossWeight(BigDecimal grossWeight) {
this.grossWeight = grossWeight;
}
public BigDecimal getGrossWeight() {
return grossWeight;
}
public void setNetWeight(BigDecimal netWeight) {
this.netWeight = netWeight;
}
public BigDecimal getNetWeight() {
return netWeight;
}
public void setTareWeight(BigDecimal tareWeight) {
this.tareWeight = tareWeight;
}
public BigDecimal getTareWeight() {
return tareWeight;
}
public void setVolume(BigDecimal volume) {
this.volume = volume;
}
public BigDecimal getVolume() {
return volume;
}
public void setUnitPrice(BigDecimal unitPrice) {
this.unitPrice = unitPrice;
}
public BigDecimal getUnitPrice() {
return unitPrice;
}
public void setProductGroup(String productGroup) {
this.productGroup = productGroup;
}
public String getProductGroup() {
return productGroup;
}
public void setProductGroupName(String productGroupName) {
this.productGroupName = productGroupName;
}
public String getProductGroupName() {
return productGroupName;
}
public void setUserDefined1(String userDefined1) {
this.userDefined1 = userDefined1;
}
public String getUserDefined1() {
return userDefined1;
}
public void setUserDefined2(String userDefined2) {
this.userDefined2 = userDefined2;
}
public String getUserDefined2() {
return userDefined2;
}
public void setUserDefined3(String userDefined3) {
this.userDefined3 = userDefined3;
}
public String getUserDefined3() {
return userDefined3;
}
public void setUserDefined4(String userDefined4) {
this.userDefined4 = userDefined4;
}
public String getUserDefined4() {
return userDefined4;
}
public void setUserDefined5(String userDefined5) {
this.userDefined5 = userDefined5;
}
public String getUserDefined5() {
return userDefined5;
}
public void setUserDefined6(String userDefined6) {
this.userDefined6 = userDefined6;
}
public String getUserDefined6() {
return userDefined6;
}
public void setFactoryCode(String factoryCode) {
this.factoryCode = factoryCode;
}
public String getFactoryCode() {
return factoryCode;
}
public void setActiveFlag(String activeFlag) {
this.activeFlag = activeFlag;
}
public String getActiveFlag() {
return activeFlag;
}
public void setSyncFlag(String syncFlag) {
this.syncFlag = syncFlag;
}
public String getSyncFlag() {
return syncFlag;
}
public void setPrimaryUom(String primaryUom) {
this.primaryUom = primaryUom;
}
public String getPrimaryUom() {
return primaryUom;
}
public void setDelFlag(String delFlag) {
this.delFlag = delFlag;
}
public String getDelFlag() {
return delFlag;
}
public void setBstme(String bstme) {
this.bstme = bstme;
}
public String getBstme() {
return bstme;
}
public void setBasicOrder(BigDecimal basicOrder) {
this.basicOrder = basicOrder;
}
public BigDecimal getBasicOrder() {
return basicOrder;
}
public void setConvOrder(BigDecimal convOrder) {
this.convOrder = convOrder;
}
public BigDecimal getConvOrder() {
return convOrder;
}
public void setAusme(String ausme) {
this.ausme = ausme;
}
public String getAusme() {
return ausme;
}
public void setBasicIssue(BigDecimal basicIssue) {
this.basicIssue = basicIssue;
}
public BigDecimal getBasicIssue() {
return basicIssue;
}
public void setConvIssue(BigDecimal convIssue) {
this.convIssue = convIssue;
}
public BigDecimal getConvIssue() {
return convIssue;
}
public void setAppendFlag(String appendFlag) {
this.appendFlag = appendFlag;
}
public String getAppendFlag() {
return appendFlag;
}
public void setAppendPercent(String appendPercent) {
this.appendPercent = appendPercent;
}
public String getAppendPercent() {
return appendPercent;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("productId", getProductId())
.append("productCode", getProductCode())
.append("productDescZh", getProductDescZh())
.append("productDescEn", getProductDescEn())
.append("ruleCode", getRuleCode())
.append("oldProductCode", getOldProductCode())
.append("partsProductCode", getPartsProductCode())
.append("skuBarcode", getSkuBarcode())
.append("length", getLength())
.append("width", getWidth())
.append("height", getHeight())
.append("grossWeight", getGrossWeight())
.append("netWeight", getNetWeight())
.append("tareWeight", getTareWeight())
.append("volume", getVolume())
.append("unitPrice", getUnitPrice())
.append("productGroup", getProductGroup())
.append("productGroupName", getProductGroupName())
.append("userDefined1", getUserDefined1())
.append("userDefined2", getUserDefined2())
.append("userDefined3", getUserDefined3())
.append("userDefined4", getUserDefined4())
.append("userDefined5", getUserDefined5())
.append("userDefined6", getUserDefined6())
.append("createBy", getCreateBy())
.append("createTime", getCreateTime())
.append("updateBy", getUpdateBy())
.append("updateTime", getUpdateTime())
.append("factoryCode", getFactoryCode())
.append("activeFlag", getActiveFlag())
.append("syncFlag", getSyncFlag())
.append("primaryUom", getPrimaryUom())
.append("delFlag", getDelFlag())
.append("bstme", getBstme())
.append("basicOrder", getBasicOrder())
.append("convOrder", getConvOrder())
.append("ausme", getAusme())
.append("basicIssue", getBasicIssue())
.append("convIssue", getConvIssue())
.append("appendFlag", getAppendFlag())
.append("appendPercent", getAppendPercent())
.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,84 +0,0 @@
package com.op.sap.mapper;
import com.op.sap.domain.SapProRoute;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
/**
* 线Mapper
*
* @author yinjinlu
* @date 2022-05-12
*/
@Mapper
public interface SapProRouteMapper {
/**
* 线
*
* @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 SapProRoute checkRouteCodeUnique(SapProRoute proRoute);
/**
* 线
*
* @param proRoute 线
* @return
*/
public int insertProRoute(SapProRoute proRoute);
/**
* 线
*
* @param proRoute 线
* @return
*/
public int updateProRoute(SapProRoute proRoute);
/**
* 线
*
* @param routeId 线
* @return
*/
public int deleteProRouteByRouteId(String routeId);
/**
* 线
*
* @param routeIds
* @return
*/
public int deleteProRouteByRouteIds(String[] routeIds);
/**
* list
*
* @return
*/
List<SapProRoute> selectAllRoute();
int selectProRouteByRouteCode(String routeCode);
}

@ -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,69 +0,0 @@
package com.op.sap.mapper;
import com.op.sap.domain.SapProRouteProduct;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
/**
* Mapper
*
* @author Open Platform
* @date 2023-07-13
*/
@Mapper
public interface SapProRouteProductMapper {
/**
*
*
* @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 recordId
* @return
*/
public int deleteProRouteProductByRecordId(String recordId);
/**
*
*
* @param recordIds
* @return
*/
public int deleteProRouteProductByRecordIds(String[] recordIds);
public List<SapProRouteProduct> getRouteProdProductListUndo(SapProRouteProduct proRouteProduct);
List<SapProRouteProduct> getRouteProdProductListDo(SapProRouteProduct proRouteProduct);
void deleteByRouteId(SapProRouteProduct proRouteProduct);
}

@ -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);
}
}

@ -54,11 +54,11 @@ public class SapBomServiceImpl implements SapBomService {
// jCoTable.setValue(Constants.OPTION, "EQ");
// jCoTable.setValue(Constants.LOW, "00012222");
JCoTable jCoTables = func.getTableParameterList().getTable("S_MATNR");
JCoTable jCoTables = func.getTableParameterList().getTable("S_STLNR");
jCoTables.appendRow();
jCoTables.setValue(Constants.SIGN, "I");
jCoTables.setValue(Constants.OPTION, "EQ");
jCoTables.setValue(Constants.LOW, "000000010101000115");
jCoTables.setValue(Constants.LOW, "00012222");
// 获取调用 RFC 函数对象
func.execute(dest);
// 获取 内表 - ZMES_PRO

@ -14,7 +14,7 @@ import com.op.sap.domain.SapBom;
import com.op.system.api.model.SapProOrder;
import com.sap.conn.jco.*;
import org.jcp.xml.dsig.internal.dom.Utils;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;
@ -33,7 +33,6 @@ public class SapOrderServiceImpl implements SapOrderService {
@Override
public AjaxResult shopOrderSync(SapProOrder sapProOrder) {
// 连接
try {
// 获取调用 RFC 函数对象

@ -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);
}
}

@ -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 &lt; #{orderNum}</when>
<otherwise>
AND order_num &lt; (
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 &gt; #{orderNum}</when>
<otherwise>
AND order_num &gt; (
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…
Cancel
Save