| | |
| | | import com.ruoyi.production.bean.dto.ProductionCostingQueryDto; |
| | | import com.ruoyi.production.bean.vo.ProductionCostingDetailVo; |
| | | import com.ruoyi.production.bean.vo.ProductionCostingSummaryVo; |
| | | import com.ruoyi.production.pojo.ProductionCostingDept; |
| | | import com.ruoyi.production.pojo.ProductionCostingProcess; |
| | | import com.ruoyi.production.pojo.ProductionCostingFactor; |
| | | import com.ruoyi.production.pojo.ProductionCostingStandard; |
| | | import com.ruoyi.production.pojo.ProductionCostingWorkday; |
| | |
| | | /** 月份工作日信息 */ |
| | | Map<String, Object> workdayInfo(String yearMonth); |
| | | |
| | | /* ---------------- 部门类型配置 ---------------- */ |
| | | List<ProductionCostingDept> listDept(); |
| | | /* ---------------- 工序类型配置 ---------------- */ |
| | | List<ProductionCostingProcess> listProcess(ProductionCostingProcess query); |
| | | |
| | | boolean saveDept(ProductionCostingDept dept); |
| | | boolean saveProcess(ProductionCostingProcess process); |
| | | |
| | | boolean updateDept(ProductionCostingDept dept); |
| | | boolean updateProcess(ProductionCostingProcess process); |
| | | |
| | | boolean removeDept(Long id); |
| | | boolean removeProcess(Long id); |
| | | |
| | | /* ---------------- 标准数量配置 ---------------- */ |
| | | List<ProductionCostingStandard> listStandard(ProductionCostingStandard query); |