groupModel.php 518 B

1234567891011121314151617181920212223
  1. <?php
  2. class flow_groupClassModel extends flowModel
  3. {
  4. protected $flowcompanyidfieds = 'none';
  5. protected function flowbillwhere($uid, $lx)
  6. {
  7. //$carr = $this->adminmodel->getcompanyinfo();
  8. //$this->allid= $carr['companyallid'];
  9. //$companywhere = ' and `companyid` in('.join(',', $this->allid).')';
  10. $where = '';
  11. if(ISMORECOM && $this->adminid>1){
  12. $where = ' and `companyid`='.$this->companyid.'';
  13. }
  14. return array(
  15. 'companywhere' => '',
  16. 'where' => $where
  17. );
  18. }
  19. }
粤ICP备19079148号