@ -7,6 +7,8 @@ import com.foreverwin.mesnac.common.dto.SfcDispatchDto;
import com.foreverwin.mesnac.common.enums.HandleEnum ;
import com.foreverwin.mesnac.common.enums.HandleEnum ;
import com.foreverwin.mesnac.common.util.StringUtil ;
import com.foreverwin.mesnac.common.util.StringUtil ;
import com.foreverwin.mesnac.dispatch.dto.IssueItemDto ;
import com.foreverwin.mesnac.dispatch.dto.IssueItemDto ;
import com.foreverwin.mesnac.meapi.mapper.NwaUserMapper ;
import com.foreverwin.mesnac.meapi.mapper.UserGroupMapper ;
import com.foreverwin.mesnac.meapi.model.NwaUser ;
import com.foreverwin.mesnac.meapi.model.NwaUser ;
import com.foreverwin.mesnac.meapi.service.NwaUserService ;
import com.foreverwin.mesnac.meapi.service.NwaUserService ;
import com.foreverwin.mesnac.meapi.service.UserGroupService ;
import com.foreverwin.mesnac.meapi.service.UserGroupService ;
@ -50,6 +52,8 @@ public class CallItemServiceImpl extends ServiceImpl<CallItemMapper, CallItem> i
private CallItemService callItemService ;
private CallItemService callItemService ;
@Autowired
@Autowired
private NwaUserService nwaUserService ;
private NwaUserService nwaUserService ;
@Autowired
private UserGroupMapper userGroupMapper ;
@Override
@Override
public void sfcDispatchCallItem ( String site , String user , List < SfcDispatchDto > sfcDispatchList ) {
public void sfcDispatchCallItem ( String site , String user , List < SfcDispatchDto > sfcDispatchList ) {
@ -70,7 +74,8 @@ public class CallItemServiceImpl extends ServiceImpl<CallItemMapper, CallItem> i
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//工序叫料数据
//工序叫料数据
for ( SfcDispatchDto sfcDispatchDto : sfcDispatchList ) {
//Leon.L 2021/8/16 业务取消工序叫料
/ * * for ( SfcDispatchDto sfcDispatchDto : sfcDispatchList ) {
String prepositionStepId = sfcDispatchDto . getPrepositionStepId ( ) ;
String prepositionStepId = sfcDispatchDto . getPrepositionStepId ( ) ;
if ( StringUtil . isBlank ( prepositionStepId ) ) {
if ( StringUtil . isBlank ( prepositionStepId ) ) {
continue ;
continue ;
@ -97,7 +102,7 @@ public class CallItemServiceImpl extends ServiceImpl<CallItemMapper, CallItem> i
callItem . setModifyUser ( user ) ;
callItem . setModifyUser ( user ) ;
callItem . setModifiedDateTime ( nowDate ) ;
callItem . setModifiedDateTime ( nowDate ) ;
list . add ( callItem ) ;
list . add ( callItem ) ;
}
} * * /
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@ -150,13 +155,14 @@ public class CallItemServiceImpl extends ServiceImpl<CallItemMapper, CallItem> i
public List < CallItem > findCallItemListPda ( CallItem callItem ) {
public List < CallItem > findCallItemListPda ( CallItem callItem ) {
String site = CommonMethods . getSite ( ) ;
String site = CommonMethods . getSite ( ) ;
String user = CommonMethods . getUser ( ) ;
String user = CommonMethods . getUser ( ) ;
NwaUser byId = nwaUserService . getById ( HandleEnum . USER . getHandle ( site , user ) ) ;
String language = LocaleContextHolder . getLocale ( ) . getLanguage ( ) ;
String language = LocaleContextHolder . getLocale ( ) . getLanguage ( ) ;
callItem . setCallType ( Constants . CALL_TYPE_MATERIAL ) ;
callItem . setCallType ( Constants . CALL_TYPE_MATERIAL ) ;
List < NwaUser > nwaUsers = nwaUserService . checkUserGroup ( site , "CJ_ZR,ADMINISTRATORS" ) ;
List < NwaUser > nwaUsers = nwaUserService . checkUserGroup ( site , "CJ_ZR,ADMINISTRATORS" ) ;
if ( nwaUsers . contains ( byId ) ) {
for ( NwaUser nwaUser : nwaUsers ) {
if ( user . equals ( nwaUser . getUserName ( ) ) ) {
return callItemMapper . findCallItemListPda ( site , language , null , callItem ) ;
return callItemMapper . findCallItemListPda ( site , language , null , callItem ) ;
}
}
}
return callItemMapper . findCallItemListPda ( site , language , user , callItem ) ;
return callItemMapper . findCallItemListPda ( site , language , user , callItem ) ;
}
}
@ -183,7 +189,6 @@ public class CallItemServiceImpl extends ServiceImpl<CallItemMapper, CallItem> i
List < CallItem > callItemList = ( List < CallItem > ) map . get ( "callItemList" ) ;
List < CallItem > callItemList = ( List < CallItem > ) map . get ( "callItemList" ) ;
String parse = JSON . toJSONString ( callItemList ) ;
String parse = JSON . toJSONString ( callItemList ) ;
List < CallItem > callItems = JSONObject . parseArray ( parse , CallItem . class ) ;
List < CallItem > callItems = JSONObject . parseArray ( parse , CallItem . class ) ;
CallItem callItem1 = callItems . get ( 0 ) ;
LocalDateTime dateTime = LocalDateTime . now ( ) ;
LocalDateTime dateTime = LocalDateTime . now ( ) ;
for ( CallItem callItem : callItems ) {
for ( CallItem callItem : callItems ) {
callItemMapper . updateCallItemStatusByCallItem ( site , status , user , dateTime , callItem ) ;
callItemMapper . updateCallItemStatusByCallItem ( site , status , user , dateTime , callItem ) ;
@ -372,11 +377,11 @@ public class CallItemServiceImpl extends ServiceImpl<CallItemMapper, CallItem> i
String blankingSize = callItem . getBlankingSize ( ) ;
String blankingSize = callItem . getBlankingSize ( ) ;
//工序叫料不需要计算数量
//工序叫料不需要计算数量
if ( Constants . CALL_TYPE_OPERATION . equals ( callItem . getCallType ( ) ) ) {
/ * * if ( Constants . CALL_TYPE_OPERATION . equals ( callItem . getCallType ( ) ) ) {
callItem . setSizeReqQty ( BigDecimal . ONE ) ;
callItem . setSizeReqQty ( BigDecimal . ONE ) ;
compQtyMap . put ( component , BigDecimal . ONE ) ;
compQtyMap . put ( component , BigDecimal . ONE ) ;
continue ;
continue ;
}
} * * /
if ( StringUtil . isBlank ( blankingSize ) ) {
if ( StringUtil . isBlank ( blankingSize ) ) {
callItem . setSizeReqQty ( callItem . getRequiredQty ( ) ) ;
callItem . setSizeReqQty ( callItem . getRequiredQty ( ) ) ;
@ -384,8 +389,10 @@ public class CallItemServiceImpl extends ServiceImpl<CallItemMapper, CallItem> i
continue ;
continue ;
}
}
if ( "GB" . equals ( itemGroup ) ) {
if ( StringUtil . notBlank ( itemGroup ) & & "GB" . equals ( itemGroup ) ) {
if ( ! blankingSize . contains ( "*" ) ) {
if ( ! blankingSize . contains ( "*" ) | | blankingSize . split ( "\\*" ) . length < 2 ) {
callItem . setSizeReqQty ( callItem . getRequiredQty ( ) ) ;
compQtyMap . put ( component , callItem . getRequiredQty ( ) ) ;
continue ;
continue ;
}
}