11.17修改

master
杨万里 2 years ago
parent d5440442bc
commit 70693239dc

@ -1,18 +1,26 @@
package com.foreverwin.mesnac.anomaly.controller;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.foreverwin.mesnac.anomaly.model.WxOrderDto;
import com.foreverwin.mesnac.anomaly.model.WxOrderReceived;
import com.foreverwin.mesnac.anomaly.service.WxOrderReceivedService;
import com.foreverwin.mesnac.anomaly.service.WxOrderService;
import com.foreverwin.modular.core.exception.BaseException;
import com.foreverwin.modular.core.util.R;
import com.foreverwin.modular.core.util.FrontPage;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.apache.ibatis.annotations.Param;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import com.foreverwin.mesnac.anomaly.model.WxOrder;
import sun.misc.UUDecoder;
import java.time.LocalDateTime;
import java.util.*;
/**
@ -27,6 +35,9 @@ public class WxOrderController {
@Autowired
public WxOrderService wxOrderService;
@Autowired
public WxOrderReceivedService wxOrderReceivedService;
/**
* id
*
@ -39,6 +50,44 @@ public class WxOrderController {
return R.ok( wxOrderService.getById(id));
}
@ResponseBody
@GetMapping("/androidFindWxOrderList")
public String androidFindWxOrderList(@Param("param") String param){
QueryWrapper<WxOrder> queryWrapper = new QueryWrapper<>();
queryWrapper.like("PROJECT_NUMBER",param);
List<WxOrder> wxOrderList = wxOrderService.list(queryWrapper);
return Optional.ofNullable(wxOrderList)
.map(t -> JSONObject.toJSONString(t)).orElse("null");
}
@ResponseBody
@RequestMapping(method = RequestMethod.POST, value = "/insertWxOrderReceive")
public R updateStatusById(String list,String user) {
System.out.println(list+user);
List<WxOrder> wxOrderList = JSONArray.parseArray(list, WxOrder.class);
try {
if (!wxOrderList.isEmpty()){
for (WxOrder wxOrder : wxOrderList){
WxOrderReceived wxOrderReceived =new WxOrderReceived();
wxOrderReceived.setHandle(UUID.randomUUID().toString());
wxOrderReceived.setWxOrderBo(wxOrder.getHandle());
wxOrderReceived.setReceiveNumber(Integer.parseInt(wxOrder.getRemark1()));
wxOrderReceived.setCreatedDateTime(LocalDateTime.now());
wxOrderReceived.setCreatedUser(user);
wxOrderReceivedService.save(wxOrderReceived);
}
return R.ok();
}else {
return R.failed("收货数据为空");
}
}catch (Exception e){
e.printStackTrace();
return R.failed("收货失败");
}
}
/**
*
*
@ -55,7 +104,7 @@ public class WxOrderController {
result=wxOrderService.selectReceiveNumber();
WxOrderDto wxOrderDtoDes=new WxOrderDto();
wxOrderDtoDes.setNumber("收货数量");
wxOrderDtoDes.setReceiveNumber("收货数量");
wxOrderDtoDes.setFullName("收货人");
wxOrderDtoDes.setReceiveDateTime("收货时间");

@ -0,0 +1,18 @@
package com.foreverwin.mesnac.anomaly.mapper;
import com.foreverwin.mesnac.anomaly.model.WxOrderReceived;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
/**
* <p>
* Mapper
* </p>
*
* @author YANG.WL
* @since 2022-11-14
*/
@Repository
public interface WxOrderReceivedMapper extends BaseMapper<WxOrderReceived> {
}

