| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.yuanchu.mom.pojo.ManufactureOrder; |
| | | import com.yuanchu.mom.pojo.dto.ManufactureOrderDto; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.List; |
| | |
| | | |
| | | /** |
| | | * 查看排产详情 |
| | | * @param manOrdId |
| | | * @param schedulingId |
| | | * @return |
| | | */ |
| | | ManufactureOrderDto sePros(Integer manOrdId); |
| | | Map<String, Object> sePros(Integer schedulingId); |
| | | |
| | | /** |
| | | * 下达 |
| | | * @param manOrdId |
| | | * @param manufactureOrderId 订单Id |
| | | * @param schedulingId 排产Id |
| | | */ |
| | | void down(Integer manOrdId); |
| | | void down(Integer manufactureOrderId, Integer schedulingId); |
| | | |
| | | /** |
| | | * 批量删除 |
| | |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> towTree(); |
| | | |
| | | /** |
| | | * 判断输入数量是否超出 |
| | | * @param manOrdId 订单Id |
| | | * @param schedulingNumber 用户输入数量 |
| | | */ |
| | | Integer checkScheduled(Integer manOrdId, Integer schedulingNumber); |
| | | } |
| | | |