Examples of calculateEndGivenWorkableDays()


Examples of org.libreplan.business.planner.entities.Task.calculateEndGivenWorkableDays()

                        @Override
                        public void onEvent(Event event) {
                            Task task = getTask();
                            Integer workableDays = taskWorkableDays.getValue();
                            if (allocationRowsHandler.isForwardsAllocation()) {
                                IntraDayDate newEnd = ensureItIsAfterConsolidation(task
                                        .calculateEndGivenWorkableDays(workableDays));
                                updateWorkableDaysIfNecessary(workableDays,
                                        getTask().getIntraDayStartDate(),
                                        newEnd);
                                taskPropertiesController
View Full Code Here

Examples of org.libreplan.business.planner.entities.Task.calculateEndGivenWorkableDays()

                Task task = getTask();
                taskWorkableDays.setConstraint(positiveValueRequired());
                taskWorkableDays.setValue(lastSpecifiedWorkableDays);
                showValueOfDateOn(
                        labelTaskEnd,
                        task.calculateEndGivenWorkableDays(
                                lastSpecifiedWorkableDays).getDate());
                lastSpecifiedWorkableDays = null;
            }
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.