本文整理汇总了PHP中CustomField::GenerateHelperSql方法的典型用法代码示例。如果您正苦于以下问题:PHP CustomField::GenerateHelperSql方法的具体用法?PHP CustomField::GenerateHelperSql怎么用?PHP CustomField::GenerateHelperSql使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CustomField
的用法示例。
在下文中一共展示了CustomField::GenerateHelperSql方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: LoadArrayBySearchHelper
/**
* Load an array of Contact objects
* by FirstName, LastName, or Company ShortDescription
* using the contact_custom_field_helper table
*
* @param string $strFirstName
* @param string $strLastName
* @param string $strCompany
* @param string $strDateModified
* @param string $strDateModifiedFirst
* @param string $strDateModifiedLast
* @param string $strOrderBy
* @param string $strLimit
* @param array $objExpansionMap map of referenced columns to be immediately expanded via early-binding
* @return Contact[]
*/
public static function LoadArrayBySearchHelper($strFirstName = null, $strLastName = null, $strCompany = null, $arrCustomFields = null, $strDateModified = null, $strDateModifiedFirst = null, $strDateModifiedLast = null, $blnAttachment = null, $strOrderBy = null, $strLimit = null, $objExpansionMap = null)
{
Contact::ArrayQueryHelper($strOrderBy, $strLimit, $strLimitPrefix, $strLimitSuffix, $strExpandSelect, $strExpandFrom, $objExpansionMap, $objDatabase);
// Setup QueryExpansion
$objQueryExpansion = new QQueryExpansion();
if ($objExpansionMap) {
try {
Contact::ExpandQuery('contact', null, $objExpansionMap, $objQueryExpansion);
} catch (QCallerException $objExc) {
$objExc->IncrementOffset();
throw $objExc;
}
}
$arrSearchSql = Contact::GenerateSearchSql($strFirstName, $strLastName, $strCompany, $arrCustomFields, $strDateModified, $strDateModifiedFirst, $strDateModifiedLast, $blnAttachment);
$arrAttachmentSql = Attachment::GenerateSql(EntityQtype::Contact);
$arrCustomFieldSql = CustomField::GenerateHelperSql(EntityQtype::Contact);
$strQuery = sprintf('
SELECT
%s
`contact`.`contact_id` AS `contact_id`,
`contact`.`address_id` AS `address_id`,
`contact`.`company_id` AS `company_id`,
`contact`.`first_name` AS `first_name`,
`contact`.`last_name` AS `last_name`,
`contact`.`title` AS `title`,
`contact`.`email` AS `email`,
`contact`.`phone_office` AS `phone_office`,
`contact`.`phone_home` AS `phone_home`,
`contact`.`phone_mobile` AS `phone_mobile`,
`contact`.`fax` AS `fax`,
`contact`.`description` AS `description`,
`contact`.`created_by` AS `created_by`,
`contact`.`creation_date` AS `creation_date`,
`contact`.`modified_by` AS `modified_by`,
`contact`.`modified_date` AS `modified_date`
%s
%s
%s
FROM
`contact` AS `contact`
%s
%s
%s
WHERE
1=1
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
', $strLimitPrefix, $objQueryExpansion->GetSelectSql(",\n\t\t\t\t\t", ",\n\t\t\t\t\t"), $arrCustomFieldSql['strSelect'], $arrAttachmentSql['strSelect'], $objQueryExpansion->GetFromSql("", "\n\t\t\t\t\t"), $arrCustomFieldSql['strFrom'], $arrAttachmentSql['strFrom'], $arrSearchSql['strFirstNameSql'], $arrSearchSql['strLastNameSql'], $arrSearchSql['strCompanySql'], $arrSearchSql['strCustomFieldsSql'], $arrSearchSql['strDateModifiedSql'], $arrSearchSql['strAttachmentSql'], $arrSearchSql['strAuthorizationSql'], $arrAttachmentSql['strGroupBy'], $strOrderBy, $strLimitSuffix);
//echo($strQuery); exit;
$objDbResult = $objDatabase->Query($strQuery);
return Contact::InstantiateDbResult($objDbResult);
}
示例2: LoadArrayBySearchHelper
/**
* Load an array of Shipment objects
* by To Company, To Contact, From Company, From Contact, Shipment Number, Asset Code, Inventory Code, Tracking Number, or Status
* using the shipment_custom_field_helper table
*
* @param string $strToCompany
* @param string $strToContact
* @param string $strFromCompany
* @param string $strFromContact
* @param string $strShipmentNumber
* @param string $strAssetCode
* @param string $strInventoryModelCode
* @param int $intStatus
* @param string $strTrackingNumber
* @param int $intCourierId
* @param string $strNote
* @param string $strDateModified
* @param string $strDateModifiedFirst
* @param string $strDateModifiedLast
* @param string $strOrderBy
* @param string $strLimit
* @param array $objExpansionMap map of referenced columns to be immediately expanded via early-binding
* @return Shipment[]
*/
public static function LoadArrayBySearchHelper($strToCompany = null, $strToContact = null, $strFromCompany = null, $strFromContact = null, $strShipmentNumber = null, $strAssetCode = null, $strInventoryModelCode = null, $intStatus = null, $strTrackingNumber = null, $intCourierId = null, $strNote = null, $strShipmentDate = null, $arrCustomFields = null, $strDateModified = null, $strDateModifiedFirst = null, $strDateModifiedLast = null, $blnAttachment = null, $strOrderBy = null, $strLimit = null, $objExpansionMap = null)
{
Shipment::ArrayQueryHelper($strOrderBy, $strLimit, $strLimitPrefix, $strLimitSuffix, $strExpandSelect, $strExpandFrom, $objExpansionMap, $objDatabase);
// Setup QueryExpansion
$objQueryExpansion = new QQueryExpansion();
if ($objExpansionMap) {
try {
Shipment::ExpandQuery('shipment', null, $objExpansionMap, $objQueryExpansion);
} catch (QCallerException $objExc) {
$objExc->IncrementOffset();
throw $objExc;
}
}
$arrSearchSql = Shipment::GenerateSearchSql($strToCompany, $strToContact, $strFromCompany, $strFromContact, $strShipmentNumber, $strAssetCode, $strInventoryModelCode, $intStatus, $strTrackingNumber, $intCourierId, $strNote, $strShipmentDate, $arrCustomFields, $strDateModified, $strDateModifiedFirst, $strDateModifiedLast, $blnAttachment);
$arrAttachmentSql = Attachment::GenerateSql(EntityQtype::Shipment);
$arrCustomFieldSql = CustomField::GenerateHelperSql(EntityQtype::Shipment);
$strQuery = sprintf('
SELECT
%s
DISTINCT
`shipment`.`shipment_id` AS `shipment_id`,
`shipment`.`shipment_number` AS `shipment_number`,
`shipment`.`to_contact_id` AS `to_contact_id`,
`shipment`.`from_company_id` AS `from_company_id`,
`shipment`.`from_contact_id` AS `from_contact_id`,
`shipment`.`transaction_id` AS `transaction_id`,
`shipment`.`ship_date` AS `ship_date`,
`shipment`.`from_address_id` AS `from_address_id`,
`shipment`.`to_company_id` AS `to_company_id`,
`shipment`.`to_address_id` AS `to_address_id`,
`shipment`.`courier_id` AS `courier_id`,
`shipment`.`shipped_flag` AS `shipped_flag`,
`shipment`.`tracking_number` AS `tracking_number`,
`shipment`.`created_by` AS `created_by`,
`shipment`.`creation_date` AS `creation_date`,
`shipment`.`modified_by` AS `modified_by`,
`shipment`.`modified_date` AS `modified_date`
%s
%s
%s
FROM
`shipment` AS `shipment`
%s
%s
%s
%s
%s
WHERE
1=1
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
', $strLimitPrefix, $objQueryExpansion->GetSelectSql(",\n\t\t\t\t\t", ",\n\t\t\t\t\t"), $arrCustomFieldSql['strSelect'], $arrAttachmentSql['strSelect'], $objQueryExpansion->GetFromSql("", "\n\t\t\t\t\t"), $arrCustomFieldSql['strFrom'], $arrAttachmentSql['strFrom'], $arrSearchSql['strAssetCodeFromSql'], $arrSearchSql['strInventoryModelCodeFromSql'], $arrSearchSql['strToCompanySql'], $arrSearchSql['strToContactSql'], $arrSearchSql['strFromCompanySql'], $arrSearchSql['strFromContactSql'], $arrSearchSql['strShipmentNumberSql'], $arrSearchSql['strAssetCodeSql'], $arrSearchSql['strInventoryModelCodeSql'], $arrSearchSql['strStatusSql'], $arrSearchSql['strTrackingNumberSql'], $arrSearchSql['strCourierSql'], $arrSearchSql['strNoteSql'], $arrSearchSql['strShipmentDateSql'], $arrSearchSql['strCustomFieldsSql'], $arrSearchSql['strDateModifiedSql'], $arrSearchSql['strAttachmentSql'], $arrSearchSql['strAuthorizationSql'], $arrAttachmentSql['strGroupBy'], $strOrderBy, $strLimitSuffix);
$objDbResult = $objDatabase->Query($strQuery);
return Shipment::InstantiateDbResult($objDbResult);
}
示例3: LoadArrayBySearchHelper
/**
* Load an array of InventoryModel objects
* by search parameters using the helper table
*
* @param string $strInventoryModelCode
* @param int $intLocationId
* @param int $intInventoryModelId
* @param int $intCategoryId
* @param int $intManufacturerId
* @param string $strShortDescription
* @param array $arrCustomFields
* @param string $strDateModified
* @param string $strDateModifiedFirst
* @param string $strDateModifiedLast
* @param bool $blnAttachment
* @param string $strOrderBy
* @param string $strLimit
* @param array $objExpansionMap
* @return InventoryModel[]
*/
public static function LoadArrayBySearchHelper($strInventoryModelCode = null, $intLocationId = null, $intInventoryModelId = null, $intCategoryId = null, $intManufacturerId = null, $strShortDescription = null, $arrCustomFields = null, $strDateModified = null, $strDateModifiedFirst = null, $strDateModifiedLast = null, $blnAttachment = null, $strOrderBy = null, $strLimit = null, $objExpansionMap = null)
{
InventoryModel::ArrayQueryHelper($strOrderBy, $strLimit, $strLimitPrefix, $strLimitSuffix, $strExpandSelect, $strExpandFrom, $objExpansionMap, $objDatabase);
// Setup QueryExpansion
$objQueryExpansion = new QQueryExpansion();
if ($objExpansionMap) {
try {
InventoryModel::ExpandQuery('inventory_model', null, $objExpansionMap, $objQueryExpansion);
} catch (QCallerException $objExc) {
$objExc->IncrementOffset();
throw $objExc;
}
}
$arrSearchSql = InventoryModel::GenerateSearchSql($strInventoryModelCode, $intLocationId, $intInventoryModelId, $intCategoryId, $intManufacturerId, $strShortDescription, $arrCustomFields, $strDateModified, $strDateModifiedFirst, $strDateModifiedLast, $blnAttachment);
$arrCustomFieldSql = CustomField::GenerateHelperSql(EntityQtype::Inventory);
$arrAttachmentSql = Attachment::GenerateSql(EntityQtype::Inventory);
$strQuery = sprintf('
SELECT
%s
SUM( `inventory_location` . `quantity` ) AS `inventory_model_quantity`,
`inventory_model`.`inventory_model_id` AS `inventory_model_id`,
`inventory_model`.`category_id` AS `category_id`,
`inventory_model`.`manufacturer_id` AS `manufacturer_id`,
`inventory_model`.`inventory_model_code` AS `inventory_model_code`,
`inventory_model`.`short_description` AS `short_description`,
`inventory_model`.`long_description` AS `long_description`,
`inventory_model`.`image_path` AS `image_path`,
`inventory_model`.`price` AS `price`,
`inventory_model`.`created_by` AS `created_by`,
`inventory_model`.`creation_date` AS `creation_date`,
`inventory_model`.`modified_by` AS `modified_by`,
`inventory_model`.`modified_date` AS `modified_date`
%s
%s
%s
FROM
`inventory_model` AS `inventory_model`
LEFT JOIN `inventory_location` AS `inventory_location` ON `inventory_model` . `inventory_model_id` = `inventory_location` . `inventory_model_id`
%s
%s
%s
WHERE
1=1
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
', $strLimitPrefix, $objQueryExpansion->GetSelectSql(",\n\t\t\t\t\t", ",\n\t\t\t\t\t"), $arrCustomFieldSql['strSelect'], $arrAttachmentSql['strSelect'], $objQueryExpansion->GetFromSql("", "\n\t\t\t\t\t"), $arrCustomFieldSql['strFrom'], $arrAttachmentSql['strFrom'], $arrSearchSql['strInventoryModelCodeSql'], $arrSearchSql['strLocationSql'], $arrSearchSql['strInventoryModelSql'], $arrSearchSql['strCategorySql'], $arrSearchSql['strManufacturerSql'], $arrSearchSql['strShortDescriptionSql'], $arrSearchSql['strCustomFieldsSql'], $arrSearchSql['strDateModifiedSql'], $arrSearchSql['strAttachmentSql'], $arrSearchSql['strAuthorizationSql'], $arrAttachmentSql['strGroupBy'], $strOrderBy, $strLimitSuffix);
$objDbResult = $objDatabase->Query($strQuery);
return InventoryModel::InstantiateDbResult($objDbResult);
}
示例4: LoadChildLinkedArrayByParentAssetIdWithNoCustomFields
public static function LoadChildLinkedArrayByParentAssetIdWithNoCustomFields($intParentAssetId)
{
$objLinkedAssetArray = array();
Asset::QueryHelper($objDatabase);
$arrCustomFieldSql = CustomField::GenerateHelperSql(EntityQtype::Asset);
// Setup the SQL Query
$strQuery = sprintf("\n\t\t\t\tSELECT\n\t\t\t\t\t`asset`.*\n\t\t\t\tFROM\n\t\t\t\t\t`asset`\n\t\t\t\tWHERE `asset`.`parent_asset_id` = %s\n\t\t\t\tAND `asset`.`linked_flag` = 1\n\t\t\t", $intParentAssetId);
// Perform the Query and Instantiate the Result
$objDbResult = $objDatabase->Query($strQuery);
$objChildAssetArray = Asset::InstantiateDbResult($objDbResult);
if ($objChildAssetArray && count($objChildAssetArray)) {
foreach ($objChildAssetArray as $objLinkedAsset) {
$objLinkedAssetArray[] = $objLinkedAsset;
$objNewLinkedAssetArray = Asset::LoadChildLinkedArrayByParentAssetIdWithNoCustomFields($objLinkedAsset->AssetId);
if ($objNewLinkedAssetArray) {
foreach ($objNewLinkedAssetArray as $objLinkedAsset2) {
$objLinkedAssetArray[] = $objLinkedAsset2;
}
}
}
return $objLinkedAssetArray;
} else {
return false;
}
}
示例5: LoadAllWithCustomFieldsHelper
public static function LoadAllWithCustomFieldsHelper($strOrderBy = null, $strLimit = null, $objExpansionMap = null)
{
Manufacturer::ArrayQueryHelper($strOrderBy, $strLimit, $strLimitPrefix, $strLimitSuffix, $strExpandSelect, $strExpandFrom, $objExpansionMap, $objDatabase);
// Setup QueryExpansion
$objQueryExpansion = new QQueryExpansion();
if ($objExpansionMap) {
try {
Manufacturer::ExpandQuery('manufacturer', null, $objExpansionMap, $objQueryExpansion);
} catch (QCallerException $objExc) {
$objExc->IncrementOffset();
throw $objExc;
}
}
$arrCustomFieldSql = CustomField::GenerateHelperSql(5);
$strQuery = sprintf('
SELECT
%s
`manufacturer`.`manufacturer_id` AS `manufacturer_id`,
`manufacturer`.`short_description` AS `short_description`,
`manufacturer`.`long_description` AS `long_description`,
`manufacturer`.`image_path` AS `image_path`,
`manufacturer`.`created_by` AS `created_by`,
`manufacturer`.`creation_date` AS `creation_date`,
`manufacturer`.`modified_by` AS `modified_by`,
`manufacturer`.`modified_date` AS `modified_date`
%s
%s
FROM
`manufacturer` AS `manufacturer`
%s
%s
WHERE
1=1
%s
%s
', $strLimitPrefix, $objQueryExpansion->GetSelectSql(",\n\t\t\t\t\t", ",\n\t\t\t\t\t"), $arrCustomFieldSql['strSelect'], $objQueryExpansion->GetFromSql("", "\n\t\t\t\t\t"), $arrCustomFieldSql['strFrom'], $strOrderBy, $strLimitSuffix);
//echo($strQuery); exit;
$objDbResult = $objDatabase->Query($strQuery);
return Manufacturer::InstantiateDbResult($objDbResult);
}
示例6: LoadArrayBySearch
/**
* Load an array of objAssetTransactions
* @param $blnReturnStrQuery - true/false (return strSqlQuery / return objAssetTransaction[])
* @param $strAssetModel
* @param $strAssetCode
* @param $strAssetModelCode
* @param $strUser
* @param $intCheckedOutBy
* @param $intReservedBy
* @param $strCategory
* @param $strManufacturer
* @param $strSortByDate
* @param $strDateModified
* @param $strDateModifiedFirst
* @param $strDateModifiedLast
* @param $arrTransactionTypes
* @param $objExpansionMap
* @return strSqlQuery / objAssetTransaction[]
*/
public function LoadArrayBySearch($blnReturnStrQuery = true, $strAssetModel = null, $strAssetCode = null, $strAssetModelCode = null, $strUser = null, $intCheckedOutBy = null, $intReservedBy = null, $strCategory = null, $strManufacturer = null, $strSortByDate = "ASC", $strDateModified = null, $strDateModifiedFirst = null, $strDateModifiedLast = null, $arrTransactionTypes = null, $objExpansionMap = null)
{
// Setup QueryExpansion
$objQueryExpansion = new QQueryExpansion();
if ($objExpansionMap) {
try {
AssetTransaction::ExpandQuery('asset_transaction', null, $objExpansionMap, $objQueryExpansion);
} catch (QCallerException $objExc) {
$objExc->IncrementOffset();
throw $objExc;
}
}
$strTransactionTypes = "";
if ($arrTransactionTypes) {
$strTransactionTypes = sprintf("AND `asset_transaction__transaction_id`.`transaction_type_id` IN ('%s') ", implode("', '", $arrTransactionTypes));
}
if ($strAssetModel) {
$strAssetModel = "AND `asset_transaction__asset_id__asset_model_id`.`short_description` LIKE '%" . $strAssetModel . "%'\n";
}
if ($strAssetCode) {
$strAssetCode = "AND `asset_transaction__asset_id`.`asset_code` LIKE '%" . $strAssetCode . "%'\n";
}
if ($strAssetModelCode) {
$strAssetModelCode = "AND `asset_transaction__asset_id__asset_model_id`.`asset_model_code` LIKE '%" . $strAssetModelCode . "%'\n";
}
if ($strUser) {
$strUser = sprintf("AND (`asset_transaction__transaction_id__created_by`.`user_account_id` = '%s' OR `asset_transaction__transaction_id__modified_by`.`user_account_id` = '%s')\n", $strUser, $strUser);
}
$strCheckedOutBy = "";
if ($intCheckedOutBy) {
$strCheckedOutBy = sprintf("AND `asset_transaction__asset_id`.`checked_out_flag` = true\n");
if ($intCheckedOutBy != 'any') {
$strCheckedOutBy .= sprintf("AND `asset_transaction`.`created_by` = '%s'\n", $intCheckedOutBy);
}
}
$strReservedBy = "";
if ($intReservedBy) {
$strReservedBy = sprintf("AND `asset_transaction__asset_id`.`reserved_flag` = true\n");
if ($intReservedBy != 'any') {
$strReservedBy .= sprintf("AND `asset_transaction`.`created_by` = '%s'\n", $intReservedBy);
}
}
if ($strCategory) {
$strCategory = sprintf("AND `asset_transaction__asset_id__asset_model_id`.`category_id` = '%s'\n", $strCategory);
}
if ($strManufacturer) {
$strManufacturer = sprintf("AND `asset_transaction__asset_id__asset_model_id`.`manufacturer_id` = '%s'\n", $strManufacturer);
}
$arrSearchSql['strDateModifiedSql'] = null;
if ($strDateModified) {
if ($strDateModified == "before" && $strDateModifiedFirst instanceof QDateTime) {
$strDateModifiedFirst = QApplication::$Database[1]->SqlVariable($strDateModifiedFirst->Timestamp, false);
$arrSearchSql['strDateModifiedSql'] = sprintf("AND (UNIX_TIMESTAMP(`asset_transaction`.`modified_date`) < %s OR UNIX_TIMESTAMP(`asset_transaction`.`creation_date`) < %s)\n", $strDateModifiedFirst, $strDateModifiedFirst);
} elseif ($strDateModified == "after" && $strDateModifiedFirst instanceof QDateTime) {
$strDateModifiedFirst = QApplication::$Database[1]->SqlVariable($strDateModifiedFirst->Timestamp, false);
$arrSearchSql['strDateModifiedSql'] = sprintf("AND (UNIX_TIMESTAMP(`asset_transaction`.`modified_date`) > %s OR UNIX_TIMESTAMP(`asset_transaction`.`creation_date`) > %s)\n", $strDateModifiedFirst, $strDateModifiedFirst);
} elseif ($strDateModified == "between" && $strDateModifiedFirst instanceof QDateTime && $strDateModifiedLast instanceof QDateTime) {
$strDateModifiedFirst = QApplication::$Database[1]->SqlVariable($strDateModifiedFirst->Timestamp, false);
// Added 86399 (23 hrs., 59 mins., 59 secs) because the After variable needs to include the date given
// When only a date is given, conversion to a timestamp assumes 12:00am
$strDateModifiedLast = QApplication::$Database[1]->SqlVariable($strDateModifiedLast->Timestamp, false) + 86399;
$arrSearchSql['strDateModifiedSql'] = sprintf("AND (UNIX_TIMESTAMP(`asset_transaction`.`modified_date`) > %s AND UNIX_TIMESTAMP(`asset_transaction`.`modified_date`) < %s", $strDateModifiedFirst, $strDateModifiedLast);
$arrSearchSql['strDateModifiedSql'] .= sprintf(" OR UNIX_TIMESTAMP(`asset_transaction`.`creation_date`) > %s AND UNIX_TIMESTAMP(`asset_transaction`.`creation_date`) < %s)\n", $strDateModifiedFirst, $strDateModifiedLast);
}
}
$strSortByDate = sprintf("\n `asset_transaction__transaction_id__modified_date` %s,\n `asset_transaction__transaction_id__creation_date` %s,\n\t\t\t", $strSortByDate, $strSortByDate);
$arrCustomFieldSql = CustomField::GenerateHelperSql(EntityQtype::Asset);
$strQuery = sprintf('
SELECT
`asset_transaction`.`asset_transaction_id` AS `asset_transaction_id`,
`asset_transaction`.`asset_id` AS `asset_id`,
`asset_transaction`.`transaction_id` AS `transaction_id`,
`asset_transaction`.`parent_asset_transaction_id` AS `parent_asset_transaction_id`,
`asset_transaction`.`source_location_id` AS `source_location_id`,
`asset_transaction`.`destination_location_id` AS `destination_location_id`,
`asset_transaction`.`new_asset_flag` AS `new_asset_flag`,
`asset_transaction`.`new_asset_id` AS `new_asset_id`,
`asset_transaction`.`schedule_receipt_flag` AS `schedule_receipt_flag`,
`asset_transaction`.`schedule_receipt_due_date` AS `schedule_receipt_due_date`,
`asset_transaction`.`created_by` AS `created_by`,
`asset_transaction`.`creation_date` AS `creation_date`,
//.........这里部分代码省略.........
示例7: LoadArrayBySearchHelper
/**
* Load an array of Asset objects
* by search parameters using the helper table
*
* @param string $strAssetCode
* @param int $intLocationId
* @param int $intAssetModelId
* @param int $intCategoryId
* @param int $intManufacturerId
* @param bool $blnOffsite
* @param string $strAssetModelCode
* @param integer $intReservedBy
* @param integer $intCheckedOutBy
* @param string $strShortDescription
* @param array $arrCustomFields
* @param string $strDateModified
* @param string $strDateModifiedFirst
* @param string $strDateModifiedLast
* @param bool $blnAttachment
* @param string $strOrderBy
* @param string $strLimit
* @param array $objExpansionMap map of referenced columns to be immediately expanded via early-binding
* @return Asset[]
*/
public static function LoadArrayBySearchHelper($strAssetCode = null, $intLocationId = null, $intAssetModelId = null, $intCategoryId = null, $intManufacturerId = null, $blnOffsite = false, $strAssetModelCode = null, $intReservedBy = null, $intCheckedOutBy = null, $strShortDescription = null, $arrCustomFields = null, $strDateModified = null, $strModifiedCreated, $strDateModifiedFirst = null, $strDateModifiedLast = null, $blnAttachment = null, $strOrderBy = null, $strLimit = null, $objExpansionMap = null, $blnIncludeTBR = false, $blnIncludeShipped = false, $blnArchived = false, $intCheckedOutToUser = null, $intCheckedOutToContact = null, $blnChekcedOutPastDue = false, $intAssetId = null)
{
Asset::ArrayQueryHelper($strOrderBy, $strLimit, $strLimitPrefix, $strLimitSuffix, $strExpandSelect, $strExpandFrom, $objExpansionMap, $objDatabase);
// Setup QueryExpansion
$objQueryExpansion = new QQueryExpansion();
if ($objExpansionMap) {
try {
Asset::ExpandQuery('asset', null, $objExpansionMap, $objQueryExpansion);
} catch (QCallerException $objExc) {
$objExc->IncrementOffset();
throw $objExc;
}
}
$arrSearchSql = Asset::GenerateSearchSql($strAssetCode, $intLocationId, $intAssetModelId, $intCategoryId, $intManufacturerId, $blnOffsite, $strAssetModelCode, $intReservedBy, $intCheckedOutBy, $strShortDescription, $arrCustomFields, $strDateModified, $strModifiedCreated, $strDateModifiedFirst, $strDateModifiedLast, $blnAttachment, $blnIncludeTBR, $blnIncludeShipped, $blnArchived, $intCheckedOutToUser, $intCheckedOutToContact, $blnChekcedOutPastDue, $intAssetId);
$arrCustomFieldSql = CustomField::GenerateHelperSql(EntityQtype::Asset);
$arrAttachmentSql = Attachment::GenerateSql(EntityQtype::Asset);
$strQuery = sprintf('
SELECT
%s
`asset`.`asset_id` AS `asset_id`,
`asset`.`asset_model_id` AS `asset_model_id`,
`asset`.`location_id` AS `location_id`,
`asset`.`asset_code` AS `asset_code`,
`asset`.`parent_asset_id` AS `parent_asset_id`,
`asset`.`image_path` AS `image_path`,
`asset`.`checked_out_flag` AS `checked_out_flag`,
`asset`.`reserved_flag` AS `reserved_flag`,
`asset`.`archived_flag` AS `archived_flag`,
`asset`.`created_by` AS `created_by`,
`asset`.`creation_date` AS `creation_date`,
`asset`.`modified_by` AS `modified_by`,
`asset`.`modified_date` AS `modified_date`
%s
%s
%s
FROM
`asset` AS `asset`
%s
%s
%s
WHERE
1=1
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
', $strLimitPrefix, $objQueryExpansion->GetSelectSql(",\n\t\t\t\t\t", ",\n\t\t\t\t\t"), $arrCustomFieldSql['strSelect'], $arrAttachmentSql['strSelect'], $objQueryExpansion->GetFromSql("", "\n\t\t\t\t\t"), $arrCustomFieldSql['strFrom'], $arrAttachmentSql['strFrom'], $arrSearchSql['strAssetCodeSql'], $arrSearchSql['strLocationSql'], $arrSearchSql['strAssetModelSql'], $arrSearchSql['strCategorySql'], $arrSearchSql['strManufacturerSql'], $arrSearchSql['strOffsiteSql'], $arrSearchSql['strAssetModelCodeSql'], $arrSearchSql['strReservedBySql'], $arrSearchSql['strCheckedOutBySql'], $arrSearchSql['strCheckedOutToUserSql'], $arrSearchSql['strCheckedOutToContactSql'], $arrSearchSql['strCheckedOutPastDueSql'], $arrSearchSql['strAssetIdSql'], $arrSearchSql['strArchivedSql'], $arrSearchSql['strIncludeTBRSql'], $arrSearchSql['strIncludeShippedSql'], $arrSearchSql['strShortDescriptionSql'], $arrSearchSql['strCustomFieldsSql'], $arrSearchSql['strDateModifiedSql'], $arrSearchSql['strAttachmentSql'], $arrSearchSql['strAuthorizationSql'], $arrAttachmentSql['strGroupBy'], $strOrderBy, $strLimitSuffix);
$objDbResult = $objDatabase->Query($strQuery);
return Asset::InstantiateDbResult($objDbResult);
}
示例8: LoadArrayBySearchHelper
/**
* Load an array of Company objects
* by ShortDescription, City, StateProvince, or Country
* using the company_custom_field_helper table
*
* @param string $strShortDescription
* @param string $strCity
* @param integer $intStateProvinceId
* @param integer $intCountryId
* @param string $strDateModified
* @param string $strDateModifiedFirst
* @param string $strDateModifiedLast
* @param string $strOrderBy
* @param string $strLimit
* @param array $objExpansionMap map of referenced columns to be immediately expanded via early-binding
* @return Company[]
*/
public static function LoadArrayBySearchHelper($strShortDescription = null, $strCity = null, $intStateProvinceId = null, $intCountryId = null, $arrCustomFields = null, $strDateModified = null, $strDateModifiedFirst = null, $strDateModifiedLast = null, $blnAttachment = null, $strOrderBy = null, $strLimit = null, $objExpansionMap = null)
{
Company::ArrayQueryHelper($strOrderBy, $strLimit, $strLimitPrefix, $strLimitSuffix, $strExpandSelect, $strExpandFrom, $objExpansionMap, $objDatabase);
// Setup QueryExpansion
$objQueryExpansion = new QQueryExpansion();
if ($objExpansionMap) {
try {
Company::ExpandQuery('company', null, $objExpansionMap, $objQueryExpansion);
} catch (QCallerException $objExc) {
$objExc->IncrementOffset();
throw $objExc;
}
}
// Generate an array of SQL strings to be used in the search query
$arrSearchSql = Company::GenerateSearchSql($strShortDescription, $strCity, $intStateProvinceId, $intCountryId, $arrCustomFields, $strDateModified, $strDateModifiedFirst, $strDateModifiedLast, $blnAttachment);
$arrAttachmentSql = Attachment::GenerateSql(EntityQtype::Company);
$arrCustomFieldSql = CustomField::GenerateHelperSql(EntityQtype::Company);
$strQuery = sprintf('
SELECT
%s
`company`.`company_id` AS `company_id`,
`company`.`address_id` AS `address_id`,
`company`.`short_description` AS `short_description`,
`company`.`website` AS `website`,
`company`.`telephone` AS `telephone`,
`company`.`fax` AS `fax`,
`company`.`email` AS `email`,
`company`.`long_description` AS `long_description`,
`company`.`created_by` AS `created_by`,
`company`.`creation_date` AS `creation_date`,
`company`.`modified_by` AS `modified_by`,
`company`.`modified_date` AS `modified_date`
%s
%s
%s
FROM
`company` AS `company`
%s
%s
%s
WHERE
1=1
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
%s
', $strLimitPrefix, $objQueryExpansion->GetSelectSql(",\n\t\t\t\t\t", ",\n\t\t\t\t\t"), $arrCustomFieldSql['strSelect'], $arrAttachmentSql['strSelect'], $objQueryExpansion->GetFromSql("", "\n\t\t\t\t\t"), $arrCustomFieldSql['strFrom'], $arrAttachmentSql['strFrom'], $arrSearchSql['strShortDescriptionSql'], $arrSearchSql['strCitySql'], $arrSearchSql['strStateProvinceSql'], $arrSearchSql['strCountrySql'], $arrSearchSql['strCustomFieldsSql'], $arrSearchSql['strDateModifiedSql'], $arrSearchSql['strAttachmentSql'], $arrSearchSql['strAuthorizationSql'], $arrAttachmentSql['strGroupBy'], $strOrderBy, $strLimitSuffix);
$objDbResult = $objDatabase->Query($strQuery);
return Company::InstantiateDbResult($objDbResult);
}