@ -70,12 +70,13 @@ public class SfcDispatchController {
@ResponseBody
@GetMapping ( "getSfcDispatch" )
public R getSfcDispatch ( String workCenter , String dispatchStatus , String item , String itemNumber , String workOrder , String shopOrder ,
String resrce , String resourceType , String operation , String sfc, String component , String componentDescription , String turnOperation ,
String resrce , String resourceType , String operation , String operationDescription, String sfc, String component , String componentDescription , String turnOperation ,
String isDispatch , String startFromDate_S , String startToDate_S , String completeFromDate_S , String completeToDate_S ) {
List < SfcDispatchDto > list ;
try {
SfcDispatchDto sfcDispatchDto = new SfcDispatchDto ( ) ;
sfcDispatchDto . setSite ( CommonMethods . getSite ( ) ) ;
sfcDispatchDto . setUser ( CommonMethods . getUser ( ) ) ;
sfcDispatchDto . setWorkCenter ( workCenter ) ;
sfcDispatchDto . setDispatchStatus ( dispatchStatus ) ;
sfcDispatchDto . setItem ( item ) ;
@ -85,6 +86,7 @@ public class SfcDispatchController {
sfcDispatchDto . setResrce ( resrce ) ;
sfcDispatchDto . setResourceType ( resourceType ) ;
sfcDispatchDto . setOperation ( operation ) ;
sfcDispatchDto . setOperationDescription ( operationDescription ) ;
sfcDispatchDto . setSfc ( sfc ) ;
sfcDispatchDto . setComponent ( component ) ;
sfcDispatchDto . setComponentDescription ( componentDescription ) ;
@ -123,6 +125,7 @@ public class SfcDispatchController {
List < SfcDispatchDto > list ;
try {
sfcDispatchDto . setSite ( CommonMethods . getSite ( ) ) ;
sfcDispatchDto . setUser ( CommonMethods . getUser ( ) ) ;
if ( sfcDispatchDto . getStartFromDate_S ( ) ! = null ) {
sfcDispatchDto . setStartFromDate ( DateUtil . parse ( sfcDispatchDto . getStartFromDate_S ( ) ) ) ;
}
@ -145,58 +148,6 @@ public class SfcDispatchController {
}
/ * *
* 分 页 查 询 数 据
*
* @param frontPage 分 页 信 息
* @return
* /
@ResponseBody
@GetMapping ( "/page" )
public R page ( FrontPage < SfcDispatch > frontPage , SfcDispatch sfcDispatch ) {
IPage result ;
QueryWrapper < SfcDispatch > queryWrapper = new QueryWrapper < > ( ) ;
queryWrapper . setEntity ( sfcDispatch ) ;
sfcDispatch . setSite ( CommonMethods . getSite ( ) ) ;
if ( frontPage . getGlobalQuery ( ) ! = null & & ! "" . equals ( frontPage . getGlobalQuery ( ) . trim ( ) ) ) {
//TODO modify global query
queryWrapper . lambda ( ) . and ( wrapper - > wrapper
. like ( SfcDispatch : : getHandle , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getSite , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getShopOrder , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getSfc , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getBlankingSize , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getDispatchSeq , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getDispatchNo , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getDispatchStatus , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getDrawingsNo , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getDrawingsRevision , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getIsLock , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getRouterBo , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getStepId , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getOperation , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getResourceType , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getWorkCenter , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getResrce , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getEmployee , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getTurnOperation , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getIsDispatch , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getIsImport , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getRemark , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getCreateUser , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getModifyUser , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getOther1 , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getOther2 , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getOther3 , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getOther4 , frontPage . getGlobalQuery ( ) )
. or ( ) . like ( SfcDispatch : : getOther5 , frontPage . getGlobalQuery ( ) )
) ;
}
result = sfcDispatchService . page ( frontPage . getPagePlus ( ) , queryWrapper ) ;
return R . ok ( result ) ;
}
@ResponseBody
@PostMapping ( "/saveDispatch" )
public R saveDispatch ( @RequestBody List < SfcDispatchDto > sfcDispatchList ) {