Your IP : 3.137.170.38


Current Path : /var/www/www-root/data/www/monolith-realty.ru/bitrix/wizards/bitrix/demo/modules/sale/
Upload File :
Current File : /var/www/www-root/data/www/monolith-realty.ru/bitrix/wizards/bitrix/demo/modules/sale/step22.php

<?
if(!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED!==true)
	die();

if(!CModule::IncludeModule('sale'))
	return;

$siteID = $arParams["site_id"];
if(strlen($arParams["site_id"]) <= 0)
	$siteID = "s1";
$dbSite = CSite::GetByID($siteID);
if($arSite = $dbSite -> Fetch())
	$lang = $arSite["LANGUAGE_ID"];
if(strlen($lang) <= 0)
	$lang = "ru";
$bRus = false;
if($lang == "ru")
	$bRus = true;
	
__IncludeLang(GetLangFileName(dirname(__FILE__)."/lang/", "/step8.php", $lang));

$dbLocation = CSaleLocation::GetList(Array("ID" => "ASC"), Array("LID" => $lang));
if($arLocation = $dbLocation->Fetch())//if there are no data in module
{
	$arLocation4Delivery = Array();
	do
	{
		$arLocation4Delivery[] = Array("LOCATION_ID" => $arLocation["ID"], "LOCATION_TYPE"=>"L");
	}
	while($arLocation = $dbLocation->Fetch());
	//Location group
	$dblocationGroupID = CSaleLocationGroup::GetList(Array("ID" => "DESC"));
	if($arLocationGroupID = $dblocationGroupID->Fetch())
		$locationGroupID = $arLocationGroupID["ID"];
		
	$arLocation4Delivery[] = Array("LOCATION_ID" => $locationGroupID, "LOCATION_TYPE"=>"G");
			
	CSaleDelivery::Add(
		Array(
			"NAME" => GetMessage("SALE_WIZARD_COUR"),
			"LID" => $siteID,
			"PERIOD_FROM" => 7,
			"PERIOD_TO" => 15,
			"PERIOD_TYPE" => "D",
			"WEIGHT_FROM" => 2000,
			"WEIGHT_TO" => 0,
			"ORDER_PRICE_FROM" => 0,
			"ORDER_PRICE_TO" => 0,
			"ORDER_CURRENCY" => ($bRus ? "RUB" : "USD"),
			"ACTIVE" => "N",
			"PRICE" => "55",
			"CURRENCY" => ($bRus ? "RUB" : "USD"),
			"SORT" => 100,
			"DESCRIPTION" => "",
			"LOCATIONS" => $arLocation4Delivery,
		)
	);
}
?>