using System;
using CMS.CMSHelper;
using CMS.Ecommerce;
using CMS.FormControls;
using CMS.GlobalHelper;
using CMS.SettingsProvider;
using CMS.SiteProvider;
public partial class CMSModules_Ecommerce_FormControls_InternalStatusSelector : FormEngineUserControl
{
#region "Variables"
private bool mUseStatusNameForSelection = true;
private bool mAddAllItemsRecord = true;
private bool mAddNoneRecord = false;
private bool mDisplayOnlyEnabled = true;
private bool? mUsingGlobalObjects = null;
private bool? mDisplayGlobalItems = null;
private bool mReflectGlobalProductsUse = false;
private int mSiteId = -1;
private string mAdditionalItems = "";
#endregion
#region "Properties"
///
/// Gets or sets the field value.
///
public override object Value
{
get
{
if (UseStatusNameForSelection)
{
return InternalStatusName;
}
else
{
if (InternalStatusID == 0)
{
return null;
}
return InternalStatusID;
}
}
set
{
if (UseStatusNameForSelection)
{
InternalStatusName = ValidationHelper.GetString(value, "");
}
else
{
InternalStatusID = ValidationHelper.GetInteger(value, 0);
}
}
}
///
/// Gets or sets the InternalStatus ID.
///
public int InternalStatusID
{
get
{
EnsureChildControls();
if (UseStatusNameForSelection)
{
string name = ValidationHelper.GetString(uniSelector.Value, "");
InternalStatusInfo tgi = InternalStatusInfoProvider.GetInternalStatusInfo(name, SiteInfoProvider.GetSiteName(SiteID));
if (tgi != null)
{
return tgi.InternalStatusID;
}
return 0;
}
else
{
return ValidationHelper.GetInteger(uniSelector.Value, 0);
}
}
set
{
EnsureChildControls();
if (UseStatusNameForSelection)
{
InternalStatusInfo tgi = InternalStatusInfoProvider.GetInternalStatusInfo(value);
if (tgi != null)
{
uniSelector.Value = tgi.InternalStatusID;
}
}
else
{
uniSelector.Value = value;
}
}
}
///
/// Gets or sets the InternalStatus code name.
///
public string InternalStatusName
{
get
{
EnsureChildControls();
if (UseStatusNameForSelection)
{
return ValidationHelper.GetString(uniSelector.Value, "");
}
else
{
int id = ValidationHelper.GetInteger(uniSelector.Value, 0);
InternalStatusInfo tgi = InternalStatusInfoProvider.GetInternalStatusInfo(id);
if (tgi != null)
{
return tgi.InternalStatusName;
}
return "";
}
}
set
{
EnsureChildControls();
if (UseStatusNameForSelection)
{
uniSelector.Value = value;
}
else
{
InternalStatusInfo tgi = InternalStatusInfoProvider.GetInternalStatusInfo(value, SiteInfoProvider.GetSiteName(SiteID));
if (tgi != null)
{
uniSelector.Value = tgi.InternalStatusName;
}
}
}
}
///
/// If true, selected value is InternalStatusName, if false, selected value is InternalStatusID.
///
public bool UseStatusNameForSelection
{
get
{
return ValidationHelper.GetBoolean(GetValue("UseStatusNameForSelection"), mUseStatusNameForSelection);
}
set
{
SetValue("UseStatusNameForSelection", value);
mUseStatusNameForSelection = value;
}
}
///
/// Gets or sets the enabled state of the control.
///
public override bool Enabled
{
get
{
return base.Enabled;
}
set
{
EnsureChildControls();
base.Enabled = value;
if (uniSelector != null)
{
uniSelector.Enabled = value;
}
}
}
///
/// Returns ClientID of the dropdownlist.
///
public override string ValueElementID
{
get
{
EnsureChildControls();
return uniSelector.DropDownSingleSelect.ClientID;
}
}
///
/// Allows to display statuses only for specified site id. Use 0 for global statuses. Default value is current site id.
///
public int SiteID
{
get
{
if (mSiteId == -1)
{
mSiteId = CMSContext.CurrentSiteID;
}
return mSiteId;
}
set
{
mSiteId = value;
mUsingGlobalObjects = null;
}
}
///
/// Gets or sets the value which determines, whether to add all item record to the dropdownlist.
///
public bool AddAllItemsRecord
{
get
{
return ValidationHelper.GetBoolean(GetValue("AddAllItemsRecord"), mAddAllItemsRecord);
}
set
{
SetValue("AddAllItemsRecord", value);
mAddAllItemsRecord = value;
}
}
///
/// Gets or sets the value which determines, whether to add none item record to the dropdownlist.
///
public bool AddNoneRecord
{
get
{
return ValidationHelper.GetBoolean(GetValue("AddNoneRecord"), mAddNoneRecord);
}
set
{
SetValue("AddNoneRecord", value);
mAddNoneRecord = value;
}
}
///
/// Allows to display only enabled items. Default value is true.
///
public bool DisplayOnlyEnabled
{
get
{
return ValidationHelper.GetBoolean(GetValue("DisplayOnlyEnabled"), mDisplayOnlyEnabled);
}
set
{
SetValue("DisplayOnlyEnabled", value);
mDisplayOnlyEnabled = value;
}
}
///
/// Id of items which have to be displayed. Use ',' or ';' as separator if more ids required.
///
public string AdditionalItems
{
get
{
return ValidationHelper.GetString(GetValue("AdditionalItems"), mAdditionalItems);
}
set
{
// Prevent from setting null value
if (value != null)
{
mAdditionalItems = value.Replace(';', ',');
}
else
{
mAdditionalItems = "";
}
SetValue("AdditionalItems", mAdditionalItems);
}
}
///
/// Indicates if global items will be displayed. By default, value is based on SiteID property and global objects setting.
///
public bool DisplayGlobalItems
{
get
{
// Unknown yet
if (!mDisplayGlobalItems.HasValue)
{
mDisplayGlobalItems = false;
if ((SiteID == 0) || UsingGlobalObjects || (ReflectGlobalProductsUse && ECommerceSettings.AllowGlobalProducts(CMSContext.CurrentSiteName)))
{
mDisplayGlobalItems = true;
}
}
return mDisplayGlobalItems.Value;
}
set
{
mDisplayGlobalItems = value;
}
}
///
/// Gets or sets a value that indicates if the global items should be displayed when the global products are used on the site.
///
public bool ReflectGlobalProductsUse
{
get
{
return ValidationHelper.GetBoolean(GetValue("ReflectGlobalProductsUse"), mReflectGlobalProductsUse);
}
set
{
SetValue("ReflectGlobalProductsUse", value);
mReflectGlobalProductsUse = value;
}
}
///
/// Returns true if site given by SiteID uses global order statuses.
///
protected bool UsingGlobalObjects
{
get
{
// Unknown yet
if (!mUsingGlobalObjects.HasValue)
{
mUsingGlobalObjects = false;
// Try to figure out from settings
SiteInfo si = SiteInfoProvider.GetSiteInfo(SiteID);
if (si != null)
{
mUsingGlobalObjects = ECommerceSettings.UseGlobalInternalStatus(si.SiteName);
}
}
return mUsingGlobalObjects.Value;
}
}
///
/// Gets or sets the value that indicates if the currently selected item will be available for selection, even if it does not meet the where condition criteria.
///
public bool EnsureSelectedItem
{
get;
set;
}
#endregion
#region "Lifecycle"
protected override void OnLoad(EventArgs e)
{
TryInitByForm();
uniSelector.EnabledColumnName = "InternalStatusEnabled";
uniSelector.IsLiveSite = IsLiveSite;
uniSelector.AllowEmpty = AddNoneRecord;
uniSelector.AllowAll = AddAllItemsRecord;
uniSelector.ReturnColumnName = (UseStatusNameForSelection ? "InternalStatusName" : "InternalStatusID");
SetupWhereCondition();
base.OnLoad(e);
}
protected override void OnPreRender(EventArgs e)
{
if (URLHelper.IsPostback() && DependsOnAnotherField)
{
SetupWhereCondition();
uniSelector.Reload(true);
pnlUpdate.Update();
}
base.OnPreRender(e);
}
#endregion
#region "Methods"
private void TryInitByForm()
{
if (Form == null)
{
return;
}
if (Form.Data.ContainsColumn("SKUSiteID"))
{
SiteID = ValidationHelper.GetInteger(Form.Data.GetValue("SKUSiteID"), 0);
}
if (Form.Data.ContainsColumn("SKUID"))
{
int skuid = ValidationHelper.GetInteger(Form.Data.GetValue("SKUID"), -1);
EnsureSelectedItem = skuid != -1;
}
}
///
/// Creates child controls and loads update panel container if it is required.
///
protected override void CreateChildControls()
{
// If selector is not defined load update panel container
if (uniSelector == null)
{
pnlUpdate.LoadContainer();
}
// Call base method
base.CreateChildControls();
}
///
/// Inits the selector.
///
protected void SetupWhereCondition()
{
SetFormSiteID();
string where = "";
// Select records by speciffied site
if (SiteID >= 0)
{
// Show global records by default
int filteredSiteId = 0;
// Check configuration when site specified
if (SiteID > 0)
{
// Show site specific records when not using global statuses
filteredSiteId = UsingGlobalObjects ? 0 : SiteID;
}
where = "(ISNULL(InternalStatusSiteID, 0) = " + filteredSiteId + ") ";
}
// Append global items if requested
if (DisplayGlobalItems && (!string.IsNullOrEmpty(where)))
{
where = SqlHelperClass.AddWhereCondition(where, "InternalStatusSiteID IS NULL", "OR");
}
// Filter out only enabled items
if (DisplayOnlyEnabled)
{
where = SqlHelperClass.AddWhereCondition(where, "InternalStatusEnabled = 1");
}
// Add items which have to be on the list
string additionalList = SqlHelperClass.GetSafeQueryString(AdditionalItems, false);
if ((!string.IsNullOrEmpty(where)) && (!string.IsNullOrEmpty(additionalList)))
{
where = SqlHelperClass.AddWhereCondition(where, "InternalStatusID IN (" + additionalList + ")", "OR");
}
// Selected item must be on the list
if (EnsureSelectedItem && (!string.IsNullOrEmpty(where)) && (InternalStatusID > 0))
{
where = SqlHelperClass.AddWhereCondition(where, "InternalStatusID = " + InternalStatusID, "OR");
}
// Set where condition
uniSelector.WhereCondition = where;
if (UseStatusNameForSelection)
{
uniSelector.AllRecordValue = "";
uniSelector.NoneRecordValue = "";
}
}
///
/// Sets the SiteID if the SiteName field is available in the form.
///
private void SetFormSiteID()
{
if (DependsOnAnotherField
&& (Form != null)
&& Form.IsFieldAvailable("SiteName"))
{
string siteName = ValidationHelper.GetString(Form.GetFieldValue("SiteName"), null);
if (!String.IsNullOrEmpty(siteName))
{
SiteInfo siteObj = SiteInfoProvider.GetSiteInfo(siteName);
if (siteObj != null)
{
SiteID = siteObj.SiteID;
}
}
else
{
SiteID = -1;
}
}
}
#endregion
}