@ -2,7 +2,7 @@ package com.foreverwin.mesnac.anomaly.model;
public class WxOrderDto {
private String handle;
private String Number;
private String receiveNumber;
private String receiveDateTime;
private String fullName;
@ -14,12 +14,12 @@ public class WxOrderDto {
this.handle = handle;
}
public String getNumber() {
return Number;
public String getReceiveNumber() {
return receiveNumber;
}
public void setNumber(String number) {
Number = number;
public void setReceiveNumber(String receiveNumber) {
this.receiveNumber = receiveNumber;
}
public String getReceiveDateTime() {

@ -0,0 +1,179 @@
package com.foreverwin.mesnac.anomaly.model;
import java.io.Serializable;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import java.time.LocalDateTime;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
import com.baomidou.mybatisplus.annotation.IdType;
/**
* <p>
*
* </p>
*
* @author YANG.WL
* @since 2022-11-14
*/
@TableName("Z_WX_ORDER_RECEIVED")
public class WxOrderReceived extends Model<WxOrderReceived> {
private static final long serialVersionUID = 1L;
/**
*
*/
@TableField("WX_ORDER_BO")
private String wxOrderBo;
/**
*
*/
@TableField("RECEIVE_NUMBER")
private Integer receiveNumber;
/**
*
*/
@TableField("CREATED_DATE_TIME")
private LocalDateTime createdDateTime;
/**
*
*/
@TableField("CREATED_USER")
private String createdUser;
/**
*
*/
@TableField("MODIFY_USER")
private String modifyUser;
/**
*
*/
@TableField("MODIFIED_DATE_TIME")
private LocalDateTime modifiedDateTime;
@TableField("OTHER_1")
private String other1;
@TableField("OTHER_2")
private String other2;
/**
*
*/
@TableId(value = "HANDLE", type = IdType.INPUT)
private String handle;
public String getWxOrderBo() {
return wxOrderBo;
}
public void setWxOrderBo(String wxOrderBo) {
this.wxOrderBo = wxOrderBo;
}
public Integer getReceiveNumber() {
return receiveNumber;
}
public void setReceiveNumber(Integer receiveNumber) {
this.receiveNumber = receiveNumber;
}
public LocalDateTime getCreatedDateTime() {
return createdDateTime;
}
public void setCreatedDateTime(LocalDateTime createdDateTime) {
this.createdDateTime = createdDateTime;
}
public String getCreatedUser() {
return createdUser;
}
public void setCreatedUser(String createdUser) {
this.createdUser = createdUser;
}
public String getModifyUser() {
return modifyUser;
}
public void setModifyUser(String modifyUser) {
this.modifyUser = modifyUser;
}
public LocalDateTime getModifiedDateTime() {
return modifiedDateTime;
}
public void setModifiedDateTime(LocalDateTime modifiedDateTime) {
this.modifiedDateTime = modifiedDateTime;
}
public String getOther1() {
return other1;
}
public void setOther1(String other1) {
this.other1 = other1;
}
public String getOther2() {
return other2;
}
public void setOther2(String other2) {
this.other2 = other2;
}
public String getHandle() {
return handle;
}
public void setHandle(String handle) {
this.handle = handle;
}
public static final String WX_ORDER_BO = "WX_ORDER_BO";
public static final String NUMBER = "NUMBER";
public static final String CREATED_DATE_TIME = "CREATED_DATE_TIME";
public static final String CREATED_USER = "CREATED_USER";
public static final String MODIFY_USER = "MODIFY_USER";
public static final String MODIFIED_DATE_TIME = "MODIFIED_DATE_TIME";
public static final String OTHER_1 = "OTHER_1";
public static final String OTHER_2 = "OTHER_2";
public static final String HANDLE = "HANDLE";
@Override
protected Serializable pkVal() {
return this.handle;
}
@Override
public String toString() {
return "WxOrderReceived{" +
"wxOrderBo = " + wxOrderBo +
", receiveNumber = " + receiveNumber +
", createdDateTime = " + createdDateTime +
", createdUser = " + createdUser +
", modifyUser = " + modifyUser +
", modifiedDateTime = " + modifiedDateTime +
", other1 = " + other1 +
", other2 = " + other2 +
", handle = " + handle +
"}";
}
}

@ -0,0 +1,28 @@
package com.foreverwin.mesnac.anomaly.service;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.foreverwin.mesnac.anomaly.model.WxOrderReceived;
import com.baomidou.mybatisplus.extension.service.IService;
import com.foreverwin.modular.core.util.FrontPage;
import java.util.List;
/**
* <p>
*
* </p>
*
* @author YANG.WL
* @since 2022-11-14
*/
public interface WxOrderReceivedService extends IService<WxOrderReceived> {
/**
*
* @param frontPage
* @return
*/
IPage<WxOrderReceived> selectPage(FrontPage<WxOrderReceived> frontPage, WxOrderReceived wxOrderReceived);
List<WxOrderReceived> selectList(WxOrderReceived wxOrderReceived);
}

@ -33,6 +33,7 @@ import com.foreverwin.mesnac.common.util.ActiveMQUtil;
import com.foreverwin.mesnac.common.util.DateUtil;
import com.foreverwin.mesnac.common.util.ExceptionUtil;
import com.foreverwin.mesnac.common.util.StringUtil;
import com.foreverwin.mesnac.dispatch.model.SfcDispatch;
import com.foreverwin.mesnac.listener.mapper.UsrMapper;
import com.foreverwin.mesnac.meapi.dto.NcCodeDto;
import com.foreverwin.mesnac.meapi.dto.RouterStepDto;
@ -263,12 +264,25 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
if (StringUtil.notBlank(shopOrder.getStatusBo()) && shopOrder.getStatusBo().equals("StatusBO:1000,501") && StringUtil.isBlank(abnormalBill.getSfc()) )
{
throw new BaseException("在产订单的异常必须按照SFC来提报");
}else if (StringUtil.notBlank(shopOrder.getStatusBo()) && shopOrder.getStatusBo().equals("StatusBO:1000,501") &&StringUtil.notBlank(abnormalBill.getSfc())){
QueryWrapper<AbnormalBill> queryWrapper = new QueryWrapper<>();
queryWrapper.eq(SfcDispatch.SFC,abnormalBill.getSfc());
queryWrapper.orderByDesc("CREATED_DATE_TIME");
List<AbnormalBill> abnormalBillList = abnormalBillMapper.selectList(queryWrapper);
if (abnormalBillList.size()>0){
AbnormalBill abnormalBilltop=abnormalBillList.get(0);
if (abnormalBilltop.getProgram().isEmpty()){
throw new BaseException("此SFC的上一个异常还没有进行方案确认请联系工艺评审人员进行处理");
}
}
}
}
if(!StringUtils.isBlank(abnormalBill.getObjectBo())){
if("J".equals(abnormalBill.getReportFrom())){
abnormalBill.setObjectBo(HandleEnum.INSPECTION_TASK.getHandle(site,abnormalBill.getObjectBo()));
@ -651,7 +665,7 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
Constants.MATCH.equals(abnormalBillDispose.getAbnormalMethod()) ||
Constants.OFFLINE_REFUELING.equals(abnormalBillDispose.getAbnormalMethod()) ||
Constants.TEST_EQUIPMENT.equals(abnormalBillDispose.getAbnormalMethod()))
&& !StringUtil.isBlank(abnormalBill2.getObjectBo())
&& !StringUtil.isBlank(abnormalBill2.getObjectBo()) && !abnormalBill2.getObjectBo().startsWith("SelfReportBO")
&& StringUtil.notBlank(abnormalBill2.getSfc())){
try{
this.creatInspectionTask(site,abnormalBill2.getObjectBo(),abnormalBill2.getSfc(),abnormalBill2.getStepId(),AnomalyConstant.AnomalyMethod.msg(abnormalBillDispose.getAbnormalMethod()));
@ -736,6 +750,26 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
}
}
// public static void main(String[] args) {
// AbnormalBillDispose abnormalBillDispose=new AbnormalBillDispose();
// abnormalBillDispose.setAbnormalMethod("S");
// AbnormalBill abnormalBill2=new AbnormalBill();
// abnormalBill2.setObjectBo("SR_20221107090620");
// abnormalBill2.setSfc("12345");
// if((Constants.CONCESSION.equals(abnormalBillDispose.getAbnormalMethod()) ||
// Constants.MATCH.equals(abnormalBillDispose.getAbnormalMethod()) ||
// Constants.OFFLINE_REFUELING.equals(abnormalBillDispose.getAbnormalMethod()) ||
// Constants.TEST_EQUIPMENT.equals(abnormalBillDispose.getAbnormalMethod()))
// && !StringUtil.isBlank(abnormalBill2.getObjectBo()) && !abnormalBill2.getObjectBo().startsWith("SR")
// && StringUtil.notBlank(abnormalBill2.getSfc())){
// System.out.println("yes");
// }else {
// System.out.println("no");
// }
// }
@Override
public void dutyConfirm(AbnormalBill abnormalBill, AbnormalBillDispose abnormalBillDispose,
List<String> dutyCauseType,
@ -1944,4 +1978,5 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
activeMQUtil.wechatSendMessage(sendUsers_sc.toString(),DeviceRepairCompleteMessage.getContent());
return true;
}
}

@ -0,0 +1,46 @@
package com.foreverwin.mesnac.anomaly.service.impl;
import com.foreverwin.modular.core.util.FrontPage;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.foreverwin.mesnac.anomaly.model.WxOrderReceived;
import com.foreverwin.mesnac.anomaly.mapper.WxOrderReceivedMapper;
import com.foreverwin.mesnac.anomaly.service.WxOrderReceivedService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;
import java.util.List;
/**
* <p>
*
* </p>
*
* @author YANG.WL
* @since 2022-11-14
*/
@Service
@Transactional(rollbackFor = Exception.class)
public class WxOrderReceivedServiceImpl extends ServiceImpl<WxOrderReceivedMapper, WxOrderReceived> implements WxOrderReceivedService {
@Autowired
private WxOrderReceivedMapper wxOrderReceivedMapper;
@Override
public IPage<WxOrderReceived> selectPage(FrontPage<WxOrderReceived> frontPage, WxOrderReceived wxOrderReceived) {
QueryWrapper<WxOrderReceived> queryWrapper = new QueryWrapper<>();
queryWrapper.setEntity(wxOrderReceived);
return super.page(frontPage.getPagePlus(), queryWrapper);
}
@Override
public List<WxOrderReceived> selectList(WxOrderReceived wxOrderReceived) {
QueryWrapper<WxOrderReceived> queryWrapper = new QueryWrapper<>();
queryWrapper.setEntity(wxOrderReceived);
return super.list(queryWrapper);
}
}

@ -355,7 +355,7 @@
<select id="selectReceiveNumber" resultType="com.foreverwin.mesnac.anomaly.model.WxOrderDto">
SELECT
ZWO.HANDLE,
ZWOR."NUMBER",
ZWOR.RECEIVE_NUMBER,
ZWOR.CREATED_DATE_TIME RECEIVE_DATE_TIME,
ZNU.FULL_NAME
FROM

@ -0,0 +1,386 @@
<?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.foreverwin.mesnac.anomaly.mapper.WxOrderReceivedMapper">
<!-- 通用查询映射结果 -->
<resultMap id="BaseResultMap" type="com.foreverwin.mesnac.anomaly.model.WxOrderReceived">
<id column="HANDLE" property="handle" />
<result column="WX_ORDER_BO" property="wxOrderBo" />
<result column="RECEIVE_NUMBER" property="receiveNumber" />
<result column="CREATED_DATE_TIME" property="createdDateTime" />
<result column="CREATED_USER" property="createdUser" />
<result column="MODIFY_USER" property="modifyUser" />
<result column="MODIFIED_DATE_TIME" property="modifiedDateTime" />
<result column="OTHER_1" property="other1" />
<result column="OTHER_2" property="other2" />
</resultMap>
<!-- 通用查询结果列 -->
<sql id="Base_Column_List">
WX_ORDER_BO, RECEIVE_NUMBER, CREATED_DATE_TIME, CREATED_USER, MODIFY_USER, MODIFIED_DATE_TIME, OTHER_1, OTHER_2, HANDLE
</sql>
<!-- BaseMapper标准查询/修改/删除 -->
<select id="selectById" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include> FROM Z_WX_ORDER_RECEIVED WHERE HANDLE=#{handle}
</select>
<select id="selectByMap" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include>
FROM Z_WX_ORDER_RECEIVED
<if test="cm!=null and !cm.isEmpty">
<where>
<foreach collection="cm.keys" item="k" separator="AND">
<if test="cm[k] != null">
${k} = #{cm[${k}]}
</if>
</foreach>
</where>
</if>
</select>
<select id="selectBatchIds" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include>
FROM Z_WX_ORDER_RECEIVED WHERE HANDLE IN (
<foreach item="item" index="index" collection="coll" separator=",">#{item}
</foreach>)
</select>
<select id="selectOne" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include> FROM Z_WX_ORDER_RECEIVED
<where>
<if test="ew.entity.wxOrderBo!=null">
WX_ORDER_BO=#{ew.wxOrderBo}
</if>
<if test="ew.entity.receiveNumber!=null"> AND RECEIVE_NUMBER=#{ew.entity.receiveNumber}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.createdUser!=null"> AND CREATED_USER=#{ew.entity.createdUser}</if>
<if test="ew.entity.modifyUser!=null"> AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.other1!=null"> AND OTHER_1=#{ew.entity.other1}</if>
<if test="ew.entity.other2!=null"> AND OTHER_2=#{ew.entity.other2}</if>
<if test="ew.entity.handle!=null"> AND HANDLE=#{ew.entity.handle}</if>
</where>
</select>
<select id="selectCount" resultType="Integer">
SELECT COUNT(1) FROM Z_WX_ORDER_RECEIVED
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.wxOrderBo!=null">
WX_ORDER_BO=#{ew.entity.wxOrderBo}
</if>
<if test="ew.entity.receiveNumber!=null"> AND RECEIVE_NUMBER=#{ew.entity.receiveNumber}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.createdUser!=null"> AND CREATED_USER=#{ew.entity.createdUser}</if>
<if test="ew.entity.modifyUser!=null"> AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.other1!=null"> AND OTHER_1=#{ew.entity.other1}</if>
<if test="ew.entity.other2!=null"> AND OTHER_2=#{ew.entity.other2}</if>
<if test="ew.entity.handle!=null"> AND HANDLE=#{ew.entity.handle}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectList" resultMap="BaseResultMap">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM Z_WX_ORDER_RECEIVED
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.wxOrderBo!=null">
WX_ORDER_BO=#{ew.entity.wxOrderBo}
</if>
<if test="ew.entity.receiveNumber!=null"> AND RECEIVE_NUMBER=#{ew.entity.receiveNumber}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.createdUser!=null"> AND CREATED_USER=#{ew.entity.createdUser}</if>
<if test="ew.entity.modifyUser!=null"> AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.other1!=null"> AND OTHER_1=#{ew.entity.other1}</if>
<if test="ew.entity.other2!=null"> AND OTHER_2=#{ew.entity.other2}</if>
<if test="ew.entity.handle!=null"> AND HANDLE=#{ew.entity.handle}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectMaps" resultType="HashMap">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM Z_WX_ORDER_RECEIVED
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.wxOrderBo!=null">
WX_ORDER_BO=#{ew.entity.wxOrderBo}
</if>
<if test="ew.entity.receiveNumber!=null"> AND RECEIVE_NUMBER=#{ew.entity.receiveNumber}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.createdUser!=null"> AND CREATED_USER=#{ew.entity.createdUser}</if>
<if test="ew.entity.modifyUser!=null"> AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.other1!=null"> AND OTHER_1=#{ew.entity.other1}</if>
<if test="ew.entity.other2!=null"> AND OTHER_2=#{ew.entity.other2}</if>
<if test="ew.entity.handle!=null"> AND HANDLE=#{ew.entity.handle}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectObjs" resultType="Object">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM Z_WX_ORDER_RECEIVED
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.wxOrderBo!=null">
WX_ORDER_BO=#{ew.entity.wxOrderBo}
</if>
<if test="ew.entity.receiveNumber!=null"> AND RECEIVE_NUMBER=#{ew.entity.receiveNumber}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.createdUser!=null"> AND CREATED_USER=#{ew.entity.createdUser}</if>
<if test="ew.entity.modifyUser!=null"> AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.other1!=null"> AND OTHER_1=#{ew.entity.other1}</if>
<if test="ew.entity.other2!=null"> AND OTHER_2=#{ew.entity.other2}</if>
<if test="ew.entity.handle!=null"> AND HANDLE=#{ew.entity.handle}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectPage" resultMap="BaseResultMap">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM Z_WX_ORDER_RECEIVED
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.wxOrderBo!=null">
WX_ORDER_BO=#{ew.entity.wxOrderBo}
</if>
<if test="ew.entity.receiveNumber!=null"> AND RECEIVE_NUMBER=#{ew.entity.receiveNumber}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.createdUser!=null"> AND CREATED_USER=#{ew.entity.createdUser}</if>
<if test="ew.entity.modifyUser!=null"> AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.other1!=null"> AND OTHER_1=#{ew.entity.other1}</if>
<if test="ew.entity.other2!=null"> AND OTHER_2=#{ew.entity.other2}</if>
<if test="ew.entity.handle!=null"> AND HANDLE=#{ew.entity.handle}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectMapsPage" resultType="HashMap">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM Z_WX_ORDER_RECEIVED
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.wxOrderBo!=null">
WX_ORDER_BO=#{ew.entity.wxOrderBo}
</if>
<if test="ew.entity.receiveNumber!=null"> AND RECEIVE_NUMBER=#{ew.entity.receiveNumber}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.createdUser!=null"> AND CREATED_USER=#{ew.entity.createdUser}</if>
<if test="ew.entity.modifyUser!=null"> AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.other1!=null"> AND OTHER_1=#{ew.entity.other1}</if>
<if test="ew.entity.other2!=null"> AND OTHER_2=#{ew.entity.other2}</if>
<if test="ew.entity.handle!=null"> AND HANDLE=#{ew.entity.handle}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<insert id="insert" parameterType="com.foreverwin.mesnac.anomaly.model.WxOrderReceived">
INSERT INTO Z_WX_ORDER_RECEIVED
<trim prefix="(" suffix=")" suffixOverrides=",">
WX_ORDER_BO,
<if test="receiveNumber!=null">RECEIVE_NUMBER,</if>
<if test="createdDateTime!=null">CREATED_DATE_TIME,</if>
<if test="createdUser!=null">CREATED_USER,</if>
<if test="modifyUser!=null">MODIFY_USER,</if>
<if test="modifiedDateTime!=null">MODIFIED_DATE_TIME,</if>
<if test="other1!=null">OTHER_1,</if>
<if test="other2!=null">OTHER_2,</if>
<if test="handle!=null">HANDLE,</if>
</trim> VALUES
<trim prefix="(" suffix=")" suffixOverrides=",">
#{wxOrderBo},
<if test="receiveNumber!=null">#{receiveNumber},</if>
<if test="createdDateTime!=null">#{createdDateTime},</if>
<if test="createdUser!=null">#{createdUser},</if>
<if test="modifyUser!=null">#{modifyUser},</if>
<if test="modifiedDateTime!=null">#{modifiedDateTime},</if>
<if test="other1!=null">#{other1},</if>
<if test="other2!=null">#{other2},</if>
<if test="handle!=null">#{handle},</if>
</trim>
</insert>
<insert id="insertAllColumn" parameterType="com.foreverwin.mesnac.anomaly.model.WxOrderReceived">
INSERT INTO Z_WX_ORDER_RECEIVED
<trim prefix="(" suffix=")" suffixOverrides=",">
<include refid="Base_Column_List"></include>
</trim> VALUES
<trim prefix="(" suffix=")" suffixOverrides=",">
#{wxOrderBo},
#{receiveNumber},
#{createdDateTime},
#{createdUser},
#{modifyUser},
#{modifiedDateTime},
#{other1},
#{other2},
#{handle},
</trim>
</insert>
<update id="updateById">
UPDATE Z_WX_ORDER_RECEIVED <trim prefix="SET" suffixOverrides=",">
<if test="et.wxOrderBo!=null">WX_ORDER_BO=#{et.wxOrderBo},</if>
<if test="et.receiveNumber!=null">RECEIVE_NUMBER=#{et.receiveNumber},</if>
<if test="et.createdDateTime!=null">CREATED_DATE_TIME=#{et.createdDateTime},</if>
<if test="et.createdUser!=null">CREATED_USER=#{et.createdUser},</if>
<if test="et.modifyUser!=null">MODIFY_USER=#{et.modifyUser},</if>
<if test="et.modifiedDateTime!=null">MODIFIED_DATE_TIME=#{et.modifiedDateTime},</if>
<if test="et.other1!=null">OTHER_1=#{et.other1},</if>
<if test="et.other2!=null">OTHER_2=#{et.other2},</if>
</trim> WHERE HANDLE=#{et.handle} <if test="et instanceof java.util.Map"><if test="et.MP_OPTLOCK_VERSION_ORIGINAL!=null">and ${et.MP_OPTLOCK_VERSION_COLUMN}=#{et.MP_OPTLOCK_VERSION_ORIGINAL}</if></if>
</update>
<update id="updateAllColumnById">
UPDATE Z_WX_ORDER_RECEIVED <trim prefix="SET" suffixOverrides=",">
WX_ORDER_BO=#{et.wxOrderBo},
RECEIVE_NUMBER=#{et.receiveNumber},
CREATED_DATE_TIME=#{et.createdDateTime},
CREATED_USER=#{et.createdUser},
MODIFY_USER=#{et.modifyUser},
MODIFIED_DATE_TIME=#{et.modifiedDateTime},
OTHER_1=#{et.other1},
OTHER_2=#{et.other2},
</trim> WHERE HANDLE=#{et.handle} <if test="et instanceof java.util.Map"><if test="et.MP_OPTLOCK_VERSION_ORIGINAL!=null">and ${et.MP_OPTLOCK_VERSION_COLUMN}=#{et.MP_OPTLOCK_VERSION_ORIGINAL}</if></if>
</update>
<update id="update">
UPDATE Z_WX_ORDER_RECEIVED <trim prefix="SET" suffixOverrides=",">
<if test="et.wxOrderBo!=null">WX_ORDER_BO=#{et.wxOrderBo},</if>
<if test="et.receiveNumber!=null">RECEIVE_NUMBER=#{et.receiveNumber},</if>
<if test="et.createdDateTime!=null">CREATED_DATE_TIME=#{et.createdDateTime},</if>
<if test="et.createdUser!=null">CREATED_USER=#{et.createdUser},</if>
<if test="et.modifyUser!=null">MODIFY_USER=#{et.modifyUser},</if>
<if test="et.modifiedDateTime!=null">MODIFIED_DATE_TIME=#{et.modifiedDateTime},</if>
<if test="et.other1!=null">OTHER_1=#{et.other1},</if>
<if test="et.other2!=null">OTHER_2=#{et.other2},</if>
</trim>
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
WX_ORDER_BO=#{ew.entity.wxOrderBo}
<if test="ew.entity.receiveNumber!=null"> AND RECEIVE_NUMBER=#{ew.entity.receiveNumber}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.createdUser!=null"> AND CREATED_USER=#{ew.entity.createdUser}</if>
<if test="ew.entity.modifyUser!=null"> AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.other1!=null"> AND OTHER_1=#{ew.entity.other1}</if>
<if test="ew.entity.other2!=null"> AND OTHER_2=#{ew.entity.other2}</if>
<if test="ew.entity.handle!=null"> AND HANDLE=#{ew.entity.handle}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</update>
<delete id="deleteById">
DELETE FROM Z_WX_ORDER_RECEIVED WHERE HANDLE=#{handle}
</delete>
<delete id="deleteByMap">
DELETE FROM Z_WX_ORDER_RECEIVED
<if test="cm!=null and !cm.isEmpty">
<where>
<foreach collection="cm.keys" item="k" separator="AND">
<if test="cm[k] != null">
${k} = #{cm[${k}]}
</if>
</foreach>
</where>
</if>
</delete>
<delete id="delete">
DELETE FROM Z_WX_ORDER_RECEIVED
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
WX_ORDER_BO=#{ew.entity.wxOrderBo}
</if>
<if test="ew.entity.receiveNumber!=null"> AND RECEIVE_NUMBER=#{ew.entity.receiveNumber}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.createdUser!=null"> AND CREATED_USER=#{ew.entity.createdUser}</if>
<if test="ew.entity.modifyUser!=null"> AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.other1!=null"> AND OTHER_1=#{ew.entity.other1}</if>
<if test="ew.entity.other2!=null"> AND OTHER_2=#{ew.entity.other2}</if>
<if test="ew.entity.handle!=null"> AND HANDLE=#{ew.entity.handle}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</delete>
<delete id="deleteBatchIds">
DELETE FROM Z_WX_ORDER_RECEIVED WHERE HANDLE IN (
<foreach item="item" index="index" collection="coll" separator=",">#{item}
</foreach>)
</delete>
<!-- BaseMapper标准查询/修改/删除 -->
</mapper>

@ -4,6 +4,7 @@ import com.foreverwin.mesnac.common.ftp.DrawingFtpClient;
import com.foreverwin.mesnac.common.ftp.JSchClient;
import com.foreverwin.mesnac.common.ftp.WorkmanshipCardFtpClient;
import com.foreverwin.mesnac.common.service.FileService;
import com.foreverwin.mesnac.common.util.HttpUtils;
import com.foreverwin.mesnac.meapi.util.StringUtils;
import com.foreverwin.modular.core.exception.BaseException;
import com.foreverwin.modular.core.util.CommonMethods;
@ -95,11 +96,11 @@ public class FileController {
Map<String, String> paths = fileService.getFilePathsByItemBoSFTP(itemBo,type);
if (paths.size() == 0) {
throw new BaseException("未找到当前工序的图纸版本号和工艺卡片相应信息,请联系计划部门确认!");
throw new BaseException("未找到当前工序的图纸版本号或工艺卡片相应信息!");
}
return R.ok(paths);
} catch (Exception e) {
return R.failed("获取图纸路径失败:" + e.getMessage());
return R.failed("获取文件路径失败:" + e.getMessage());
}
/* try {
if(StringUtils.isBlank(itemBo)) {
@ -135,6 +136,7 @@ public class FileController {
// }
if (null == in) {
if (type.equals("DRAWING")){
in = fileService.getSFTP(path);
}else {
in = workmanshipCardFtpClient.getFtp(new String(path.getBytes("GBK"), FTPClient.DEFAULT_CONTROL_ENCODING));
@ -148,7 +150,7 @@ public class FileController {
in = plmFtpClient.getFtp(new String(path.getBytes("UTF-8"), FTPClient.DEFAULT_CONTROL_ENCODING));
}*/
if (null == in) {
throw new BaseException("获取图纸文件路径为:【" + path + "】的文件流失败!");
throw new BaseException("获取文件路径为:【" + path + "】的文件流失败!");
}
// ByteArrayOutputStream outStream2 = new ByteArrayOutputStream();
// BufferedReader reader = new BufferedReader(new InputStreamReader(in));
@ -239,7 +241,7 @@ public class FileController {
out.write(data);
out.flush();*/
} catch (Exception e) {
return R.failed("获取图纸文件失败:文件路径为" + path + ":" + e.getMessage());
return R.failed("获取文件失败:文件路径为" + path + ":" + e.getMessage());
} finally {
try {
if (null != out) {
@ -249,16 +251,18 @@ public class FileController {
in.close();
}
} catch (Exception e1) {
return R.failed("获取图纸文件失败:关闭文件流处理异常" + e1.getMessage());
return R.failed("获取文件失败:关闭文件流处理异常" + e1.getMessage());
}
}
return R.ok(null, "获取图纸文件成功!");
return R.ok(null, "获取文件成功!");
}
/**
*
*
@ -317,6 +321,4 @@ public class FileController {
}
}

@ -3,6 +3,7 @@ package com.foreverwin.mesnac.common.ftp;
import com.foreverwin.mesnac.common.constant.IntegrationTypeConstant;
import com.foreverwin.mesnac.common.model.IntegrationLog;
import com.foreverwin.mesnac.common.service.IntegrationLogService;
import com.foreverwin.modular.core.exception.BaseException;
import com.jcraft.jsch.*;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@ -56,8 +57,10 @@ public class JSchClient {
JSch jsch = new JSch();
jsch.getSession(username, ipAddress, port);
session = jsch.getSession(username, ipAddress, port);
if (logger.isInfoEnabled()) {
logger.info("Session created.");
logger.error("连接信息"+username+"/"+ipAddress+"/"+port+"/"+password);
}
session.setPassword(password);
Properties sshConfig = new Properties();
@ -79,7 +82,7 @@ public class JSchClient {
} catch (Exception e) {
logger.error("图纸SFTP连接失败"+e.getMessage());
logger.error(session.getUserName()+session.getHost()+session.getPort());
e.printStackTrace();
throw new BaseException("错误一"+e.getMessage()+"连接信息"+username+"/"+ipAddress+"/"+port+"/"+password);
}
}

@ -348,7 +348,6 @@ public class WorkmanshipCardFtpClient {
}
public FTPClient login() throws IOException{
this.ftp=new FTPClient();
this.ftp.connect(address,port);
this.ftp.setFileType(FTP.BINARY_FILE_TYPE);
if(FTPReply.isPositiveCompletion(this.ftp.getReplyCode())){

@ -1,5 +1,6 @@
package com.foreverwin.mesnac.common.service.impl;
import com.alibaba.fastjson.JSONObject;
import com.foreverwin.mesnac.common.enums.HandleEnum;
import com.foreverwin.mesnac.common.ftp.DrawingFtpClient;
import com.foreverwin.mesnac.common.ftp.JSchClient;
@ -7,6 +8,7 @@ import com.foreverwin.mesnac.common.ftp.WorkmanshipCardFtpClient;
import com.foreverwin.mesnac.common.service.FileService;
import com.foreverwin.mesnac.common.util.ExceptionUtil;
import com.foreverwin.mesnac.common.util.GetDrawingVersionUtil;
import com.foreverwin.mesnac.common.util.HttpUtils;
import com.foreverwin.mesnac.common.util.StringUtil;
import com.foreverwin.mesnac.meapi.model.Sfc;
import com.foreverwin.mesnac.meapi.model.SfcDispatchDrawing;
@ -19,11 +21,13 @@ import com.jcraft.jsch.ChannelSftp;
import com.jcraft.jsch.Session;
import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPFile;
import org.jsoup.Connection;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.io.IOException;
import java.io.InputStream;
import java.net.InetAddress;
import java.util.*;
import java.util.regex.Pattern;
@ -181,7 +185,7 @@ public class FileServiceImpl implements FileService {
}
}
else {
throw new BaseException("未找到当前工序的图纸版本号和工艺卡片相应信息,请联系工艺部门确认");
throw new BaseException("未找到工艺卡片相应信息,请联系工艺部门确认");
}
}
@ -200,7 +204,19 @@ public class FileServiceImpl implements FileService {
}
//看图纸
if (type.equals("DRAWING")){
//初始化SFTP参数
// //初始化SFTP参数
// int timeOut = 3000 ; //超时应该在3钞以上
// boolean status = InetAddress.getByName(drawingFtpClient.getAddress()).isReachable(timeOut);
// InetAddress localHost = InetAddress.getLocalHost();
// System.out.println("主机名:"+localHost.getHostName());
// System.out.println("本地ip地址"+localHost.getHostAddress());
// // 当返回值是true时说明host是可用的false则不可。
// if (status){
// throw new BaseException("主机名:"+localHost.getHostName()+"本地ip地址"+localHost.getHostAddress()+"执行ping:"+drawingFtpClient.getAddress()+"的结果为"+status);
// }else if (!status){
// throw new BaseException("主机名:"+localHost.getHostName()+"本地ip地址"+localHost.getHostAddress()+"执行ping:"+drawingFtpClient.getAddress()+"的结果为"+status);
// }
jSchClient = new JSchClient(drawingFtpClient.getAddress(), drawingFtpClient.getUserName(),
drawingFtpClient.getPassword(), drawingFtpClient.getPort());
String[] itemBos = null;
@ -210,10 +226,12 @@ public class FileServiceImpl implements FileService {
for (String item : itemBos) {
//通过SFTP连接服务器
jSchClient.connectSFTP();
String directory = drawingFtpClient.getDownloadDir() + "/" + item;
//判断目录是否存在
if (jSchClient.isDirExist(directory)){
pathMap.put(item + ".PDF", directory + "/" + item + ".PDF");
String path = GetDrawingVersionSFTP(item, jSchClient, drawingFtpClient.getDownloadDir());
if (null != path) {
//拼接文件路径
String ftpFilePath = drawingFtpClient.getDownloadDir() + "/" + item + "_" + path + "/" +
item + "_" + path + ".PDF";
pathMap.put(item + "_" + path + ".PDF", ftpFilePath);
}
}
} else {
@ -229,15 +247,13 @@ public class FileServiceImpl implements FileService {
itemBo + "_" + path + ".PDF";
pathMap.put(itemBo + "_" + path + ".PDF", ftpFilePath);
}
jSchClient.close();
} catch (Exception e) {
e.printStackTrace();
throw new BaseException("未找到当前工序的图纸版本号和工艺卡片相应信息,请联系计划部门确认");
}
}
}
if (pathMap == null) {
throw new BaseException("未找到当前工序的图纸版本号和工艺卡片相应信息,请联系计划部门确认");
if (pathMap == null || pathMap.size() == 0) {
throw new BaseException("未找到图纸相应信息,请在图纸管理系统申请!");
}
return pathMap;

@ -432,6 +432,10 @@ public class SfcDispatchServiceImpl extends ServiceImpl<SfcDispatchMapper, SfcDi
//状态标识,表示本次派工成功或是失败
Boolean flag = true;
LocalDateTime nowDate = LocalDateTime.now();
List liststr=new ArrayList();
liststr.add("Z");
liststr.add("H");
liststr.add("RK");
for (SfcDispatchDto sfcDispatchDto : sfcDispatchList) {
SfcDispatch sfcDispatch = new SfcDispatch();
sfcDispatch.setHandle(sfcDispatchDto.getHandle());
@ -464,7 +468,7 @@ public class SfcDispatchServiceImpl extends ServiceImpl<SfcDispatchMapper, SfcDi
continue;
}
if (StringUtil.isBlank(sfcDispatchDto.getOther2())){
if (sfcDispatchDto.getOther2()!=null && !liststr.contains(sfcDispatchDto.getOther2())){
flag = false;
message.append(seq++ % 3 == 0 ? "\n" : "| |");
message.append("派工单[" + dispatchNo + "]没有维护物料去向信息!");
@ -1020,4 +1024,6 @@ public class SfcDispatchServiceImpl extends ServiceImpl<SfcDispatchMapper, SfcDi
}
return result;
}
}

@ -684,7 +684,7 @@
AND OT.LOCALE = 'zh'
WHERE ZLT.STATUS = 'NEW' AND ZLT.OTHER6 = '0'
<if test="HJHJ!=null"> AND ZLT.TURNOUT_ITEM like '02%' AND ZLT.TURNOUT_WORKCENTER = 'HJ' </if>
<if test="HJXL!=null"> AND ZLT.TURNOUT_ITEM like '03%' AND ZLT.TURNOUT_WORKCENTER = 'HJ' </if>
<if test="HJXL!=null"> AND (ZLT.TURNOUT_ITEM like '03%' OR ZLT.TURNOUT_ITEM like '06%') AND ZLT.TURNOUT_WORKCENTER = 'HJ' </if>
<if test="JJ!=null">AND ZLT.TURNOUT_WORKCENTER = 'JJ' </if>
<if test="WX!=null">AND ZLT.TURNOUT_WORKCENTER = 'WX' </if>
<if test="RC!=null">AND ZLT.TURNOUT_WORKCENTER = 'RC' </if>

@ -24,6 +24,15 @@ public class InspectionTaskManageRequest implements Serializable {
private Date dateTo;
private String result;
private String sfcdispatchBo;
private String trueCheckUser;
public String getTrueCheckUser() {
return trueCheckUser;
}
public void setTrueCheckUser(String trueCheckUser) {
this.trueCheckUser = trueCheckUser;
}
public String getSfcdispatchBo() {
return sfcdispatchBo;

@ -38,6 +38,33 @@ public class InspectionTaskManage implements Serializable {
private String ncQty;
private String questionC;
private String itemBo;
private String mainCheckUser;
private String checkUser;
private LocalDateTime checkDateTime;
public LocalDateTime getCheckDateTime() {
return checkDateTime;
}
public void setCheckDateTime(LocalDateTime checkDateTime) {
this.checkDateTime = checkDateTime;
}
public String getMainCheckUser() {
return mainCheckUser;
}
public void setMainCheckUser(String mainCheckUser) {
this.mainCheckUser = mainCheckUser;
}
public String getCheckUser() {
return checkUser;
}
public void setCheckUser(String checkUser) {
this.checkUser = checkUser;
}
public String getItemBo() {
return itemBo;

@ -34,13 +34,18 @@
<result column="NC_QTY" property="ncQty"/>
<result column="QUESTION_C" property="questionC"/>
<result column="ITEM_BO" property="itemBo"/>
<result column="MAIN_CHECK_USER" property="mainCheckUser"/>
<result column="CHECK_USER" property="checkUser"/>
<result column="CHECK_DATE_TIME" property="checkDateTime"/>
</resultMap>
<select id="findInspectionTask" resultMap="BaseResultMap">
SELECT B.HANDLE, B.SITE, B.CATEGORY, B.TASK_NO, B.DESCRIPTION, B.STATUS, B.INSPECTION_ITEM_BO, B.WORK_CENTER, B.SHOP_ORDER, B.SFC,B.STEP_ID, B.OPERATION, B.STEP_ID, B.RESRCE, B.RESULT,B.QUESTION_C, B.COMMENTS, B.CREATE_USER, B.CREATED_DATE_TIME, B.MODIFY_USER, B.MODIFIED_DATE_TIME,
M.ITEM,M.HANDLE ITEM_BO, Z.DESCRIPTION ITEM_DESCRIPTION,ZNU.FULL_NAME FULL_NAME,RS.DESCRIPTION RESRCE_DESCRIPTION,
O.OPERATION OPERATION,OT.DESCRIPTION OPERATION_DESCRIPTION,S.QTY SFC_QTY,B.COMMENTS COMMENTS,
ZSD.EMPLOYEE_DESCRIPTION DISPATCH_USER,P.SHOP_ORDER,NVL(ZAB.NC_QTY, 0) NC_QTY,B.SFC_DISPATCH_BO
ZSD.EMPLOYEE_DESCRIPTION DISPATCH_USER,P.SHOP_ORDER,NVL(ZAB.NC_QTY, 0) NC_QTY,B.SFC_DISPATCH_BO,CF.VALUE MAIN_CHECK_USER,
CASE WHEN B.STATUS = 'COMPLETE' THEN TO_CHAR(ZNU2.FULL_NAME) ELSE '' END CHECK_USER,
CASE WHEN B.STATUS = 'COMPLETE' THEN TO_CHAR(B.MODIFIED_DATE_TIME,'yyyy-mm-dd hh24:mi:ss') ELSE '' END CHECK_DATE_TIME
FROM Z_INSPECTION_TASK B
INNER JOIN RESRCE RS ON B.SITE = RS.SITE AND RS.RESRCE = B.RESRCE
INNER JOIN OPERATION O ON O.OPERATION = B.OPERATION AND O.SITE = B.SITE
@ -52,6 +57,7 @@
INNER JOIN SHOP_ORDER P ON P.HANDLE = S.SHOP_ORDER_BO
INNER JOIN ITEM M ON M.HANDLE = P.ITEM_BO
LEFT JOIN Z_NWA_USER ZNU ON ZNU.USER_NAME = B.CREATE_USER
LEFT JOIN Z_NWA_USER ZNU2 ON ZNU2.USER_NAME = B.MODIFY_USER
LEFT JOIN ITEM_T Z ON Z.ITEM_BO = M.HANDLE AND Z.LOCALE = 'zh'
LEFT JOIN Z_ABNORMAL_BILL ZAB ON B.HANDLE = ZAB.OBJECT_BO
WHERE B.SITE = #{site}
@ -64,6 +70,9 @@
<if test="checkUser != null and checkUser != ''">
AND CF.VALUE = #{checkUser}
</if>
<if test="trueCheckUser != null and trueCheckUser != ''">
AND ZNU2.FULL_NAME like '%'||#{trueCheckUser}||'%'
</if>
<choose>
<when test="category != null and category != ''">
AND B.CATEGORY = #{category}

Loading…
Cancel
Save