| | |
| | | MonthlySettle selectLatestSettle(); |
| | | |
| | | /** |
| | | * 统计月结时间范围内的订单数量 |
| | | * 统计月结时间范围内未完成的入库订单数量 |
| | | */ |
| | | int countOrdersInRange(@Param("startDate") String startDate, @Param("endDate") String endDate); |
| | | int countUnfinishedOrdersInRangePakin(@Param("startDate") String startDate, @Param("endDate") String endDate); |
| | | |
| | | /** |
| | | * 统计月结时间范围内未完成的订单数量(入库和出库) |
| | | * 统计月结时间范围内未完成的出库订单数量 |
| | | */ |
| | | int countUnfinishedOrdersInRange(@Param("startDate") String startDate, @Param("endDate") String endDate); |
| | | int countUnfinishedOrdersInRangePakout(@Param("startDate") String startDate, @Param("endDate") String endDate); |
| | | |
| | | /** |
| | | * 统计月结时间范围内的物料出入库数量(从入库表查询) |
| | |
| | | * 清除出库订单的月结信息 |
| | | */ |
| | | int clearOrderSettleInfoPakout(@Param("settleId") Long settleId); |
| | | |
| | | /** |
| | | * 查询月结明细流水(入库订单明细) |
| | | */ |
| | | List<com.zy.asrs.entity.result.MonthlySettleDetailFlowVO> selectDetailFlowFromPakin(@Param("settleId") Long settleId); |
| | | |
| | | /** |
| | | * 查询月结明细流水(出库订单明细) |
| | | */ |
| | | List<com.zy.asrs.entity.result.MonthlySettleDetailFlowVO> selectDetailFlowFromPakout(@Param("settleId") Long settleId); |
| | | } |
| | | |