Package org.projectforge.web.wicket.components

Examples of org.projectforge.web.wicket.components.ConsumptionBarPanel


      maxDays = NumberHelper.setDefaultScale(taskTree.getPersonDays(node));
    }
    BigDecimal usage = (node != null) ? new BigDecimal(node.getDuration(taskTree, true)).divide(DateHelper.SECONDS_PER_WORKING_DAY, 2,
        BigDecimal.ROUND_HALF_UP) : BigDecimal.ZERO;
    usage = NumberHelper.setDefaultScale(usage);
    final ConsumptionBarPanel panel = new ConsumptionBarPanel(componentId, usage, maxDays, taskId, finished,
        parentComponent.getString("projectmanagement.personDays.short"), selectMode == false);
    return panel;
  }
View Full Code Here

TOP

Related Classes of org.projectforge.web.wicket.components.ConsumptionBarPanel

Copyright © 2018 www.massapicom. 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.