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
package com.web.supplier.service;
 
import javax.servlet.http.HttpServletResponse;
 
import org.springframework.data.domain.PageRequest;
 
import com.app.base.data.ApiResponseResult;
 
public interface DeliveryNoteService {
 
    //-获取送货单列表-2022-6-16
    ApiResponseResult getDeliveryNote()throws Exception;
    
    //-送货单信息操作-2022-6-16
    ApiResponseResult doDeliveryInfo(String mid, String activeFlag,String fmemo,String furgent)throws Exception;
    
    //-送货单明细操作-2022-6-17
    ApiResponseResult doDeliveryDet(String deliveryNo, String purchaseNo,
            String purchaseLine,String purchaseQty,String materialNo,String deliveryQty,
            String fmemo,String furgent,String detId,String dataType)throws Exception;
    
    //-送货单审核/反审核-2022-6-18
    ApiResponseResult checkDelivery(String deliveryNo, String activeFlag)throws Exception;
    
    //送货单作废-2022-7-15
    ApiResponseResult cancelDelivery(String deliveryNo)throws Exception;
}