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