| | |
| | | import com.zy.asrs.entity.param.*; |
| | | import com.zy.asrs.entity.result.OpenOrderCompeteResult; |
| | | import com.zy.asrs.entity.result.StockVo; |
| | | import com.zy.asrs.mapper.ReportQueryMapper; |
| | | import com.zy.asrs.mapper.TagMapper; |
| | | import com.zy.asrs.service.*; |
| | | import com.zy.asrs.task.core.ReturnT; |
| | |
| | | private WaitPakinService waitPakinService; |
| | | @Autowired |
| | | private WrkDetlService wrkDetlService; |
| | | @Autowired |
| | | private ReportQueryMapper reportQueryMapper; |
| | | |
| | | @Override |
| | | @Transactional |
| | |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 入库记录获取 |
| | | */ |
| | | @Override |
| | | @Transactional |
| | | public List<ViewWorkInBean> inlogERP() { |
| | | List<ViewWorkInBean> viewWorkInERP = reportQueryMapper.getViewWorkInERP(); |
| | | ArrayList<ViewWorkInBean> viewWorkInBeans = new ArrayList<>(); |
| | | for (ViewWorkInBean viewWorkInBean:viewWorkInERP){ |
| | | viewWorkInBean.sype(); |
| | | viewWorkInBeans.add(viewWorkInBean); |
| | | } |
| | | return viewWorkInBeans; |
| | | } |
| | | |
| | | /** |
| | | * 出库记录获取 |
| | | */ |
| | | @Override |
| | | @Transactional |
| | | public List<ViewWorkInBean> outlogERP() { |
| | | List<ViewWorkInBean> viewWorkInERP = reportQueryMapper.getViewWorkOutERP(); |
| | | ArrayList<ViewWorkInBean> viewWorkInBeans = new ArrayList<>(); |
| | | for (ViewWorkInBean viewWorkInBean:viewWorkInERP){ |
| | | viewWorkInBean.sype(); |
| | | viewWorkInBeans.add(viewWorkInBean); |
| | | } |
| | | return viewWorkInBeans; |
| | | } |
| | | |
| | | } |