effort.php 619 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * The control file of execution module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2012 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
  6. * @license business(商业软件)
  7. * @author Yangyang Shi <shiyangyang@cnezsoft.com>
  8. * @package execution
  9. * @version $Id$
  10. * @link http://www.zentao.net
  11. */
  12. public function computeTaskEffort($date = '')
  13. {
  14. return $this->loadExtension('effort')->computeTaskEffort($date);
  15. }
  16. public function getTaskEffort($execution = '')
  17. {
  18. return $this->loadExtension('effort')->getTaskEffort($execution);
  19. }