1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.web.supplier.service;
|
| import javax.servlet.http.HttpServletResponse;
|
| import org.springframework.data.domain.PageRequest;
|
| import com.app.base.data.ApiResponseResult;
|
| public interface PrintService {
|
| // 打印标签-2022-6-14
| ApiResponseResult printLabel(String barcodeType, String suppNo, String ebeln,String ebelnQty ,String materialNo, String qty,
| String prodDate, String shipDate, String envirTag, String shelfLife, String flevel, String printQty,
| String remark,String actionType) throws Exception;
|
| //打印送货单-202206-18
| ApiResponseResult printDelivery(String deliveryNo)throws Exception;
|
| //重打标签-2022-6-24
| ApiResponseResult rePrintLabel(String labelId,String actionType)throws Exception;
|
| }
|
|