• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP DataObjectCollection类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中DataObjectCollection的典型用法代码示例。如果您正苦于以下问题:PHP DataObjectCollection类的具体用法?PHP DataObjectCollection怎么用?PHP DataObjectCollection使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了DataObjectCollection类的16个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: populate

 function populate()
 {
     $po_obj = new DataObject('po_no_auth_user');
     $po_obj->idField = 'id';
     $po_obj->identifierField = 'order_number';
     $po_col = new DataObjectCollection($po_obj);
     $po_col->setParams();
     $sh = new SearchHandler($po_col, false);
     $sh->setFields(array('id', 'order_number', 'supplier', 'status'));
     $sh->addConstraint(new Constraint('status', '!=', 'X'));
     $this->setSearchLimit($sh);
     $sh->setOrderby(array('order_date', 'due_date', 'order_number'));
     $po_col->load($sh);
     $this->contents = $po_col;
 }
开发者ID:uzerpllp,项目名称:uzerp,代码行数:15,代码来源:POrdersNoAuthUserEGlet.php


示例2: _new

 public function _new()
 {
     parent::_new();
     $this->setTemplateName('calls_new');
     $projects = $opportunities = $activities = null;
     if (isset($this->_data['person_id'])) {
         $person = new Person();
         $person->load($this->_data['person_id']);
         $this->_data['company_id'] = $person->company_id;
         $projects = $person->projects;
         $opportunities = $person->opportunities;
         $activities = $person->activities;
         $this->view->set('person', $person->fullname);
     }
     if (isset($this->_data['company_id'])) {
         $company = new Company();
         $company->load($this->_data['company_id']);
         $projects = DataObjectCollection::Merge($company->projects, $projects);
         $opportunities = DataObjectCollection::Merge($company->opportunities, $opportunities);
         $activities = DataObjectCollection::Merge($company->activities, $activities);
         $this->view->set('company', $company->name);
     }
     if (isset($this->_data['project_id'])) {
         $project = new Project();
         $project->load($this->_data['project_id']);
         $this->_data['company_id'] = $project->company_id;
     }
     $this->view->set('projects', $projects);
     $this->view->set('opportunities', $opportunities);
     $this->view->set('activities', $activities);
 }
开发者ID:uzerpllp,项目名称:uzerp,代码行数:31,代码来源:LoggedcallsController.php


示例3: save

 public function save()
 {
     $flash = Flash::Instance();
     if (strtolower($this->_data['saveform']) == 'cancel') {
         $flash->addMessage('Action cancelled');
         sendTo($this->name, 'index', $this->_modules);
     }
     $errors = array();
     $db = DB::Instance();
     $db->StartTrans();
     $header_data = $this->_data['WHTransfer'];
     $lines_data = array();
     if (isset($this->_data['WHTransferLine'])) {
         $lines_data = $this->_data['WHTransferLine'];
         $lines_data = DataObjectCollection::joinArray($lines_data);
     } else {
         $errors[] = 'No Transfer Lines entered';
     }
     if (isset($header_data['id']) && $header_data['id'] != '') {
         $action = 'updated';
         // delete any lines not submitted
         $update = array();
         foreach ($lines_data as $line) {
             $update[$line['id']] = $line['id'];
         }
         $whtransfer = new WHTransfer();
         $whtransfer->load($header_data['id']);
         if ($whtransfer) {
             foreach ($whtransfer->transfer_lines as $line) {
                 if (!isset($update[$line->id])) {
                     $whtransferline = new WHTransferline();
                     $whtransferline->delete($line->id);
                 }
             }
         }
     } else {
         $action = 'added';
     }
     $whtransfer = WHTransfer::Factory($header_data, $lines_data, $errors);
     if ($whtransfer && count($errors) == 0) {
         $whtransfer->save($errors);
     }
     if (count($errors) == 0 && $db->CompleteTrans()) {
         $flash->addMessage('Transfer Number ' . $whtransfer->transfer_number . ' ' . $action . ' successfully');
         sendTo($this->name, 'index', $this->_modules);
     } else {
         $db->FailTrans();
         $flash->addErrors($errors);
         $this->_new();
         $this->_templateName = $this->getTemplateName('new');
     }
 }
开发者ID:uzerpllp,项目名称:uzerp,代码行数:52,代码来源:WhtransfersController.php


示例4: __construct

 public function __construct(DataObjectCollection $collection, $use_session = TRUE, $use_system_company = TRUE, $search_id = '')
 {
     $tablename = $collection->getViewName();
     $this->tablename = $tablename;
     $this->use_session = $use_session;
     $this->search_id = $search_id;
     $this->constraints = new ConstraintChain();
     $this->use_system_company = $use_system_company;
     $this->setOrderby($collection->orderby, $collection->direction);
     if (strpos($tablename, ' ')) {
         $this->tablename = substr($tablename, strrpos($tablename, ' ') + 1);
     }
     $cache_id = array('searches', EGS_USERNAME, $this->tablename . '_' . $this->search_id);
     $cache = Cache::Instance();
     $cached_search = $cache->get($cache_id, 1800);
     if ($this->use_session && $cached_search !== FALSE) {
         foreach ($cached_search as $key => $val) {
             if ($key == 'constraints' || $key == 'fields') {
                 $this->{$key} = unserialize($val);
             } else {
                 $this->{$key} = $val;
             }
         }
         debug('SearchHandler::__construct ' . $tablename . ' ' . print_r($this, TRUE));
         //			echo 'SearchHandler::__construct<pre>'.print_r($this, true).'</pre>';
     } elseif ($this->use_system_company) {
         //if usercompanyid is a field, then it's always a constraint
         // TODO: Need to revisit this;
         //       gets added in DataObject(?)/DataObjectCollection(?)
         //       if the search is access controlled
         $model = $collection->getModel();
         if ($model->isField('usercompanyid')) {
             $this->constraints = new ConstraintChain();
             $this->addConstraint(new Constraint('usercompanyid', '=', EGS_COMPANY_ID));
         }
     }
     $this->collection = $collection;
 }
