| | |
| | | package com.jcdm.main.bs.orderScheduling.service.impl; |
| | | |
| | | import java.util.List; |
| | | import com.jcdm.common.utils.DateUtils; |
| | | import com.jcdm.main.bs.orderScheduling.Query.PrepareOnlineQuery; |
| | | import com.jcdm.main.bs.orderScheduling.domain.BsOrderScheduling; |
| | | import com.jcdm.main.bs.orderScheduling.mapper.BsOrderSchedulingMapper; |
| | | import com.jcdm.main.bs.orderScheduling.service.IBsOrderSchedulingService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import com.jcdm.main.bs.orderScheduling.mapper.BsOrderSchedulingMapper; |
| | | import com.jcdm.main.bs.orderScheduling.domain.BsOrderScheduling; |
| | | import com.jcdm.main.bs.orderScheduling.service.IBsOrderSchedulingService; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 订单排产Service业务层处理 |
| | |
| | | * @date 2024-01-13 |
| | | */ |
| | | @Service |
| | | public class BsOrderSchedulingServiceImpl implements IBsOrderSchedulingService |
| | | public class BsOrderSchedulingServiceImpl implements IBsOrderSchedulingService |
| | | { |
| | | @Autowired |
| | | private BsOrderSchedulingMapper bsOrderSchedulingMapper; |
| | |
| | | @Override |
| | | public List<BsOrderScheduling> selectBsOrderSchedulingList(BsOrderScheduling bsOrderScheduling) |
| | | { |
| | | if(bsOrderScheduling.getDateConditions()!=null){ |
| | | String[] conditions = bsOrderScheduling.getDateConditions(); |
| | | bsOrderScheduling.setStartTime(conditions[0]); |
| | | bsOrderScheduling.setEndTime(conditions[1]); |
| | | } |
| | | return bsOrderSchedulingMapper.selectBsOrderSchedulingList(bsOrderScheduling); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 查询合箱上线列表 |
| | | * @param prepareOnlineQuery |
| | | * @return list |
| | | */ |
| | | public List<BsOrderScheduling> getPrepareOnlineList(PrepareOnlineQuery prepareOnlineQuery){ |
| | | return bsOrderSchedulingMapper.getPrepareOnlineList(prepareOnlineQuery); |
| | | } |
| | | /** |
| | | * 新增订单排产 |
| | | * |