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;
|
}
|