oa.php 627 B

1234567891011121314151617181920
  1. <?php
  2. public function isClickable($leave, $action)
  3. {
  4. return $this->loadExtension('oa')->isClickable($leave, $action);
  5. }
  6. public function getList($type = 'personal', $year = '', $month = '', $account = '', $dept = '', $status = '', $orderBy = 'id_desc')
  7. {
  8. return $this->loadExtension('oa')->getList($type, $year, $month, $account, $dept, $status, $orderBy);
  9. }
  10. public function getReviewedBy($account = '', $module = 'leave', $app = 'oa')
  11. {
  12. return $this->loadExtension('oa')->getReviewedBy($account, $module, $app);
  13. }
  14. public function getAllMonth($type)
  15. {
  16. return $this->loadExtension('oa')->getAllMonth($type);
  17. }