| | |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.validation.annotation.Validated; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Collections; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | return BeanUtils.toBean(mps, MesProMpsRespDTO.class); |
| | | } |
| | | |
| | | @Override |
| | | public void updateMpsProducedQuantity(Long mpsId, BigDecimal quantity) { |
| | | mpsService.updateProducedQuantity(mpsId, quantity); |
| | | } |
| | | |
| | | @Override |
| | | public Boolean checkAndFinishMps(Long mpsId) { |
| | | return mpsService.checkAndFinishMps(mpsId); |
| | | } |
| | | |
| | | } |