开发者ID:uzerpllp,项目名称:uzerp,代码行数:38,代码来源:SearchHandler.php


示例5: save

 public function save()
 {
     if (!$this->CheckParams($this->modeltype)) {
         sendBack();
     }
     if (!empty($this->_data['MFDowntimeCode']['id'])) {
         $mfdowntimecode = $this->_uses[$this->modeltype];
         $mfdowntimecode->load($this->_data['MFDowntimeCode']['id']);
         if ($mfdowntimecode->isLoaded()) {
             foreach ($mfdowntimecode->mf_centres as $mfcentredowntimecode) {
                 $mfcentredowntimecode->delete();
             }
         }
     }
     if (isset($this->_data['MFCentreDowntimeCode'])) {
         $mfcentredowntimecode = DataObjectCollection::joinarray($this->_data['MFCentreDowntimeCode']);
         unset($this->_data['MFCentreDowntimeCode']);
         foreach ($mfcentredowntimecode as $key => $data) {
             $this->_data[$key]['MFCentreDowntimeCode'] = $data;
         }
     }
     parent::save();
 }
开发者ID:uzerpllp,项目名称:uzerp,代码行数:23,代码来源:MfdowntimecodesController.php


示例6: array

 function __construct($do = 'GLPeriod', $tablename = 'gl_periods')
 {
     parent::__construct($do, $tablename);
     $this->orderby = array('year', 'period');
     $this->direction = array('DESC', 'DESC');
     $this->_identifierField = 'year || \' - period \' || period';
 }
开发者ID:uzerpllp,项目名称:uzerp,代码行数:7,代码来源:GLPeriodCollection.php


示例7: array

 function __construct($do = 'ProjectEquipment', $tablename = 'project_equipment_allocation_overview')
 {
     // Contruct the object
     parent::__construct($do, $tablename);
     // Set specific characteristics
     $this->identifierField = 'name';
     $this->orderby = array('start_date', 'equipment');
 }
开发者ID:uzerpllp,项目名称:uzerp,代码行数:8,代码来源:ProjectEquipmentAllocationCollection.php


示例8:

 function __construct($do = 'GLParams', $tablename = 'gl_params')
 {
     parent::__construct($do, $tablename);
     $this->_identifierField = "paramvalue";
 }
开发者ID:uzerpllp,项目名称:uzerp,代码行数:5,代码来源:GLParamsCollection.php


示例9:

 function __construct($do = 'PLPayment', $tablename = 'pl_payments_overview')
 {
     parent::__construct($do, $tablename);
 }
开发者ID:uzerpllp,项目名称:uzerp,代码行数:4,代码来源:PLPaymentCollection.php


示例10:

 function __construct($do = 'ComplaintType')
 {
     parent::__construct($do);
 }
开发者ID:uzerpllp,项目名称:uzerp,代码行数:4,代码来源:ComplaintTypeCollection.php


示例11:

 function __construct($do = 'Permission', $tablename = 'permissions')
 {
     parent::__construct($do, $tablename);
     $this->orderby = 'position';
 }
开发者ID:uzerpllp,项目名称:uzerp,代码行数:5,代码来源:PermissionCollection.php


示例12: array

 function __construct($do = 'GLTransaction', $tablename = 'gltransactionsoverview')
 {
     parent::__construct($do, $tablename);
     $this->orderby = array('glperiod', 'account', 'cost_centre');
 }
开发者ID:uzerpllp,项目名称:uzerp,代码行数:5,代码来源:GLTransactionCollection.php


示例13: array

 function __construct($do = 'SInvoiceLine', $tablename = 'customer_service')
 {
     parent::__construct($do, $tablename);
     $this->orderby = array('product_group', 'customer', 'stitem', 'due_despatch_date');
     $this->direction = array('ASC', 'ASC', 'ASC', 'DESC');
 }
开发者ID:uzerpllp,项目名称:uzerp,代码行数:6,代码来源:CustomerServiceCollection.php


示例14:

 function __construct($do = 'SOrder', $tablename = 'so_headeroverview')
 {
     parent::__construct($do, $tablename);
     $this->view = '';
 }
开发者ID:uzerpllp,项目名称:uzerp,代码行数:5,代码来源:SOrderCollection.php


示例15:

 function __construct($do = 'DatasetField')
 {
     parent::__construct($do);
     $this->orderby = 'position';
 }
开发者ID:uzerpllp,项目名称:uzerp,代码行数:5,代码来源:DatasetFieldCollection.php


示例16:

 function __construct($do = 'ReportPart')
 {
     parent::__construct($do);
     $this->title = 'Report Parts';
 }
开发者ID:uzerpllp,项目名称:uzerp,代码行数:5,代码来源:ReportPartCollection.php



注:本文中的DataObjectCollection类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP DataObjectFactory类代码示例发布时间:2022-05-23
下一篇:
PHP DataObject类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap