czt
9 天以前 db67639449287bcec461916a7dca6003ee5dd03c
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
34
35
36
37
38
39
40
package com.fzzy.sys.manager.print;
 
import com.fzzy.igds.domain.InoutRecord;
import com.fzzy.igds.service.InoutRecordService;
import org.springframework.stereotype.Component;
import javax.annotation.Resource;
 
/**
 * @Description 单据打印
 * @Author CZT
 * @Date 2025/12/4 9:27
 */
@Component
public class PrintManager {
 
    @Resource
    private InoutRecordService inoutRecordService;
 
    /**
     * 获取入库过磅单数据信息
     *
     * @param data
     * @return
     */
    public String inWeightBill(InoutRecord data) {
        return inoutRecordService.inWeightBill( data);
    }
 
    /**
     * 获取出库过磅单
     *
     * @param data
     * @return
     */
    public String outWeightBill(InoutRecord data) {
 
        return inoutRecordService.outWeightBill( data);
    }
 
}