package com.web.supplier.service;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
import org.springframework.data.domain.PageRequest;
|
|
import com.app.base.data.ApiResponseResult;
|
|
public interface SearchService {
|
|
// 查询-获取采购订单列表-2022-6-8
|
ApiResponseResult getPurchaseOrder(String billNo, String materialNo, String begTime, String endTime,
|
PageRequest pageRequest) throws Exception;
|
|
// 查询-获取送货计划列表,通过采购订单带出-2022-6-8
|
ApiResponseResult getDeliveryPlanByOrder(String materialNo, PageRequest pageRequest) throws Exception;
|
|
// 查询-获取送货明细列表-2022-6-20
|
ApiResponseResult getDeliveryDet(String billNo, String lineNo, String materialNo, PageRequest pageRequest)
|
throws Exception;
|
|
// 查询-获取条码历史记录-2022-6-20
|
ApiResponseResult getBarcodeHistory(String billNo, String begTime, String endTime, String materialNo,
|
String materialName, String barcode, PageRequest pageRequest) throws Exception;
|
|
// 查询-获取送货单记录-2022-6-21
|
ApiResponseResult getDeliveryRecord(String deliveryNo,String billNo, String begTime, String endTime, String materialNo,
|
String materialName, PageRequest pageRequest) throws Exception;
|
|
// 查询-获取送货计划-2022-6-21
|
ApiResponseResult getDeliveryPlan(String planOrder,String materialNo,String materialName,
|
String begTime, String endTime,PageRequest pageRequest) throws Exception;
|
}
|