4
hao
2025-04-16 c5fb1fbcbb2bf4d511773d348f9ef625855c61fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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;
}