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


PHP CSaleOrderProps::GetOrderPropsRelations方法代码示例

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


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

示例1: array

                }
            }
        }
    } else {
        $resetInputSettings = true;
    }
    $property = $_POST;
    $relations = $_POST['RELATIONS'];
} else {
    $relations = array();
    // 2. load property from database
    if ($property = $existentProperty) {
        $personTypeId = $property['PERSON_TYPE_ID'];
        $property += $property['SETTINGS'];
        // load relations
        $result = CSaleOrderProps::GetOrderPropsRelations(array('PROPERTY_ID' => $propertyId));
        while ($row = $result->Fetch()) {
            $relations[$row['ENTITY_TYPE']][] = $row['ENTITY_ID'];
        }
    } else {
        $propertyId = null;
        $property = array('TYPE' => 'STRING', 'PERSON_TYPE_ID' => $personTypeId);
    }
}
// 4. check requested person type
if (!($personType = $personTypes[$personTypeId])) {
    LocalRedirect('sale_order_props.php?lang=' . LANG . GetFilterParams('filter_', false));
}
// SETTINGS ////////////////////////////////////////////////////////////////////////////////////////////////////////////
// input settings
$inputSettings = Input\Manager::getSettings($property, $reload);
开发者ID:akniyev,项目名称:itprom_dobrohost,代码行数:31,代码来源:order_props_edit.php

示例2: GetMessage

	<!-- delivery system relations control -->
	<tr>
		<td width="40%">
			<?php 
echo GetMessage("SALE_PROPERTY_DELIVERY");
?>
:
		</td>
		<td width="60%">
			<select multiple="multiple" size="5" name="DELIVERY_SYSTEM_ID[]">
				<?php 
$arDeliverySystemID = array();
if (isset($_POST["DELIVERY_SYSTEM_ID"]) && is_array($_POST["DELIVERY_SYSTEM_ID"])) {
    $arDeliverySystemID = $_POST["DELIVERY_SYSTEM_ID"];
} else {
    $dbRes = CSaleOrderProps::GetOrderPropsRelations(array("PROPERTY_ID" => $ID, "ENTITY_TYPE" => "D"));
    while ($arRes = $dbRes->Fetch()) {
        $arDeliverySystemID[] = $arRes["ENTITY_ID"];
    }
}
?>
					<option value="" <?php 
echo count($arDeliverySystemID) <= 0 ? "selected" : "";
?>
><?php 
echo GetMessage("SALE_PROPERTY_SELECT_ALL");
?>
</option>
				<?php 
$arDeliveryOptions = array();
$dbResultList = CSaleDelivery::GetList(array("SORT" => "ASC", "NAME" => "ASC"), array("ACTIVE" => "Y"), false, false, array("ID", "NAME", "ACTIVE", "SORT"));
开发者ID:DarneoStudio,项目名称:bitrix,代码行数:31,代码来源:order_props_edit.php


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