| | |
| | | package com.consum.base.service; |
| | | |
| | | import com.walker.jdbc.service.BaseServiceImpl; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.stereotype.Service; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | import com.consum.base.pojo.LWhFormOutputParam; |
| | | import com.consum.base.pojo.excel.OutputExcelTemplate; |
| | | import com.consum.base.pojo.query.LWhFormOutputQry; |
| | | import com.consum.model.po.FinSysTenantUser; |
| | | import com.iplatform.model.po.S_user_core; |
| | | import com.walker.db.page.GenericPager; |
| | | import com.walker.jdbc.service.BaseService; |
| | | |
| | | /** |
| | | * @ClassName WhFormOutputService |
| | | * @Author cy |
| | | * |
| | | * @Date 2023/10/26 |
| | | * @Description |
| | | * @Version 1.0 |
| | | **/ |
| | | @Slf4j |
| | | @Service |
| | | public class LWhFormOutputService extends BaseServiceImpl { |
| | | public interface LWhFormOutputService extends BaseService { |
| | | |
| | | int add(LWhFormOutputParam param, S_user_core currentUser, FinSysTenantUser sysInfo); |
| | | |
| | | GenericPager queryFormOutputList(LWhFormOutputQry param); |
| | | |
| | | GenericPager<Map<String, Object>> queryFormOutputDetailList(LWhFormOutputQry param); |
| | | |
| | | /** |
| | | * 导出出库单 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | List<OutputExcelTemplate> getExportList(Long id); |
| | | |
| | | /** |
| | | * 通过调拨单查询出库单id |
| | | * |
| | | * @param transBusinessId |
| | | * @return |
| | | */ |
| | | Long queyrIdByTransferId(Long transBusinessId); |
| | | } |