sfd
2025-05-09 2a5e8327d93d8489aa86686d632c484c52f19626
aps-modules/aps-core/src/main/java/com/aps/core/service/impl/ApsPlateOrderPlanManagerServiceImpl.java
@@ -7,6 +7,7 @@
import com.aps.core.domain.ApsPlateStandardRequire;
import com.aps.core.mapper.ApsPlateOrderPlanManagerMapper;
import com.aps.core.service.IApsPlateOrderPlanManagerService;
import com.aps.core.service.IApsPlateStandardRequireService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
@@ -24,6 +25,9 @@
    @Autowired
    private ApsPlateOrderPlanManagerMapper apsPlateOrderPlanManagerMapper;
    @Autowired
    private IApsPlateStandardRequireService apsPlateStandardRequireService;
    /**
     * 查询钣金工单计划管理
     *
@@ -35,11 +39,22 @@
        return apsPlateOrderPlanManagerMapper.selectApsPlanOrderManager(apsPlateOrderPlanManager);
    }
    /**
     * 查询钣金工单计划标准需求
     *
     * @param workOrderNo 工单号
     * @return
     */
    @Override
    public List<ApsPlateStandardRequire> selectApsPlanStandardRequire(String workOrderNo) {
        return apsPlateOrderPlanManagerMapper.selectApsPlanStandardRequire(workOrderNo);
    }
    /**
     * 批量更新计划时间
     *
     * @param apsPlateOrderPlanDate
     */
    @Transactional(rollbackFor = Exception.class)
    @Override
    public void updatePlanDate(ApsPlateOrderPlanDate apsPlateOrderPlanDate) {
@@ -52,6 +67,6 @@
                apsPlateOrderPlanManagerMapper.updatePlanDateByBatch(planRequireDate);
            });
        }
//        apsPlateStandardRequireService.generatorPlan();
    }
}