@if (Model.AddToCart.CustomerEntersPrice)
{
@Html.LabelFor(model => model.AddToCart.CustomerEnteredPrice, new { @class = "enter-price-label" })
@*round price*@
@Html.TextBox("CustomerEnteredPrice", Convert.ToInt32(Math.Ceiling(Model.AddToCart.CustomerEnteredPrice)), new { @class = "enter-price-input" })
@Model.AddToCart.CustomerEnteredPriceRange
}
@if (!Model.AddToCart.DisableBuyButton || !Model.AddToCart.DisableWishlistButton)
{
if (!Model.AddToCart.DisableBuyButton)
{
}
if (!Model.AddToCart.DisableWishlistButton)
{
}
}
@Html.Widget("mobile_productdetails_add_info")