当前位置: 首页>>代码示例>>PHP>>正文


PHP Location::QuerySingle方法代码示例

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


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

示例1: LoadByShortDescription

 /**
  * Load a single Location object,
  * by ShortDescription Index(es)
  * @param string $strShortDescription
  * @return Location
  */
 public static function LoadByShortDescription($strShortDescription, $objOptionalClauses = null)
 {
     return Location::QuerySingle(QQ::Equal(QQN::Location()->ShortDescription, $strShortDescription), $objOptionalClauses);
 }
开发者ID:proxymoron,项目名称:tracmor,代码行数:10,代码来源:LocationGen.class.php

示例2: btnSave_Click

 protected function btnSave_Click($strFormId, $strControlId, $strParameter)
 {
     $blnError = false;
     // Do not allow duplicate Location names
     if ($this->blnEditMode) {
         $objLocationDuplicate = Location::QuerySingle(QQ::AndCondition(QQ::Equal(QQN::Location()->ShortDescription, $this->txtShortDescription->Text), QQ::NotEqual(QQN::Location()->LocationId, $this->objLocation->LocationId)));
     } else {
         $objLocationDuplicate = Location::QuerySingle(QQ::Equal(QQN::Location()->ShortDescription, $this->txtShortDescription->Text));
     }
     if ($objLocationDuplicate) {
         $blnError = true;
         $this->txtShortDescription->Warning = 'This Location Name is already in use. Please try another.';
         $this->txtShortDescription->Focus();
     }
     // Check if there is any inventory at this location
     $objInventoryLocation = InventoryLocation::QuerySingle(QQ::Equal(QQN::InventoryLocation()->LocationId, $this->objLocation->LocationId), QQ::Clause(QQ::Sum(QQN::InventoryLocation()->Quantity, 'QuantityTotal')));
     $intInventoryAtLocation = $objInventoryLocation->GetVirtualAttribute('QuantityTotal');
     // Don't allow disabling of locations with assets or inventory quantities
     if ($this->blnEditMode && $this->objLocation->EnabledFlag && !$this->chkEnabled->Checked && (Asset::CountByLocationId($this->objLocation->LocationId) > 0 || $intInventoryAtLocation > 0)) {
         $blnError = true;
         $this->chkEnabled->Warning = 'Location must be empty before disabling.';
         $this->chkEnabled->Focus();
     }
     if (!$blnError) {
         try {
             $this->UpdateLocationFields();
             $this->objLocation->Save();
             $this->RedirectToListPage();
         } catch (QExtendedOptimisticLockingException $objExc) {
             $this->btnCancel->Warning = sprintf('This location has been updated by another user. You must <a href="location_edit.php?intLocationId=%s">Refresh</a> to edit this location.', $this->objLocation->LocationId);
         }
     }
 }
开发者ID:brustj,项目名称:tracmor,代码行数:33,代码来源:location_edit.php

示例3: btnQuickAdd_Click

 protected function btnQuickAdd_Click($strFormId, $strControlId, $strParameter)
 {
     $blnError = false;
     $this->btnQuickAdd->Warning = '';
     if (strlen(trim($this->txtQuickAdd->Text)) == 0) {
         $blnError = true;
         $this->btnQuickAdd->Warning = 'You must enter a Location name';
     }
     // Check for dupes
     $objLocationDuplicate = Location::QuerySingle(QQ::Equal(QQN::Location()->ShortDescription, $this->txtQuickAdd->Text));
     if ($objLocationDuplicate) {
         $blnError = true;
         $this->btnQuickAdd->Warning = 'This Location Name is already in use. Please try another.';
     }
     if (!$blnError) {
         $objLocation = new Location();
         $objLocation->ShortDescription = $this->txtQuickAdd->Text;
         $objLocation->EnabledFlag = '1';
         $objLocation->AssetFlag = '1';
         $objLocation->InventoryFlag = '1';
         $objLocation->CreatedBy = QApplication::$objUserAccount->UserAccountId;
         $objLocation->CreationDate = QDateTime::Now();
         $objLocation->Save();
         $this->dtgLocation->Refresh();
         $this->txtQuickAdd->Text = '';
     }
     $this->txtQuickAdd->Focus();
     $this->txtQuickAdd->Select();
 }
开发者ID:proxymoron,项目名称:tracmor,代码行数:29,代码来源:location_list.php

示例4: LoadByShortDescription

 /**
  * Load a single Location object,
  * by ShortDescription Index(es)
  * @param string $strShortDescription
  * @return Location
  */
 public static function LoadByShortDescription($strShortDescription)
 {
     return Location::QuerySingle(QQ::Equal(QQN::Location()->ShortDescription, $strShortDescription));
 }
开发者ID:heshuai64,项目名称:einv2,代码行数:10,代码来源:LocationGen.class.php


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