public function __construct()
 {
     parent::__construct();
     global $_CALEM_conf;
     $this->conf = $_CALEM_conf['upload_conf'];
     $this->uploadName = $this->conf['upload_name'];
 }
 public function __construct()
 {
     parent::__construct();
     global $_CALEM_conf;
     $this->confMap = $_CALEM_conf['wo_conf']['wo_generation']['scheduleBoMap'];
     $this->standingPmSql = $_CALEM_conf['wo_conf']['wo_generation']['standing_pm_sql'];
 }
Example #3
0
 public function __construct()
 {
     parent::__construct();
     $this->schedUserDbo = CalemFactory::getDbo('sched_user');
     $shiftDd = CalemFactory::getDropdown('shift');
     $this->shiftData = $shiftDd->getData();
 }
Example #4
0
 public function __construct()
 {
     parent::__construct();
     //Get configuration
     global $_CALEM_conf;
     $this->conf = $_CALEM_conf['budget_conf'];
 }
Example #5
0
 public function __construct()
 {
     parent::__construct();
     global $_CALEM_conf;
     $this->conf = $_CALEM_conf['admin_conf'];
     $fv = $_CALEM_conf['admin_conf']['first_version'];
     $this->firstVersion = new CalemVersion($fv['vid'], $fv['note'], $fv['props']);
 }
Example #6
0
 public function __construct()
 {
     parent::__construct();
     //Get configuration
     global $_CALEM_conf;
     $this->conf = $_CALEM_conf['wo_conf'];
     $this->lookupPmConf = $_CALEM_conf['pm_conf']['lookupWoNewFromPm'];
 }
Example #7
0
 public function __construct()
 {
     parent::__construct();
     //Get configuration
     global $_CALEM_conf;
     $this->conf = $_CALEM_conf['in_conf'];
     $this->inBo = new CalemInBo();
 }
Example #8
0
 public function __construct()
 {
     parent::__construct();
     //Get configuration
     global $_CALEM_conf;
     $this->conf = $_CALEM_conf['in_conf'];
     $this->uomDbo = CalemFactory::getDbo('uom_map');
 }
 public function __construct()
 {
     parent::__construct();
     global $_CALEM_conf;
     $this->wogenConf = $_CALEM_conf['wo_conf']['wo_generation'];
     $this->releaseConf = $_CALEM_conf['wo_conf']['wo_generation']['release_conf'];
     $this->pmToWoConf = $_CALEM_conf['pm_conf']['lookupWoNewFromPm'];
     $this->woDbo = CalemFactory::getDbo('workorder');
 }
Example #10
0
 public function __construct()
 {
     parent::__construct();
     //Get configuration
     global $_CALEM_conf;
     $this->conf = $_CALEM_conf['po_conf'];
     $this->uomBo = new CalemUomBo();
     $this->reqBo = new CalemReqBo();
 }
 public function __construct()
 {
     parent::__construct();
     global $_CALEM_conf;
     $this->conf = $_CALEM_conf['wo_conf']['wo_generation'];
     $this->releaseBo = CalemFactory::createInstance($this->conf['releaseBo']);
     $this->pmDbo = CalemFactory::getDbo('pm');
     $this->pmAssetDbo = CalemFactory::getDbo('pm_asset');
 }
Example #12
0
 public function __construct()
 {
     parent::__construct();
     $this->verBo = new CalemVersionBo();
 }
Example #13
0
 public function __construct()
 {
     parent::__construct();
     global $_CALEM_conf;
     $this->conf = $_CALEM_conf['asset_conf'];
 }
Example #14
0
 public function __construct()
 {
     parent::__construct();
     $this->init();
 }
Example #15
0
 public function __construct($dbSchedInfo)
 {
     parent::__construct();
     $this->scheduleInfo = CalemScheduleInfo::decode($dbSchedInfo);
 }
Example #16
0
 public function __construct()
 {
     parent::__construct();
     $this->inBo = new CalemInBo();
 }