@ -74,9 +74,6 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
@Autowired
private AbnormalBillDisposeMapper abnormalBillDisposeMapper ;
@Autowired
private RouterMapper routerMapper ;
@Autowired
private ShopOrderMapper shopOrderMapper ;
@ -93,6 +90,7 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
private DataFieldListService dataFieldListService ;
@Override
public IPage < AbnormalBill > selectPage ( FrontPage < AbnormalBill > frontPage , AbnormalBill abnormalBill ) {
QueryWrapper < AbnormalBill > queryWrapper = new QueryWrapper < > ( ) ;
@ -218,6 +216,14 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
dataField . setDataField ( "RESPONSIBILITY_TYPE" ) ;
List < DataField > dutyTypeList = dataFieldListService . findDataFieldListById ( dataField ) ;
hashMap . put ( "dutyType" , dutyTypeList ) ;
//当前登录用户的fullName
NwaUser nwaUser = new NwaUser ( ) ;
nwaUser . setSite ( site ) ;
nwaUser . setUserName ( CommonMethods . getUser ( ) ) ;
List < NwaUser > nwaUsers = nwaUserService . selectList ( nwaUser ) ;
if ( nwaUsers ! = null ) {
hashMap . put ( "currentUser" , nwaUsers . get ( 0 ) . getFullName ( ) ) ;
}
return hashMap ;
}
@ -240,10 +246,24 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
}
@Override
public AbnormalBillDto findAllByAbnormalNoDevice ( AbnormalBill abnormalBill ) {
String site = CommonMethods . getSite ( ) ;
String local = LocaleContextHolder . getLocale ( ) . getLanguage ( ) ;
abnormalBill . setSite ( site ) ;
if ( StringUtil . isEmpty ( abnormalBill . getAbnormalNo ( ) ) ) {
return null ;
}
return abnormalBillMapper . findAllByAbnormalNoDevice ( abnormalBill , local ) ;
}
@Override
public void resProcessing ( AbnormalBill abnormalBill ) {
String site = CommonMethods . getSite ( ) ;
String user = CommonMethods . getUser ( ) ;
String user = "" ;
if ( StringUtil . isBlank ( abnormalBill . getResponseUser ( ) ) ) {
user = CommonMethods . getUser ( ) ;
}
LocalDateTime now = LocalDateTime . now ( ) ;
abnormalBill . setSite ( site ) ;
abnormalBill . setResponseUser ( user ) ;
@ -306,11 +326,10 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
abnormalBillDispose . setHandle ( HandleEnum . Z_ABNORMAL_BILL_DISPOSE . getHandle ( site , abnormalBill . getAbnormalNo ( ) ) ) ;
//判断判责提交是否已经填写
AbnormalBillDispose abnormalBillDispose1 = abnormalBillDisposeMapper . selectById ( abnormalBillDispose . getHandle ( ) ) ;
if ( abnormalBillDispose1 ! = null ) {
if ( ! StringUtil . isBlank ( abnormalBillDispose1 . getDutyCauseType ( ) ) ) {
throw BusinessException . build ( "该异常单已经判责提交" ) ;
}
//AbnormalBillDispose abnormalBillDispose1 = abnormalBillDisposeMapper.selectById(abnormalBillDispose.getHandle());
AbnormalBill abnormalBill1 = abnormalBillMapper . selectById ( abnormalBill . getHandle ( ) ) ;
if ( ! "N" . equals ( abnormalBill1 . getStatus ( ) ) & & ! "X" . equals ( abnormalBill1 . getStatus ( ) ) ) {
throw BusinessException . build ( "该异常单已经判责提交" ) ;
}
abnormalBill . setStatus ( Constants . CORRECTION_CONFIRM ) ;
abnormalBillDispose . setDutyDateTime ( now ) ;
@ -445,19 +464,20 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
if ( StringUtil . isBlank ( abnormalBill . getSfc ( ) ) & & ! "S" . equals ( abnormalBill . getType ( ) ) ) {
throw BusinessException . build ( "产品条码不能为空" ) ;
}
if ( StringUtil . isBlank ( abnormalBill . getResrce ( ) ) ) {
throw BusinessException . build ( "设备编号不能为空" ) ;
}
// if(StringUtil.isBlank(abnormalBill.getResrce())){
// throw BusinessException.build("设备编号不能为空");
// }
if ( ! StringUtil . isBlank ( abnormalBill . getMessageType ( ) ) ) {
NcGroup messageType = ncGroupMapper . selectById ( HandleEnum . NC_GROUP . getHandle ( site , abnormalBill . getMessageType ( ) ) ) ;
if ( messageType = = null ) {
throw BusinessException . build ( "该消息类型不存在" ) ;
}
}
Resrce resrce = resrceMapper . selectById ( HandleEnum . RESOURCE . getHandle ( site , abnormalBill . getResrce ( ) ) ) ;
if ( resrce = = null ) {
throw BusinessException . build ( "该设备编号不存在" ) ;
}
// Resrce resrce = resrceMapper.selectById(HandleEnum.RESOURCE.getHandle(site, abnormalBill.getResrce()));
// if(resrce == null){
// throw BusinessException.build("该设备编号不存在");
// }
//判断不良品数量和问题数量是否为正整数
try {
if ( ! StringUtil . isBlank ( abnormalBill . getNcQty ( ) ) & & Integer . parseInt ( abnormalBill . getNcQty ( ) ) < 0 ) {
@ -471,7 +491,6 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
}
//判断输入的用户组是否正确,并返回对应的用户
nwaUserService . checkUserGroup ( abnormalBillDispose . getDutySendUserGroup ( ) ) ;
//插入原因分类和责任分类
if ( dutyTypes . size ( ) > 0 ) {
abnormalDutyService . saveOrUpdateBatch ( dutyTypes ) ;
@ -483,14 +502,16 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
}
@Override
public void cancelBrowse ( String handle , String cancelBrowse ) {
public void cancelBrowse ( String handle , String cancelBrowse ,String code ) {
LocalDateTime now = LocalDateTime . now ( ) ;
AbnormalBill abnormalBill = abnormalBillMapper . selectById ( handle ) ;
abnormalBill . setStatus ( Constants . CANCEL ) ;
abnormalBill . setCancelReason ( cancelBrowse ) ;
if ( ! StringUtil . isBlank ( code ) ) {
abnormalBill . setCancelCode ( code ) ;
}
abnormalBill . setCancelUser ( CommonMethods . getUser ( ) ) ;
abnormalBill . setCancelDateTime ( now ) ;
this . saveOrUpdate ( abnormalBill ) ;
}
}