Dynamicweb.eCommerce.Orders Namespace > OrderLine Class > SetUnitPrice Method : SetUnitPrice(Double) Method |
public class MyDiscountProvider: SalesDiscountProvider { private OrderLine CreateOrderLine(Order order, double price) { ////Negate price *= -1; ////Add a new order line OrderLine line = new OrderLine(); line.Order = order; line.Quantity = 1; line.ProductName = this.DiscountName; line.SetUnitPrice(price); line.ParentLineID = null; line.DiscountID = DiscountID; if (IsProductDiscount) line.Type = Base.ChkString(Base.ChkNumber(OrderLine.OrderLineType.ProductDiscount)); else line.Type = Base.ChkString(Base.ChkNumber(OrderLine.OrderLineType.Discount)); return line; } }
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2