public function btnSave_Click($strFormId, $strControlId, $strParameter) { $this->UpdateAssetModelFields(); $this->objAssetModel->Save(); // Adding AssetCustomFieldsAssetModels with allAssetModel flag checked $arrAllAssetModelsFlaggedObjects = EntityQtypeCustomField::LoadArrayByEntityQtypeId(QApplication::Translate(EntityQtype::Asset)); foreach ($arrAllAssetModelsFlaggedObjects as $arrAllAssetModelsFlaggedObject) { if ($arrAllAssetModelsFlaggedObject->CustomField->AllAssetModelsFlag) { $newAssetCustomField = new AssetCustomFieldAssetModel(); $newAssetCustomField->CustomFieldId = $arrAllAssetModelsFlaggedObject->CustomField->CustomFieldId; $newAssetCustomField->AssetModelId = $this->objAssetModel->AssetModelId; $newAssetCustomField->Save(); } } $this->CloseSelf(true); }
protected function substactNotAllowedFields($intAssetModelId, $intCustomFieldId = null) { $arrAllowed = array(); foreach (AssetCustomFieldAssetModel::LoadArrayByAssetModelId($intAssetModelId) as $objAssetCustomField) { $arrAllowed[] = $objAssetCustomField->CustomFieldId; } $arrToClear = array(); foreach (EntityQtypeCustomField::LoadArrayByEntityQtypeId(1) as $objAssetCustomField) { if (!in_array($objAssetCustomField->CustomFieldId, $arrAllowed) && $objAssetCustomField->CustomField->AllAssetModelsFlag != 1) { $arrToClear[] = $objAssetCustomField->CustomFieldId; } } if ($intCustomFieldId) { if ($arrToClear && count($arrToClear) > 0) { foreach ($arrToClear as $idToBeNull) { $arrForQuery[] = sprintf("`cfv_%s`= NULL", $idToBeNull); } return sprintf("UPDATE `asset_custom_field_helper` SET %s WHERE `asset_id`='%s'", str_replace('""', '"', implode(", ", $arrForQuery)), $intCustomFieldId); } } else { return $arrToClear; } }
$strTableName = "shipment"; $strObjectId = "ShipmentId"; $strId = 'shipment`.`shipment_id'; $strHelperTable = '`shipment_custom_field_helper`'; break; case 11: $strTableName = "receipt"; $strObjectId = "ReceiptId"; $strId = 'receipt`.`receipt_id'; $strHelperTable = '`receipt_custom_field_helper`'; break; default: throw new Exception('Not a valid EntityQtypeId.'); } $blnNoAlterTable = false; $objEntityQtypeCustomFieldArray = EntityQtypeCustomField::LoadArrayByEntityQtypeId($intEntityQtypeId, QQ::Clause(QQ::Expand(QQN::EntityQtypeCustomField()->CustomField))); if ($objEntityQtypeCustomFieldArray) { foreach ($objEntityQtypeCustomFieldArray as $objEntityQtypeCustomField) { echo 'ALTER TABLE ' . $strHelperTable . ' ADD cfv_' . $objEntityQtypeCustomField->CustomFieldId . " TEXT DEFAULT NULL;<br />"; } } else { $blnNoAlterTable = true; } $arrCustomFieldSql = array(); $arrCustomFieldSql['strSelect'] = ''; $arrCustomFieldSql['strFrom'] = ''; $arrCustomFieldSql['strInsertColumnHeader'] = ''; $arrCustomFieldSql['strInsertValues'] = ''; if ($objEntityQtypeCustomFieldArray) { foreach ($objEntityQtypeCustomFieldArray as $objEntityQtypeCustomField) { $strAlias = $objEntityQtypeCustomField->CustomFieldId;
public function btnSave_Click($strFormId, $strControlId, $strParameter) { try { // Get an instance of the database $objDatabase = QApplication::$Database[1]; // Begin a MySQL Transaction to be either committed or rolled back $objDatabase->TransactionBegin(); // Generate a new AssetCode based on the MinAssetCode value // This happens whether or not they are creating a new one or editing an existing one if ($this->chkAutoGenerateAssetCode->Checked) { $this->txtAssetCode->Text = Asset::GenerateAssetCode(); } $this->objAsset->AssetCode = $this->txtAssetCode->Text; $this->objAsset->AssetModelId = $this->lstAssetModel->SelectedValue; $blnError = false; // If a new asset is being created if (!$this->blnEditMode) { // Do not allow creation of an asset if asset limit will be exceeded $intAssetLimit = is_numeric(QApplication::$TracmorSettings->AssetLimit) ? QApplication::$TracmorSettings->AssetLimit : false; if (!$this->blnEditMode) { if ($intAssetLimit && Asset::CountActive() >= $intAssetLimit) { $blnError = true; $this->txtAssetCode->Warning = "Your asset limit has been reached."; } } // Check Depreciation fields if (QApplication::$TracmorSettings->DepreciationFlag == '1') { if ($this->chkAssetDepreciation->Checked) { if (!preg_match("/\\b\\d{1,3}(?:,?\\d{3})*(?:\\.\\d{2})?\\b/", $this->txtPurchaseCost->Text) || $this->txtPurchaseCost->Text <= 0) { $blnError = true; $this->txtPurchaseCost->Warning = "Purchase Cost value isn't valid"; } elseif (AssetModel::Load($this->lstAssetModel->SelectedValue)->DepreciationClassId != null) { //print $this->calPurchaseDate->DateTime ."||". $this->txtPurchaseCost->Text."|";exit; $this->objAsset->DepreciationFlag = true; $this->objAsset->PurchaseDate = $this->calPurchaseDate->DateTime; $this->objAsset->PurchaseCost = str_replace(',', '', $this->txtPurchaseCost->Text); } else { $blnError = true; $this->chkAssetDepreciation->Warning = "Chosen Model isn't assigned to any Depreciation Class"; } } } // Check to see if the asset tag already exists $AssetDuplicate = Asset::LoadByAssetCode($this->txtAssetCode->Text); if ($AssetDuplicate) { $blnError = true; $this->txtAssetCode->Warning = "That asset tag is already in use. Please try another."; } if (!$blnError && $this->txtParentAssetCode->Text) { if ($this->txtParentAssetCode->Text != $this->objAsset->AssetCode) { $objParentAsset = Asset::LoadByAssetCode($this->txtParentAssetCode->Text); if (!$objParentAsset) { $blnError = true; $this->txtParentAssetCode->Warning = "That asset tag does not exist. Please try another."; } else { if ($this->chkLockToParent->Checked && $objParentAsset->LocationId != $this->lstLocation->SelectedValue) { // If locking child to parent, make sure assets are at the same location $blnError = true; $this->chkLockToParent->Warning = 'Cannot lock to parent asset at another location.'; } else { if ($this->chkLockToParent->Checked && ($objParentAsset->CheckedOutFlag || $objParentAsset->ReservedFlag || $objParentAsset->ArchivedFlag || $objParentAsset->LocationId == 2 || $objParentAsset->LocationId == 5 || AssetTransaction::PendingTransaction($objParentAsset->AssetId))) { $blnError = true; $this->chkLockToParent->Warning = "Parent asset tag (" . $objParentAsset->AssetCode . ") must not be currently Archived, Checked Out, Pending Shipment, Shipped/TBR, or Reserved."; } else { $this->objAsset->ParentAssetId = $objParentAsset->AssetId; if ($this->chkLockToParent->Checked) { $this->objAsset->LinkedFlag = 1; } } } } } else { $blnError = true; $this->txtParentAssetCode->Warning = "Parent asset tag must not be the same as asset tag. Please try another."; } } else { // If txtParentAssetCode is empty $this->objAsset->LinkedFlag = false; $this->objAsset->ParentAssetId = null; } if (!$blnError) { // Location can only be decided when creating an asset. Otherwise they must conduct a transaction. if (!$this->blnEditMode) { $this->objAsset->LocationId = $this->lstLocation->SelectedValue; } // Save child assets $this->SaveChildAssets(); // Object should be saved only if it is new, to obtain the proper AssetId to add to the custom field tables $this->objAsset->Save(); $this->objParentObject->RefreshChildAssets(); } } // Assign input values to custom fields if (is_array($this->arrCustomFields) && count($this->arrCustomFields) > 0 && !$blnError) { // Save the values from all of the custom field controls to save the asset CustomField::SaveControls($this->objAsset->objCustomFieldArray, $this->blnEditMode, $this->arrCustomFields, $this->objAsset->AssetId, 1); } if ($this->blnEditMode) { // Check to see if the asset tag already exists (and is not the asset tag of the asset that the user is currently editing $AssetDuplicate = Asset::LoadByAssetCode($this->txtAssetCode->Text); if ($AssetDuplicate && $AssetDuplicate->AssetId != $this->objAsset->AssetId) { $blnError = true; $this->txtAssetCode->Warning = "That asset tag is already in use. Please try another."; } if (!$blnError && $this->txtParentAssetCode->Text) { // Check if the parent asset tag is already a child asset of this asset $arrChildAsset = Asset::LoadArrayByParentAssetId($this->objAsset->AssetId); foreach ($arrChildAsset as $objChildAsset) { if ($objChildAsset->AssetCode == $this->txtParentAssetCode->Text) { $blnError = true; $this->txtParentAssetCode->Warning = "Parent asset tag is already a child of this asset. Please try another."; break; } } if (!$blnError) { if ($this->txtParentAssetCode->Text != $this->objAsset->AssetCode) { $objParentAsset = Asset::LoadByAssetCode($this->txtParentAssetCode->Text); if (!$objParentAsset) { $blnError = true; $this->txtParentAssetCode->Warning = "That asset tag does not exist. Please try another."; } else { if ($this->chkLockToParent->Checked && !($this->objAsset->ParentAssetId == $objParentAsset->AssetId && $this->objAsset->LinkedFlag == 1) && $objParentAsset->LocationId != $this->objAsset->LocationId) { // If locking child to parent, make sure assets are at the same location $blnError = true; $this->chkLockToParent->Warning = 'Cannot lock to parent asset at another location.'; } else { if ($this->chkLockToParent->Checked && !($this->objAsset->ParentAssetId == $objParentAsset->AssetId && $this->objAsset->LinkedFlag == 1) && ($objParentAsset->CheckedOutFlag || $objParentAsset->ReservedFlag || $objParentAsset->ArchivedFlag || $objParentAsset->LocationId == 2 || $objParentAsset->LocationId == 5 || AssetTransaction::PendingTransaction($objParentAsset->AssetId))) { $blnError = true; $this->chkLockToParent->Warning = "Parent asset tag (" . $objParentAsset->AssetCode . ") must not be currently Archived, Checked Out, Pending Shipment, Shipped/TBR, or Reserved."; } else { if ($this->chkLockToParent->Checked && !($this->objAsset->ParentAssetId == $objParentAsset->AssetId && $this->objAsset->LinkedFlag == 1) && ($this->objAsset->CheckedOutFlag || $this->objAsset->ReservedFlag || $this->objAsset->ArchivedFlag || $this->objAsset->LocationId == 2 || $this->objAsset->LocationId == 5 || AssetTransaction::PendingTransaction($this->objAsset->AssetId))) { $blnError = true; $this->chkLockToParent->Warning .= "Child asset must not be currently Archived, Checked Out, Pending Shipment, Shipped/TBR, or Reserved."; } else { $this->objAsset->ParentAssetId = $objParentAsset->AssetId; if ($this->chkLockToParent->Checked) { $this->objAsset->LinkedFlag = 1; } else { $this->objAsset->LinkedFlag = 0; } } } } } } else { $blnError = true; $this->txtParentAssetCode->Warning = "Parent asset tag must not be the same as asset tag. Please try another."; } } } else { // If txtParentAssetCode is empty $this->objAsset->LinkedFlag = false; $this->objAsset->ParentAssetId = null; $this->chkLockToParent->Checked = false; } // Check Depreciation fields if (QApplication::$TracmorSettings->DepreciationFlag == '1') { if ($this->chkAssetDepreciation->Checked) { if (!preg_match("/\\b\\d{1,3}(?:,?\\d{3})*(?:\\.\\d{2})?\\b/", $this->txtPurchaseCost->Text) || $this->txtPurchaseCost->Text <= 0) { $blnError = true; $this->txtPurchaseCost->Warning = "Purchase Cost isn't valid"; } elseif (AssetModel::Load($this->lstAssetModel->SelectedValue)->DepreciationClassId != null) { //print $this->calPurchaseDate->DateTime ."||". $this->txtPurchaseCost->Text."|";exit; $this->objAsset->DepreciationFlag = true; $this->objAsset->PurchaseDate = $this->calPurchaseDate->DateTime; $this->objAsset->PurchaseCost = str_replace(',', '', $this->txtPurchaseCost->Text); } else { $blnError = true; $this->chkAssetDepreciation->Warning = "Chosen Model isn't assigned to any Depreciation Class"; } } else { $this->objAsset->DepreciationFlag = false; $this->objAsset->PurchaseDate = null; $this->objAsset->PurchaseCost = null; } } if (!$blnError) { // Update the values of all fields for an Ajax reload $this->UpdateAssetFields(); // Save child assets $this->SaveChildAssets(); // If asset is not new, it must be saved after updating the assetfields $this->objAsset->Save(); // This is called to retrieve the new Modified Date and User $this->objParentObject->SetupAsset($this); // Give the labels their appropriate values before display $this->UpdateAssetLabels(); // This was necessary because it was not saving the changes of a second edit/save in a row // Reload all custom fields $this->objAsset->objCustomFieldArray = CustomField::LoadObjCustomFieldArray(1, $this->blnEditMode, $this->objAsset->AssetId, false, $this->objAsset->AssetModelId); // Update not allowed custom fields set to null $arrAllowed = array(); foreach (AssetCustomFieldAssetModel::LoadArrayByAssetModelId($this->objAsset->AssetModelId) as $objAssetCustomField) { $arrAllowed[] = $objAssetCustomField->CustomFieldId; } $arrToClear = array(); foreach (EntityQtypeCustomField::LoadArrayByEntityQtypeId(1) as $objAssetCustomField) { if (!in_array($objAssetCustomField->CustomFieldId, $arrAllowed) && $objAssetCustomField->CustomField->AllAssetModelsFlag != 1) { $arrToClear[] = $objAssetCustomField->CustomFieldId; } } if ($this->objAsset->AssetId && count($arrToClear)) { $arrForQuery = array(); foreach ($arrToClear as $idToBeNull) { $arrForQuery[] = sprintf("`cfv_%s`= NULL", $idToBeNull); } $objDatabase = Asset::GetDatabase(); $strQuery = sprintf("UPDATE `asset_custom_field_helper` SET %s WHERE `asset_id`='%s'", implode(", ", $arrForQuery), $this->objAsset->AssetId); // print($strQuery); exit; $objDatabase->NonQuery($strQuery); } // Commit the above transactions to the database $objDatabase->TransactionCommit(); // Hide inputs and display labels $this->displayLabels(); // Enable the appropriate transaction buttons $this->EnableTransactionButtons(); $this->objParentObject->RefreshChildAssets(); } } elseif (!$blnError) { // Commit the above transactions to the database $objDatabase->TransactionCommit(); // Reload the edit asset page with the newly created asset $strRedirect = sprintf('asset_edit.php?intAssetId=%s', $this->objAsset->AssetId); QApplication::Redirect($strRedirect); } } catch (QOptimisticLockingException $objExc) { // Rollback the database $objDatabase->TransactionRollback(); // Output the error $this->btnCancel->Warning = sprintf('This asset has been updated by another user. You must <a href="asset_edit.php?intAssetId=%s">Refresh</a> to edit this Asset.', $this->objAsset->AssetId); } }
protected function btnNext_Click() { $blnError = false; if ($this->intStep == 1) { if ($this->chkHeaderRow->Checked) { $this->blnHeaderRow = true; } else { $this->blnHeaderRow = false; } // Check errors if ($this->lstFieldSeparator->SelectedValue == 'other' && !$this->txtFieldSeparator->Text) { $this->flcFileCsv->Warning = "Please enter the field separator."; $blnError = true; } elseif ($this->lstTextDelimiter->SelectedValue == 'other' && !$this->txtTextDelimiter->Text) { $this->flcFileCsv->Warning = "Please enter the text delimiter."; $blnError = true; } else { // Step 1 complete // File Not Uploaded if (!file_exists($this->flcFileCsv->File) || !$this->flcFileCsv->Size) { //throw new QCallerException('FileAssetType must be a valid QFileAssetType constant value'); $this->flcFileCsv->Warning = 'The file could not be uploaded. Please provide a valid file.'; $blnError = true; // File Has Incorrect MIME Type (only if an acceptiblemimearray is setup) } elseif (is_array($this->strAcceptibleMimeArray) && !array_key_exists($this->flcFileCsv->Type, $this->strAcceptibleMimeArray)) { $this->flcFileCsv->Warning = "Extension must be 'csv' or 'txt'"; $blnError = true; // File Successfully Uploaded } else { $this->flcFileCsv->Warning = ""; // Setup Filename, Base Filename and Extension $strFilename = $this->flcFileCsv->FileName; $intPosition = strrpos($strFilename, '.'); } if (!$blnError) { $this->FileCsvData = new File_CSV_DataSource(); // Setup the settings which have got on step 1 $this->FileCsvData->settings($this->GetCsvSettings()); $file = fopen($this->flcFileCsv->File, "r"); // Counter of files $i = 1; // Counter of rows $j = 1; $this->strFilePathArray = array(); // The uploaded file splits up in order to avoid out of memory while ($row = fgets($file, 1000)) { if ($j == 1) { $strFilePath = sprintf('%s/%s_mod_%s.csv', __TRACMOR_TMP__, $_SESSION['intUserAccountId'], $i); $this->strFilePathArray[] = $strFilePath; $file_part = fopen($strFilePath, "w+"); if ($i == 1) { $strHeaderRow = $row; } else { fwrite($file_part, $strHeaderRow); } } fwrite($file_part, $row); $j++; if ($j > 200) { $j = 1; $i++; fclose($file_part); } } $this->intTotalCount = ($i - 1) * 200 + $j - 1; if (false) { $blnError = true; $this->btnNext->Warning = $i . " " . $j . "Sorry that is too many assets. Your asset limit is = " . QApplication::$TracmorSettings->AssetLimit . ", this import has " . $this->intTotalCount . " assets, and you already have " . Asset::CountAll() . " assets in the database."; } else { $this->arrMapFields = array(); $this->arrTracmorField = array(); // Load first file $this->FileCsvData->load($this->strFilePathArray[0]); $file_skipped = fopen($this->strFilePath = sprintf('%s/%s_skipped.csv', __TRACMOR_TMP__, $_SESSION['intUserAccountId']), "w+"); // Get Headers if ($this->blnHeaderRow) { $this->arrCsvHeader = $this->FileCsvData->getHeaders(); // Create the header row in the skipped error file $this->PutSkippedRecordInFile($file_skipped, $this->arrCsvHeader); } /*else { // If it is not first file $this->FileCsvData->appendRow($this->FileCsvData->getHeaders()); }*/ $strFirstRowArray = $this->FileCsvData->getRow(0); for ($i = 0; $i < count($strFirstRowArray); $i++) { $this->arrMapFields[$i] = array(); if ($this->blnHeaderRow && array_key_exists($i, $this->arrCsvHeader)) { if ($this->arrCsvHeader[$i] == '') { $this->arrCsvHeader[$i] = ' '; } $this->lstMapHeader_Create($this, $i, $this->arrCsvHeader[$i]); $this->arrMapFields[$i]['header'] = $this->arrCsvHeader[$i]; } else { $this->lstMapHeader_Create($this, $i); } // Create Default Value TextBox, ListBox and DateTimePicker if ($this->blnHeaderRow && array_key_exists($i, $this->arrCsvHeader) && $this->arrCsvHeader[$i] || !$this->blnHeaderRow) { $txtDefaultValue = new QTextBox($this); $txtDefaultValue->Width = 200; $this->txtMapDefaultValueArray[] = $txtDefaultValue; $lstDefaultValue = new QListBox($this); $lstDefaultValue->Width = 200; $lstDefaultValue->Display = false; $this->lstMapDefaultValueArray[] = $lstDefaultValue; $dtpDate = new QDateTimePicker($this); $dtpDate->DateTimePickerType = QDateTimePickerType::Date; $dtpDate->DateTimePickerFormat = QDateTimePickerFormat::MonthDayYear; $dtpDate->Display = false; $this->dtpDateArray[] = $dtpDate; if (array_key_exists($i, $this->lstMapHeaderArray)) { $this->lstTramorField_Change(null, $this->lstMapHeaderArray[$i]->ControlId, null); } } $this->arrMapFields[$i]['row1'] = $strFirstRowArray[$i]; } $this->btnNext->Text = "Import Now"; fclose($file_skipped); // Create Add Field button $btnAddField = new QButton($this); $btnAddField->Text = "Add Field"; $btnAddField->AddAction(new QClickEvent(), new QServerAction('btnAddField_Click')); $btnAddField->AddAction(new QEnterKeyEvent(), new QServerAction('btnAddField_Click')); $btnAddField->AddAction(new QEnterKeyEvent(), new QTerminateAction()); $this->lstMapHeaderArray[] = $btnAddField; } } } } elseif ($this->intStep == 2) { // Step 2 complete $blnError = false; $blnAssetModelCode = false; $blnAssetModelShortDescription = false; $blnCategory = false; $blnManufacturer = false; $blnModelId = false; // Checking errors (Model Short Description, Model Code, Category and Manufacturer must be selected) for ($i = 0; $i < count($this->lstMapHeaderArray) - 1; $i++) { $lstMapHeader = $this->lstMapHeaderArray[$i]; $strSelectedValue = strtolower($lstMapHeader->SelectedValue); if ($strSelectedValue == "short description") { $blnAssetModelShortDescription = true; } elseif ($strSelectedValue == "model number") { $blnAssetModelCode = true; } elseif ($strSelectedValue == "category") { $blnCategory = true; } elseif ($strSelectedValue == "manufacturer") { $blnManufacturer = true; } elseif ($strSelectedValue == "id") { $blnModelId = true; } } if ($this->lstMapDefaultValueArray) { // Checking errors for required Default Value text fields foreach ($this->lstMapDefaultValueArray as $lstDefault) { if ($lstDefault->Display && $lstDefault->Required && !$lstDefault->SelectedValue) { $lstDefault->Warning = "You must select one default value."; $blnError = true; break; } else { $blnError = false; $lstDefault->Warning = ""; } } } if ($this->txtMapDefaultValueArray) { // Checking errors for required Default Value lst fields foreach ($this->txtMapDefaultValueArray as $txtDefault) { if ($txtDefault->Display && $txtDefault->Required && !$txtDefault->Text) { $txtDefault->Warning = "You must enter default value."; $blnError = true; break; } else { $blnError = false; $txtDefault->Warning = ""; } } } // If all required fields have no errors if (!$blnError && $blnAssetModelCode && $blnAssetModelShortDescription && $blnCategory && $blnManufacturer && ($this->lstImportAction->SelectedValue != 2 || $blnModelId)) { $this->btnNext->Warning = ""; // Setup keys for main required fields foreach ($this->arrTracmorField as $key => $value) { if ($value == 'category') { $this->intCategoryKey = $key; } elseif ($value == 'manufacturer') { $this->intManufacturerKey = $key; } elseif (QApplication::$TracmorSettings->DepreciationFlag == '1' && $value == 'depreciation class') { $this->intDepreciationKey = $key; } elseif ($this->lstImportAction->SelectedValue == 2 && $value == 'id') { $this->intItemIdKey = $key; } /*elseif ($value == 'created by') { $this->intCreatedByKey = $key; } elseif ($value == 'created date') { $this->intCreatedDateKey = $key; } elseif ($value == 'modified by') { $this->intModifiedByKey = $key; } elseif ($value == 'modified date') { $this->intModifiedDateKey = $key; }*/ } $this->objNewAssetModelArray = array(); $this->strModelValuesArray = array(); $this->blnImportEnd = false; $j = 1; $this->btnNext->RemoveAllActions('onclick'); // Add new ajax actions for button $this->btnNext->AddAction(new QClickEvent(), new QAjaxAction('btnNext_Click')); $this->btnNext->AddAction(new QClickEvent(), new QToggleEnableAction($this->btnNext)); $this->btnNext->AddAction(new QEnterKeyEvent(), new QAjaxAction('btnNext_Click')); $this->btnNext->AddAction(new QEnterKeyEvent(), new QToggleEnableAction($this->btnNext)); $this->btnNext->AddAction(new QEnterKeyEvent(), new QTerminateAction()); $this->btnNext->Warning = "Please wait..."; $this->intImportStep = 2; $this->intCurrentFile = 0; $this->strSelectedValueArray = array(); // New asset models $this->dtgAssetModel = new QDataGrid($this); $this->dtgAssetModel->Name = 'asset_model_list'; $this->dtgAssetModel->CellPadding = 5; $this->dtgAssetModel->CellSpacing = 0; $this->dtgAssetModel->CssClass = "datagrid"; $this->dtgAssetModel->UseAjax = true; $this->dtgAssetModel->ShowColumnToggle = false; $this->dtgAssetModel->ShowExportCsv = false; $this->dtgAssetModel->ShowHeader = false; $this->dtgAssetModel->AddColumn(new QDataGridColumnExt('Model', '<?= $_ITEM ?>', 'CssClass="dtg_column"', 'HtmlEntities="false"')); // Updated assets $this->dtgUpdatedAsset = new QDataGrid($this); $this->dtgUpdatedAsset->Name = 'updated_asset_list'; $this->dtgUpdatedAsset->CellPadding = 5; $this->dtgUpdatedAsset->CellSpacing = 0; $this->dtgUpdatedAsset->CssClass = "datagrid"; $this->dtgUpdatedAsset->UseAjax = true; $this->dtgUpdatedAsset->ShowColumnToggle = false; $this->dtgUpdatedAsset->ShowExportCsv = false; $this->dtgUpdatedAsset->ShowHeader = false; $this->dtgUpdatedAsset->AddColumn(new QDataGridColumnExt('Asset Tag', '<?= $_ITEM ?>', 'CssClass="dtg_column"', 'HtmlEntities="false"')); // Create the label for successful import $this->lblImportSuccess = new QLabel($this); $this->lblImportSuccess->HtmlEntities = false; $this->lblImportSuccess->Display = false; // Undo Last Import button $this->btnUndoLastImport = new QButton($this); $this->btnUndoLastImport->Text = "Undo Last Import"; $this->btnUndoLastImport->Display = false; $this->btnUndoLastImport->AddAction(new QClickEvent(), new QServerAction('btnCancel_Click')); $this->btnUndoLastImport->AddAction(new QEnterKeyEvent(), new QServerAction('btnCancel_Click')); $this->btnUndoLastImport->AddAction(new QEnterKeyEvent(), new QTerminateAction()); // Import More button $this->btnImportMore = new QButton($this); $this->btnImportMore->Text = "Import More"; $this->btnImportMore->Display = false; $this->btnImportMore->AddAction(new QClickEvent(), new QServerAction('btnImportMore_Click')); $this->btnImportMore->AddAction(new QEnterKeyEvent(), new QServerAction('btnImportMore_Click')); $this->btnImportMore->AddAction(new QEnterKeyEvent(), new QTerminateAction()); // Return to Assets button $this->btnReturnToAssets = new QButton($this); $this->btnReturnToAssets->Text = "Return to Models"; $this->btnReturnToAssets->Display = false; $this->btnReturnToAssets->AddAction(new QClickEvent(), new QServerAction('btnReturnToAssets_Click')); $this->btnReturnToAssets->AddAction(new QEnterKeyEvent(), new QServerAction('btnReturnToAssets_Click')); $this->btnReturnToAssets->AddAction(new QEnterKeyEvent(), new QTerminateAction()); } else { $this->btnNext->Warning = "You must select all required fields (Model Number, Model Short Description, Category and Manufacturer)."; $blnError = true; } } else { // Step 3 complete set_time_limit(0); $file_skipped = fopen($strFilePath = sprintf('%s/%s_skipped.csv', __TRACMOR_TMP__, $_SESSION['intUserAccountId']), "a"); if (!$this->blnImportEnd) { // Asset Model if ($this->intImportStep == 2) { $intCategoryArray = array(); // Load all categories with key=category_id foreach (Category::LoadAllWithFlags(true, false) as $objCategory) { $intCategoryArray[$objCategory->CategoryId] = strtolower($objCategory->ShortDescription); } $intManufacturerArray = array(); // Load all manufacturers with key=manufacturer_id foreach (Manufacturer::LoadAll() as $objManufacturer) { $intManufacturerArray[$objManufacturer->ManufacturerId] = strtolower($objManufacturer->ShortDescription); } if (QApplication::$TracmorSettings->DepreciationFlag == '1') { $intDepreciationClassArray = array(); foreach (DepreciationClass::LoadAll() as $objDepreciationClass) { $intDepreciationClassArray[$objDepreciationClass->DepreciationClassId] = strtolower($objDepreciationClass->ShortDescription); } } $intModelCustomFieldKeyArray = array(); $arrModelCustomField = array(); // Setup keys foreach ($this->arrTracmorField as $key => $value) { if ($value == 'short description') { $intModelShortDescriptionKey = $key; } elseif ($value == 'long description') { $intModelLongDescriptionKey = $key; } elseif ($value == 'model number') { $intModelCodeKey = $key; } elseif (substr($value, 0, 6) == 'model_') { $intModelCustomFieldKeyArray[substr($value, 6)] = $key; if (array_key_exists(substr($value, 6), $this->arrModelCustomField)) { $arrModelCustomField[substr($value, 6)] = $this->arrModelCustomField[substr($value, 6)]; } } } $strAssetModelArray = array(); $strItemCFVArray = array(); $strUpdatedItemCFVArray = array(); $strUpdatedValuesArray = array(); $this->arrOldItemArray = array(); $this->objUpdatedItemArray = array(); // Load all asset models foreach (AssetModel::LoadAllIntoExtendedArray() as $arrAssetModel) { $strAssetModelArray[] = strtolower(sprintf("%s_%s_%s_%s", addslashes($arrAssetModel['model_code']), addslashes($arrAssetModel['short_description']), $arrAssetModel['category_id'], $arrAssetModel['manufacturer_id'])); } $this->btnNext->Warning = sprintf("Please wait... Model import complete: %s%s", ceil(($this->intCurrentFile + 1) * 200 / $this->intTotalCount * 100), "%"); } // Asset /*elseif ($this->intImportStep == 5) { $intCategoryArray = array(); // Load all categories with keys=category_id foreach (Category::LoadAllWithFlags(true, false) as $objCategory) { //$intCategoryArray["'" . strtolower($objCategory->ShortDescription) . "'"] = $objCategory->CategoryId; $intCategoryArray[$objCategory->CategoryId] = strtolower($objCategory->ShortDescription); } $intManufacturerArray = array(); // Load all manufacturers with keys=manufacturer_id foreach (Manufacturer::LoadAll() as $objManufacturer) { //$intManufacturerArray["'" . strtolower($objManufacturer->ShortDescription) . "'"] = $objManufacturer->ManufacturerId; $intManufacturerArray[$objManufacturer->ManufacturerId] = strtolower($objManufacturer->ShortDescription); } if ($this->intCurrentFile == 0) { $this->intAssetModelArray = array(); // Load all asset models with keys=asset_model_id foreach (AssetModel::LoadAll() as $objAssetModel) { //$intAssetModelArray["'" . strtolower($objAssetModel->ShortDescription) . "'"] = $objAssetModel->AssetModelId; $this->intAssetModelArray[$objAssetModel->AssetModelId] = strtolower(sprintf("%s_%s_%s_%s", $objAssetModel->AssetModelCode, $objAssetModel->ShortDescription, $objAssetModel->CategoryId, $objAssetModel->ManufacturerId)); } } $intAssetCustomFieldKeyArray = array(); $arrAssetCustomField = array(); // Setup keys foreach ($this->arrTracmorField as $key => $value) { if ($value == 'asset model short description') { $intModelShortDescriptionKey = $key; } elseif ($value == 'asset model code') { $intModelCodeKey = $key; } elseif ($value == 'asset code') { $intAssetCode = $key; } elseif (substr($value, 0, 6) == 'asset_') { $intAssetCustomFieldKeyArray[substr($value, 6)] = $key; if (array_key_exists(substr($value, 6), $this->arrAssetCustomField)) { $arrAssetCustomField[substr($value, 6)] = $this->arrAssetCustomField[substr($value, 6)]; } } } $intLocationArray = array(); // Load all locations with keys=location_id foreach (Location::LoadAll() as $objLocation) { //$intLocationArray["'" . strtolower($objLocation->ShortDescription) . "'"] = $objLocation->LocationId; $intLocationArray[$objLocation->LocationId] = strtolower($objLocation->ShortDescription); } $strAssetArray = array(); $strUpdatedAssetArray = array(); // Load all assets foreach (Asset::LoadAll() as $objAsset) { $strAssetArray[] = strtolower($objAsset->AssetCode); } $this->btnNext->Warning = sprintf("Please wait... Asset import complete: %s%s", ceil(($this->intCurrentFile+1)*200/$this->intTotalCount*100), "%"); }*/ // Loads array of AssetModelId $arrAssetModelArray = AssetModel::LoadAllIntoArray(); $arrAssetModelId = array(); if (count($arrAssetModelArray)) { foreach ($arrAssetModelArray as $arrAssetModel) { $arrAssetModelId[$arrAssetModel['asset_model_id']] = true; } } for ($j = $this->intCurrentFile; $j < count($this->strFilePathArray); $j++) { $this->FileCsvData->load($this->strFilePathArray[$j]); if (!$j) { //$this->FileCsvData->appendRow($this->FileCsvData->getHeaders()); } if ($this->intImportStep == 2) { $objNewAssetModelArray = array(); for ($i = 0; $i < $this->FileCsvData->countRows(); $i++) { $strRowArray = $this->FileCsvData->getRow($i); if (isset($strRowArray[$intModelShortDescriptionKey])) { $strShortDescription = trim($strRowArray[$intModelShortDescriptionKey]) ? addslashes(trim($strRowArray[$intModelShortDescriptionKey])) : false; } elseif (isset($this->txtMapDefaultValueArray[$intModelShortDescriptionKey])) { $strShortDescription = $this->txtMapDefaultValueArray[$intModelShortDescriptionKey]->Text; } else { $strShortDescription = false; } //$strShortDescription = (trim($strRowArray[$intModelShortDescriptionKey])) ? trim($strRowArray[$intModelShortDescriptionKey]) : false; $strAssetModelCode = trim($strRowArray[$intModelCodeKey]) ? addslashes(trim($strRowArray[$intModelCodeKey])) : addslashes(trim($this->txtMapDefaultValueArray[$intModelCodeKey]->Text)); //$strAssetModelCode = trim($strRowArray[$intModelCodeKey]) ? trim($strRowArray[$intModelCodeKey]) : trim($this->txtMapDefaultValueArray[$intModelCodeKey]->Text); $strKeyArray = array_keys($intCategoryArray, isset($strRowArray[$this->intCategoryKey]) ? strtolower(trim($strRowArray[$this->intCategoryKey])) : array()); if (count($strKeyArray)) { $intCategoryId = $strKeyArray[0]; } else { $strKeyArray = array_keys($intCategoryArray, strtolower(trim($this->txtMapDefaultValueArray[$this->intCategoryKey]->Text))); if (count($strKeyArray)) { $intCategoryId = $strKeyArray[0]; } else { $intCategoryId = false; } } $strKeyArray = array_keys($intManufacturerArray, isset($strRowArray[$this->intManufacturerKey]) ? strtolower(trim($strRowArray[$this->intManufacturerKey])) : array()); if (count($strKeyArray)) { $intManufacturerId = $strKeyArray[0]; } else { $strKeyArray = array_keys($intManufacturerArray, strtolower(trim($this->txtMapDefaultValueArray[$this->intManufacturerKey]->Text))); if (count($strKeyArray)) { $intManufacturerId = $strKeyArray[0]; } else { $intManufacturerId = false; } } // depreciation if (QApplication::$TracmorSettings->DepreciationFlag == '1' && $this->intDepreciationKey != null) { $strKeyArray = array_keys($intDepreciationClassArray, strtolower(trim($strRowArray[$this->intDepreciationKey]))); if (count($strKeyArray)) { $intDepreciationId = $strKeyArray[0]; } else { $strKeyArray = array_keys($intDepreciationClassArray, strtolower(trim($this->txtMapDefaultValueArray[$this->intDepreciationKey]->Text))); if (count($strKeyArray)) { $intDepreciationId = $strKeyArray[0]; } else { if (trim($strRowArray[$this->intDepreciationKey]) == '') { // Depreciation class is blank, so null it out $intDepreciationId = 'NULL'; } else { // Depreciation class is invalid, so skip this record $intDepreciationId = false; } } } } else { $intDepreciationId = null; } // $objAssetModel = false; if (!$strShortDescription || $intCategoryId === false || $intManufacturerId === false || $intDepreciationId === false) { //$blnError = true; //echo sprintf("Desc: %s AssetCode: %s Cat: %s Man: %s<br/>", $strShortDescription, $strAssetModelCode, $intCategoryId, $intManufacturerId); //break; $strAssetModel = null; $this->intSkippedRecordCount++; $this->PutSkippedRecordInFile($file_skipped, $strRowArray); continue; } else { //$blnError = false; $strAssetModel = strtolower(sprintf("%s_%s_%s_%s", $strAssetModelCode, $strShortDescription, $intCategoryId, $intManufacturerId)); if ($this->lstImportAction->SelectedValue == 2) { $intItemId = intval(trim($strRowArray[$this->intItemIdKey])); if ($intItemId > 0 && array_key_exists($intItemId, $arrAssetModelId)) { $objAssetModelArray = AssetModel::LoadArrayBySearchHelper(null, null, null, null, null, null, null, null, null, null, null, null, $intItemId); if ($objAssetModelArray) { $objAssetModel = $objAssetModelArray[0]; } } } else { $intItemId = 0; } } if ($strAssetModel && !$intItemId && !$this->in_array_nocase($strAssetModel, $strAssetModelArray)) { // Custom Fields Section $strCFVArray = array(); $objDatabase = CustomField::GetDatabase(); $blnCheckCFVError = false; // Asset Model Custom Field import foreach ($arrModelCustomField as $objCustomField) { if ($objCustomField->CustomFieldQtypeId != 2) { $strCSDescription = trim($strRowArray[$intModelCustomFieldKeyArray[$objCustomField->CustomFieldId]]); $strCSDescription = strlen($strCSDescription) > 0 ? addslashes($strCSDescription) : addslashes($this->txtMapDefaultValueArray[$intModelCustomFieldKeyArray[$objCustomField->CustomFieldId]]->Text); $strCFVArray[$objCustomField->CustomFieldId] = strlen($strCSDescription) > 0 ? sprintf("'%s'", $strCSDescription) : "NULL"; } else { $objDatabase = AssetModel::GetDatabase(); $strCSDescription = addslashes(trim($strRowArray[$intModelCustomFieldKeyArray[$objCustomField->CustomFieldId]])); $blnInList = false; foreach (CustomFieldValue::LoadArrayByCustomFieldId($objCustomField->CustomFieldId) as $objCustomFieldValue) { if (strtolower($objCustomFieldValue->ShortDescription) == strtolower($strCSDescription)) { //$intCustomFieldValueId = $objCustomFieldValue->CustomFieldValueId; $blnInList = true; break; } } // Add the CustomFieldValue // Removed adding new 'select' values /*if (!$blnInList && !in_array($strCSDescription, $strAddedCFVArray)) { $strQuery = sprintf("INSERT INTO custom_field_value (custom_field_id, short_description, created_by, creation_date) VALUES (%s, '%s', %s, NOW());", $objCustomField->CustomFieldId, $strCSDescription, $_SESSION['intUserAccountId']); $objDatabase->NonQuery($strQuery); $strAddedCFVArray[] = $strCSDescription; } else*/ if (!$blnInList && $this->lstMapDefaultValueArray[$intModelCustomFieldKeyArray[$objCustomField->CustomFieldId]]->SelectedValue != null) { $strCSDescription = $this->lstMapDefaultValueArray[$intModelCustomFieldKeyArray[$objCustomField->CustomFieldId]]->SelectedName; } elseif (!$blnInList) { $blnCheckCFVError = true; break; } if (!$blnCheckCFVError) { if ($strCSDescription) { $strCFVArray[$objCustomField->CustomFieldId] = sprintf("'%s'", $strCSDescription); } else { $strCFVArray[$objCustomField->CustomFieldId] = "NULL"; } } } } if (!$blnCheckCFVError) { $strAssetModelArray[] = $strAssetModel; // $this->strModelValuesArray[] = sprintf("('%s', '%s', '%s', '%s', '%s', '%s', NOW())", $strShortDescription, (isset($intModelLongDescriptionKey)) ? addslashes(trim($strRowArray[$intModelLongDescriptionKey])) : null, $strAssetModelCode, $intCategoryId, $intManufacturerId, $_SESSION['intUserAccountId']); $this->strModelValuesArray[] = sprintf("('%s', '%s', '%s', '%s', '%s', '%s', NOW(), %s)", $strShortDescription, isset($intModelLongDescriptionKey) ? addslashes(trim($strRowArray[$intModelLongDescriptionKey])) : null, $strAssetModelCode, $intCategoryId, $intManufacturerId, $_SESSION['intUserAccountId'], $intDepreciationId ? $intDepreciationId : 'NULL'); $objNewAssetModelArray[] = $strShortDescription; if (isset($strCFVArray) && count($strCFVArray)) { $strModelCFVArray[] = implode(', ', $strCFVArray); } else { $strModelCFVArray[] = ""; } } else { $this->intSkippedRecordCount++; $this->PutSkippedRecordInFile($file_skipped, $strRowArray); $strAssetModel = null; } } elseif ($strAssetModel && $this->lstImportAction->SelectedValue == 2 && $objAssetModel) { $strUpdateFieldArray = array(); $strUpdateFieldArray[] = sprintf("`manufacturer_id`='%s'", $intManufacturerId); $strUpdateFieldArray[] = sprintf("`category_id`='%s'", $intCategoryId); $strUpdateFieldArray[] = sprintf("`short_description`='%s'", $strShortDescription); $strUpdateFieldArray[] = sprintf("`asset_model_code`='%s'", $strAssetModelCode); if (QApplication::$TracmorSettings->DepreciationFlag == '1' && $this->intDepreciationKey != null && $intDepreciationId != null) { $strUpdateFieldArray[] = sprintf("`depreciation_class_id` = %s", $intDepreciationId); } $strModelLongDescription = ""; if (isset($intModelLongDescription)) { if (trim($strRowArray[$intModelLongDescriptionKey])) { $strModelLongDescription = trim($strRowArray[$intModelLongDescriptionKey]); } else { $strModelLongDescription = isset($txtMapDefaultValueArray[$intModelLongDescriptionKey]) ? trim($txtMapDefaultValueArray[$intModelLongDescriptionKey]->Text) : ''; } $strUpdateFieldArray[] = sprintf("`asset_model_long_description`='%s'", $strModelLongDescription); } $strUpdateFieldArray[] = sprintf("modified_by='%s'", $_SESSION['intUserAccountId']); $blnCheckCFVError = false; foreach ($arrModelCustomField as $objCustomField) { if ($objCustomField->CustomFieldQtypeId != 2) { $strCSDescription = isset($strRowArray[$intModelCustomFieldKeyArray[$objCustomField->CustomFieldId]]) ? trim($strRowArray[$intModelCustomFieldKeyArray[$objCustomField->CustomFieldId]]) : ""; $strCSDescription = strlen($strCSDescription) > 0 ? addslashes($strCSDescription) : addslashes($this->txtMapDefaultValueArray[$intModelCustomFieldKeyArray[$objCustomField->CustomFieldId]]->Text); $strCFVArray[$objCustomField->CustomFieldId] = strlen($strCSDescription) > 0 ? sprintf("'%s'", $strCSDescription) : "NULL"; } else { $objDatabase = CustomField::GetDatabase(); $strCSDescription = isset($strRowArray[$intModelCustomFieldKeyArray[$objCustomField->CustomFieldId]]) ? addslashes(trim($strRowArray[$intModelCustomFieldKeyArray[$objCustomField->CustomFieldId]])) : ""; $strCFVArray[$objCustomField->CustomFieldId] = $strCSDescription ? sprintf("'%s'", $strCSDescription) : "NULL"; $blnInList = false; foreach (CustomFieldValue::LoadArrayByCustomFieldId($objCustomField->CustomFieldId) as $objCustomFieldValue) { if (strtolower($objCustomFieldValue->ShortDescription) == strtolower($strCSDescription)) { //$intItemKeyntCustomFieldValueId = $objCustomFieldValue->CustomFieldValueId; $blnInList = true; break; } } if (!$blnInList && $this->lstMapDefaultValueArray[$intModelCustomFieldKeyArray[$objCustomField->CustomFieldId]]->SelectedValue != null) { $strCSDescription = $this->lstMapDefaultValueArray[$intModelCustomFieldKeyArray[$objCustomField->CustomFieldId]]->SelectedName; } elseif (!$blnInList) { $blnCheckCFVError = true; break; } if (!$blnCheckCFVError) { if ($strCSDescription) { $strCFVArray[$objCustomField->CustomFieldId] = sprintf("'%s'", $strCSDescription); } else { $strCFVArray[$objCustomField->CustomFieldId] = "NULL"; } } } } if (!$blnCheckCFVError) { $strUpdatedValuesArray[] = sprintf("UPDATE `asset_model` SET %s WHERE `asset_model_id`='%s'", implode(", ", $strUpdateFieldArray), $objAssetModel->AssetModelId); if (isset($strCFVArray) && count($strCFVArray)) { $strUpdatedItemCFVArray[$objAssetModel->AssetModelId] = $strCFVArray; } else { $strUpdatedItemCFVArray[$objAssetModel->AssetModelId] = ""; } $this->objUpdatedItemArray[$objAssetModel->AssetModelId] = sprintf("%s", $objAssetModel->ShortDescription); //$this->arrOldItemArray[$objAssetModel->AssetModelId] = $objAssetModel; // $strItemQuery = sprintf("UPDATE `asset_model` SET `short_description`='%s', `long_description`='%s', `manufacturer_id`='%s', `category_id`='%s', `asset_model_code`='%s', `modified_by`=%s, `modified_date`=%s WHERE `asset_model_id`='%s'", $objAssetModel->ShortDescription, $objAssetModel->LongDescription, $objAssetModel->ManufacturerId, $objAssetModel->CategoryId, $objAssetModel->AssetModelCode, (!$objAssetModel->ModifiedBy) ? "NULL" : $objAssetModel->ModifiedBy, (!$objAssetModel->ModifiedBy) ? "NULL" : sprintf("'%s'", $objAssetModel->ModifiedDate), $objAssetModel->AssetModelId); $strItemQuery = sprintf("UPDATE `asset_model` SET `short_description`='%s', `long_description`='%s', `manufacturer_id`='%s', `category_id`='%s', `asset_model_code`='%s', `modified_by`=%s, `modified_date`=%s, `depreciation_class_id`=%s WHERE `asset_model_id`='%s'", $objAssetModel->ShortDescription, $objAssetModel->LongDescription, $objAssetModel->ManufacturerId, $objAssetModel->CategoryId, $objAssetModel->AssetModelCode, !$objAssetModel->ModifiedBy ? "NULL" : $objAssetModel->ModifiedBy, !$objAssetModel->ModifiedBy ? "NULL" : sprintf("'%s'", $objAssetModel->ModifiedDate), $objAssetModel->DepreciationClassId ? sprintf("'%s'", $objAssetModel->DepreciationClassId) : "NULL", $objAssetModel->AssetModelId); $strCFVArray = array(); foreach ($this->arrModelCustomField as $objCustomField) { $strCFV = $objAssetModel->GetVirtualAttribute($objCustomField->CustomFieldId); $strCFVArray[] = sprintf("`cfv_%s`='%s'", $objCustomField->CustomFieldId, $strCFV); } if (isset($strCFVArray) && count($strCFVArray)) { $strCFVQuery = sprintf("UPDATE `asset_model_custom_field_helper` SET %s WHERE `asset_model_id`='%s'", implode(", ", $strCFVArray), $intItemId); } else { $strCFVQuery = false; } $this->arrOldItemArray[$objAssetModel->AssetModelId] = array("ItemSql" => $strItemQuery, "CFVSql" => $strCFVQuery); } } else { $this->intSkippedRecordCount++; $this->PutSkippedRecordInFile($file_skipped, $strRowArray); } } //if ($this->intCurrentFile == count($this->strFilePathArray)) { // Inserts if (count($this->strModelValuesArray)) { $objDatabase = AssetModel::GetDatabase(); // print sprintf("INSERT INTO `asset_model` (`short_description`, `long_description`, `asset_model_code`, `category_id`, `manufacturer_id`, `created_by`, `creation_date`, `depreciation_class_id`) VALUES %s;", str_replace('""','"', implode(", ", $this->strModelValuesArray))); // exit(); // $objDatabase->NonQuery(sprintf("INSERT INTO `asset_model` (`short_description`, `long_description`, `asset_model_code`, `category_id`, `manufacturer_id`, `created_by`, `creation_date`) VALUES %s;", str_replace('""','"', implode(", ", $this->strModelValuesArray)))); $objDatabase->NonQuery(sprintf("INSERT INTO `asset_model` (`short_description`, `long_description`, `asset_model_code`, `category_id`, `manufacturer_id`, `created_by`, `creation_date`, `depreciation_class_id`) VALUES %s;", str_replace('""', '"', implode(", ", $this->strModelValuesArray)))); $intInsertId = $objDatabase->InsertId(); if ($intInsertId) { // Update for asset custom fields with allAssetModesF Flag $arrAllAssetModelsFlaggedObjects = EntityQtypeCustomField::LoadArrayByEntityQtypeId(QApplication::Translate(EntityQtype::Asset)); foreach ($arrAllAssetModelsFlaggedObjects as $arrAllAssetModelsFlaggedObject) { if ($arrAllAssetModelsFlaggedObject->CustomField->AllAssetModelsFlag) { $newAssetCustomField = new AssetCustomFieldAssetModel(); $newAssetCustomField->CustomFieldId = $arrAllAssetModelsFlaggedObject->CustomField->CustomFieldId; $newAssetCustomField->AssetModelId = $intInsertId; $newAssetCustomField->Save(); } } $strModelIdArray = array(); $strCFVArray = array(); for ($i = 0; $i < count($objNewAssetModelArray); $i++) { $this->objNewAssetModelArray[$intInsertId + $i] = $objNewAssetModelArray[$i]; $strCFVArray[$i] = sprintf("('%s', %s)", $intInsertId + $i, $strModelCFVArray[$i]); $strModelIdArray[$i] = sprintf("(%s)", $intInsertId + $i); } $strCFVNameArray = array(); foreach ($arrModelCustomField as $objCustomField) { $strCFVNameArray[] = sprintf("`cfv_%s`", $objCustomField->CustomFieldId); } if (count($strModelCFVArray) > 0 && count($strCFVNameArray) > 0) { $strQuery = sprintf("INSERT INTO `asset_model_custom_field_helper` (`asset_model_id`, %s) VALUES %s", implode(", ", $strCFVNameArray), implode(", ", $strCFVArray)); } else { $strQuery = sprintf("INSERT INTO `asset_model_custom_field_helper` (`asset_model_id`) VALUES %s", implode(", ", $strModelIdArray)); } $objDatabase->NonQuery($strQuery); } $this->strModelValuesArray = array(); } // Updates if (count($strUpdatedValuesArray)) { $objDatabase = AssetModel::GetDatabase(); foreach ($strUpdatedValuesArray as $query) { $objDatabase->NonQuery($query); } foreach ($this->objUpdatedItemArray as $intItemKey => $objUpdatedItem) { if (isset($strUpdatedItemCFVArray[$intItemKey]) && count($strUpdatedItemCFVArray[$intItemKey])) { $strCFVArray = array(); foreach ($arrModelCustomField as $objCustomField) { $strCFVArray[] = sprintf("`cfv_%s`=%s", $objCustomField->CustomFieldId, $strUpdatedItemCFVArray[$intItemKey][$objCustomField->CustomFieldId]); } if (isset($strCFVArray) && count($strCFVArray)) { $strQuery = sprintf("UPDATE `asset_model_custom_field_helper` SET %s WHERE `asset_model_id`='%s'", implode(", ", $strCFVArray), $intItemKey); $objDatabase->NonQuery($strQuery); } } } } //} //$this->intCurrentFile++; //break; } //$j++; } if ($this->intImportStep == 3) { /*if (count($this->strSelectedValueArray)) { $objDatabase = CustomField::GetDatabase(); $strQuery = sprintf("INSERT INTO `custom_field_selection` " . "(`entity_id`,`entity_qtype_id`, `custom_field_value_id`) " . "VALUES %s;", implode(", ", $this->strSelectedValueArray)); $objDatabase->NonQuery($strQuery); }*/ // Insert Values into helper tables $objDatabase = Asset::GetDatabase(); $objDatabase->NonQuery("SET FOREIGN_KEY_CHECKS=0;"); // Insert into asset_model_custom_field_helper $objDatabase->NonQuery(sprintf("INSERT INTO `asset_model_custom_field_helper` (`asset_model_id`) (SELECT `asset_model_id` FROM `asset_model` WHERE `asset_model_id` NOT IN (SELECT `asset_model_id` FROM `asset_model_custom_field_helper`));")); // Inserts end $objDatabase->NonQuery("SET FOREIGN_KEY_CHECKS=1;"); $this->blnImportEnd = true; $this->btnNext->Warning = ""; $this->lblImportResults->Display = true; if (count($this->objNewAssetArray)) { $this->lblImportAssets->Display = true; $this->dtgAsset->Paginator = new QPaginator($this->dtgAsset); $this->dtgAsset->ItemsPerPage = 20; } if (count($this->objUpdatedAssetArray)) { $this->lblImportUpdatedAssets->Display = true; $this->dtgUpdatedAsset->Paginator = new QPaginator($this->dtgUpdatedAsset); $this->dtgUpdatedAsset->ItemsPerPage = 20; } if (count($this->objNewAssetModelArray)) { $this->lblImportModels->Display = true; $this->dtgAssetModel->Paginator = new QPaginator($this->dtgAssetModel); $this->dtgAssetModel->ItemsPerPage = 20; } $this->btnNext->Display = false; $this->btnCancel->Display = false; $this->btnUndoLastImport->Display = true; $this->btnImportMore->Display = true; $this->btnReturnToAssets->Display = true; $this->lblImportSuccess->Display = true; $this->lblImportSuccess->Text = sprintf("Success:<br/>" . "<b>%s</b> Records imported successfully<br/>" . "<b>%s</b> Records skipped due to error<br/>", count($this->objNewAssetModelArray) + count($this->objUpdatedItemArray), $this->intSkippedRecordCount); if ($this->intSkippedRecordCount) { $this->lblImportSuccess->Text .= sprintf("<a href='./asset_model_import.php?intDownloadCsv=1'>Click here to download records that could not be imported</a>"); } $this->lblImportSuccess->Text .= "<br/><br/>"; $this->intImportStep = -1; } // Enable Next button $this->btnNext->Enabled = true; if (!$this->blnImportEnd && !$this->intCurrentFile) { $this->intImportStep++; } } fclose($file_skipped); } if (!$blnError) { if (($this->blnImportEnd || $this->intImportStep == 2) && $this->intImportStep != -1) { $this->intStep++; $this->DisplayStepForm($this->intStep); } if (!$this->blnImportEnd) { QApplication::ExecuteJavaScript("document.getElementById('" . $this->btnNext->ControlId . "').click();"); } if (!($this->intCurrentFile < count($this->strFilePathArray))) { $this->intCurrentFile = 0; $this->intImportStep++; } } }
protected function chkCustomFieldsForAll_Create() { $this->chkCustomFieldsForAllModels = new QCheckBoxList($this); $this->chkCustomFieldsForAllModels->Name = 'Asset Custom Fields for all Models:'; $arrAssetCustomFieldOptions = EntityQtypeCustomField::LoadArrayByEntityQtypeId(QApplication::Translate(EntityQtype::Asset)); if (count($arrAssetCustomFieldOptions) > 0) { if ($this->blnEditMode) { $arrChosenCustomFieldId = array(); $arrChosenCustomField = AssetCustomFieldAssetModel::LoadArrayByAssetModelId($this->objAssetModel->AssetModelId); foreach ($arrChosenCustomField as $objChosenCustomField) { $arrChosenCustomFieldId[] = $objChosenCustomField->CustomFieldId; } } foreach ($arrAssetCustomFieldOptions as $arrAssetCustomFieldOption) { $selected = false; if ($this->blnEditMode) { $selected = in_array($arrAssetCustomFieldOption->CustomField->CustomFieldId, $arrChosenCustomFieldId); } $role = RoleEntityQtypeCustomFieldAuthorization::LoadByRoleIdEntityQtypeCustomFieldIdAuthorizationId(QApplication::$objRoleModule->RoleId, $arrAssetCustomFieldOption->EntityQtypeCustomFieldId, 2); if ($role instanceof RoleEntityQtypeCustomFieldAuthorization) { $role = $role->AuthorizedFlag; } if ($arrAssetCustomFieldOption->CustomField->AllAssetModelsFlag && $arrAssetCustomFieldOption->CustomField->ActiveFlag && (int) $role == 1) { $this->chkCustomFieldsForAllModels->AddItem(new QListItem($arrAssetCustomFieldOption->CustomField->ShortDescription, $arrAssetCustomFieldOption->CustomField->CustomFieldId, true)); } } } $this->chkCustomFieldsForAllModels->Enabled = false; }
/** * This loads the array of custom fields, and their selections and values if an existing entity * If it is a new entity, it only loads the custom fields without values. * * @param integer $intEntityQtypeId e.g., 1 == Asset, 2 == Inventory * @param bool $blnEditMode if creating a new entity or editing an existing one * @param integer $intEntityId e.g., AssetId, InventoryId * @return Array $objCustomFieldArray of CustomField objects */ public static function LoadObjCustomFieldArray($intEntityQtypeId, $blnEditMode, $intEntityId = null, $searchable = false, $intAssetModel = null) { $objExpansionMap[CustomField::ExpandDefaultCustomFieldValue] = true; $objCustomFieldArray = CustomField::LoadArrayByActiveFlagEntity(true, $intEntityQtypeId, null, null, $objExpansionMap, $searchable); if ($objCustomFieldArray && $blnEditMode) { foreach ($objCustomFieldArray as $objCustomField) { $objCustomField->LoadExpandedArrayByEntity($intEntityQtypeId, $intEntityId); } } // Custom Fiedls load for Asset in asset_edit if ($intAssetModel) { $arrCustomFieldsForAssetModel = array(); // Select only if (is_int($intAssetModel)) { $arrAssetCustomFields = AssetCustomFieldAssetModel::LoadArrayByAssetModelId($intAssetModel); foreach ($arrAssetCustomFields as $anAssetCustomField) { $arrCustomFieldsForAssetModel[] = $anAssetCustomField->CustomField->CustomFieldId; } } elseif ($intAssetModel == 'all') { $arrAssetCustomFields = EntityQtypeCustomField::LoadArrayByEntityQtypeId(1); foreach ($arrAssetCustomFields as $anAssetCustomField) { if ($anAssetCustomField->CustomField->AllAssetModelsFlag) { $arrCustomFieldsForAssetModel[] = $anAssetCustomField->CustomField->CustomFieldId; } } } $arrForAssetModel = array(); foreach ($objCustomFieldArray as $objCustomField) { if (in_array($objCustomField->CustomFieldId, $arrCustomFieldsForAssetModel) || $objCustomField->AllAssetModelsFlag == 1) { $arrForAssetModel[] = $objCustomField; } } $objCustomFieldArray = $arrForAssetModel; } if ($objCustomFieldArray) { foreach ($objCustomFieldArray as $objCustomField) { $objEntityQtypeCustomField = EntityQtypeCustomField::LoadByEntityQtypeIdCustomFieldId($intEntityQtypeId, $objCustomField->CustomFieldId); if ($objEntityQtypeCustomField) { $objRoleEntityQtypeCustomFieldAuthorization = RoleEntityQtypeCustomFieldAuthorization::LoadByRoleIdEntityQtypeCustomFieldIdAuthorizationId(QApplication::$objUserAccount->RoleId, $objEntityQtypeCustomField->EntityQtypeCustomFieldId, 1); if ($objRoleEntityQtypeCustomFieldAuthorization) { $objCustomField->objRoleAuthView = $objRoleEntityQtypeCustomFieldAuthorization; } $objRoleEntityQtypeCustomFieldAuthorization2 = RoleEntityQtypeCustomFieldAuthorization::LoadByRoleIdEntityQtypeCustomFieldIdAuthorizationId(QApplication::$objUserAccount->RoleId, $objEntityQtypeCustomField->EntityQtypeCustomFieldId, 2); if ($objRoleEntityQtypeCustomFieldAuthorization2) { $objCustomField->objRoleAuthEdit = $objRoleEntityQtypeCustomFieldAuthorization2; } } } } return $objCustomFieldArray; }
protected function chkAssetCustomFields_Refresh() { $arrAssetCustomFieldOptions = EntityQtypeCustomField::LoadArrayByEntityQtypeId(QApplication::Translate(EntityQtype::Asset)); if (count($arrAssetCustomFieldOptions) > 0) { if ($this->blnEditMode) { $arrChosenCustomFieldId = array(); $arrChosenCustomField = AssetCustomFieldAssetModel::LoadArrayByAssetModelId($this->objAssetModel->AssetModelId); foreach ($arrChosenCustomField as $objChosenCustomField) { $arrChosenCustomFieldId[] = $objChosenCustomField->CustomFieldId; } } foreach ($arrAssetCustomFieldOptions as $arrAssetCustomFieldOption) { $selected = false; if ($this->blnEditMode) { $selected = in_array($arrAssetCustomFieldOption->CustomField->CustomFieldId, $arrChosenCustomFieldId); } /* else{ $selected = $arrAssetCustomFieldOption->CustomField->AllAssetModelsFlag; } */ //Excluding AllAssetModelsFlaged Items just until setup qcodo 4.22 $role = RoleEntityQtypeCustomFieldAuthorization::LoadByRoleIdEntityQtypeCustomFieldIdAuthorizationId(QApplication::$objRoleModule->RoleId, $arrAssetCustomFieldOption->EntityQtypeCustomFieldId, 2); if ($role instanceof RoleEntityQtypeCustomFieldAuthorization) { $role = $role->AuthorizedFlag; } if (!$arrAssetCustomFieldOption->CustomField->AllAssetModelsFlag && $arrAssetCustomFieldOption->CustomField->ActiveFlag && (int) $role == 1) { $this->chkAssetCustomFields->AddItem(new QListItem($arrAssetCustomFieldOption->CustomField->ShortDescription, $arrAssetCustomFieldOption->CustomField->CustomFieldId, $selected)); } } } if ($this->chkAssetCustomFields->ItemCount == 0) { $this->chkAssetCustomFields->Display = false; } if ($this->blnEditMode) { $this->chkAssetCustomFields->Enabled = false; } }