huminmin
昨天 ff09f8e85d51c5d127796bfbd097f5fad9267d4b
src/main/java/com/ruoyi/production/service/impl/ProductionProductMainServiceImpl.java
@@ -811,13 +811,14 @@
                && productionProductMain.getAuditStatus() != null
                && productionProductMain.getAuditStatus() == 1
                && productionProductMain.getReportType() != null
                && productionProductMain.getReportType() == 0;
                && (productionProductMain.getReportType() == 0 || productionProductMain.getReportType() == 1);
    }
    private boolean isExcludedFromWage(ProductionProductMain productionProductMain) {
        return productionProductMain != null
                && productionProductMain.getReportType() != null
                && productionProductMain.getReportType() != 0;
                && productionProductMain.getReportType() != 0
                && productionProductMain.getReportType() != 1;
    }
    @Override