コード例 #1
0
ファイル: location_edit.php プロジェクト: brustj/tracmor
 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);
         }
     }
 }
コード例 #2
0
 /**
  * Load a single InventoryLocation object,
  * by InventoryLocationId Index(es)
  * @param integer $intInventoryLocationId
  * @return InventoryLocation
  */
 public static function LoadByInventoryLocationId($intInventoryLocationId, $objOptionalClauses = null)
 {
     return InventoryLocation::QuerySingle(QQ::Equal(QQN::InventoryLocation()->InventoryLocationId, $intInventoryLocationId), $objOptionalClauses);
 }
コード例 #3
0
 /**
  * Load a single InventoryLocation object,
  * by InventoryLocationId Index(es)
  * @param integer $intInventoryLocationId
  * @return InventoryLocation
  */
 public static function LoadByInventoryLocationId($intInventoryLocationId)
 {
     return InventoryLocation::QuerySingle(QQ::Equal(QQN::InventoryLocation()->InventoryLocationId, $intInventoryLocationId));
 }