本文整理汇总了C#中IProductAttributeParser.FindProductAttributeCombination方法的典型用法代码示例。如果您正苦于以下问题:C# IProductAttributeParser.FindProductAttributeCombination方法的具体用法?C# IProductAttributeParser.FindProductAttributeCombination怎么用?C# IProductAttributeParser.FindProductAttributeCombination使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IProductAttributeParser
的用法示例。
在下文中一共展示了IProductAttributeParser.FindProductAttributeCombination方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: FormatStockMessage
/// <summary>
/// Formats the stock availability/quantity message
/// </summary>
/// <param name="product">Product</param>
/// <param name="attributesXml">Selected product attributes in XML format (if specified)</param>
/// <param name="localizationService">Localization service</param>
/// <param name="productAttributeParser">Product attribute parser</param>
/// <returns>The stock message</returns>
public static string FormatStockMessage(this Product product, string attributesXml,
ILocalizationService localizationService, IProductAttributeParser productAttributeParser)
{
if (product == null)
throw new ArgumentNullException("product");
if (localizationService == null)
throw new ArgumentNullException("localizationService");
if (productAttributeParser == null)
throw new ArgumentNullException("productAttributeParser");
string stockMessage = string.Empty;
switch (product.ManageInventoryMethod)
{
case ManageInventoryMethod.ManageStock:
{
#region Manage stock
if (!product.DisplayStockAvailability)
return stockMessage;
var stockQuantity = product.GetTotalStockQuantity();
if (stockQuantity > 0)
{
stockMessage = product.DisplayStockQuantity ?
//display "in stock" with stock quantity
string.Format(localizationService.GetResource("Products.Availability.InStockWithQuantity"), stockQuantity) :
//display "in stock" without stock quantity
localizationService.GetResource("Products.Availability.InStock");
}
else
{
//out of stock
switch (product.BackorderMode)
{
case BackorderMode.NoBackorders:
stockMessage = localizationService.GetResource("Products.Availability.OutOfStock");
break;
case BackorderMode.AllowQtyBelow0:
stockMessage = localizationService.GetResource("Products.Availability.InStock");
break;
case BackorderMode.AllowQtyBelow0AndNotifyCustomer:
stockMessage = localizationService.GetResource("Products.Availability.Backordering");
break;
default:
break;
}
}
#endregion
}
break;
case ManageInventoryMethod.ManageStockByAttributes:
{
#region Manage stock by attributes
if (!product.DisplayStockAvailability)
return stockMessage;
var combination = productAttributeParser.FindProductAttributeCombination(product, attributesXml);
if (combination != null)
{
//combination exists
var stockQuantity = combination.StockQuantity;
if (stockQuantity > 0)
{
stockMessage = product.DisplayStockQuantity ?
//display "in stock" with stock quantity
string.Format(localizationService.GetResource("Products.Availability.InStockWithQuantity"), stockQuantity) :
//display "in stock" without stock quantity
localizationService.GetResource("Products.Availability.InStock");
}
else if (combination.AllowOutOfStockOrders)
{
stockMessage = localizationService.GetResource("Products.Availability.InStock");
}
else
{
stockMessage = localizationService.GetResource("Products.Availability.OutOfStock");
}
}
else
{
//no combination configured
stockMessage = localizationService.GetResource("Products.Availability.InStock");
}
#endregion
}
break;
//.........这里部分代码省略.........
示例2: GetSkuMpnGtin
/// <summary>
/// Gets SKU, Manufacturer part number and GTIN
/// </summary>
/// <param name="product">Product</param>
/// <param name="attributesXml">Attributes in XML format</param>
/// <param name="productAttributeParser">Product attribute service (used when attributes are specified)</param>
/// <param name="sku">SKU</param>
/// <param name="manufacturerPartNumber">Manufacturer part number</param>
/// <param name="gtin">GTIN</param>
private static void GetSkuMpnGtin(this Product product, string attributesXml, IProductAttributeParser productAttributeParser,
out string sku, out string manufacturerPartNumber, out string gtin)
{
if (product == null)
throw new ArgumentNullException("product");
sku = null;
manufacturerPartNumber = null;
gtin = null;
if (!String.IsNullOrEmpty(attributesXml) &&
product.ManageInventoryMethod == ManageInventoryMethod.ManageStockByAttributes)
{
//manage stock by attribute combinations
if (productAttributeParser == null)
throw new ArgumentNullException("productAttributeParser");
//let's find appropriate record
var combination = productAttributeParser.FindProductAttributeCombination(product, attributesXml);
if (combination != null)
{
sku = combination.Sku;
manufacturerPartNumber = combination.ManufacturerPartNumber;
gtin = combination.Gtin;
}
}
if (String.IsNullOrEmpty(sku))
sku = product.Sku;
if (String.IsNullOrEmpty(manufacturerPartNumber))
manufacturerPartNumber = product.ManufacturerPartNumber;
if (String.IsNullOrEmpty(gtin))
gtin = product.Gtin;
}