demand: OMS系统-对货管理 -进仓对货 - 查询支持根据运单号/进仓单号/创建时间/确认状态/进仓状态查询
This commit is contained in:
parent
ec9d50c55f
commit
79effb0e60
@ -1,11 +1,11 @@
|
||||
|
||||
/**
|
||||
/**
|
||||
* @Project: emis
|
||||
* @Title: EmisWarehouseInController.java
|
||||
* @author linfso
|
||||
* @date 2024-05-22 00:20:31
|
||||
* @Copyright: ShangHai Duta 2022 All rights reserved.
|
||||
* @version v1.0
|
||||
* @version v1.0
|
||||
* @Description: <p> 进仓单 控制器 </p>
|
||||
*/
|
||||
|
||||
@ -37,7 +37,7 @@ import java.util.List;
|
||||
|
||||
/**
|
||||
* 进仓单Controller
|
||||
*
|
||||
*
|
||||
* @author linfso
|
||||
* @date 2024-05-22 00:20:31
|
||||
*/
|
||||
@ -113,12 +113,25 @@ public class WarehouseInController extends BaseController
|
||||
"waybillDetail"
|
||||
},value= EmisWarehouseIn.class,type= JacksonFilter.JscksonFilterType.RESPONSE)
|
||||
@GetMapping("/listSimpleByOms")
|
||||
public TableDataInfo listSimpleByOms(EmisWarehouseIn emisWarehouseIn,String queryStatusType)
|
||||
public TableDataInfo listSimpleByOms(EmisWarehouseIn emisWarehouseIn)
|
||||
{
|
||||
startPage();
|
||||
|
||||
emisWarehouseIn.getParams().put("queryStatusType",queryStatusType);
|
||||
if(!StringUtils.isEmpty(emisWarehouseIn.getBillCode())){
|
||||
emisWarehouseIn.setBillCode( WaybillHelper.formatQueryValue(emisWarehouseIn.getBillCode()));
|
||||
String[] billCodeSortList = emisWarehouseIn.getBillCode().split(",");
|
||||
if(billCodeSortList.length>1){
|
||||
emisWarehouseIn.getParams().put("billCodeSortList", Arrays.asList(billCodeSortList));
|
||||
}
|
||||
}
|
||||
|
||||
if(!StringUtils.isEmpty(emisWarehouseIn.getInNo())){
|
||||
emisWarehouseIn.setInNo(WaybillHelper.formatQueryValue(emisWarehouseIn.getInNo()));
|
||||
String[] inNoSortList = emisWarehouseIn.getInNo().split(",");
|
||||
if(inNoSortList.length>1){
|
||||
emisWarehouseIn.getParams().put("inNoSortList",Arrays.asList(inNoSortList));
|
||||
}
|
||||
}
|
||||
List<EmisWarehouseIn> list = emisWarehouseInService.selectEmisWarehouseInListByOms(emisWarehouseIn);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user