@model ProductDetailsModel @using SmartStore.Web.Models.Catalog;
@Model.BasePriceInfo
@if (Model.DisplayDeliveryTime && Model.IsShipEnabled) {
@T("Products.DeliveryTime") @if (Model.DisplayDeliveryTimeAccordingToStock) { @Model.DeliveryTimeName } else { @Model.StockAvailability }
}
@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.AllowedQuantities.Count > 0) {
@Html.LabelFor(model => model.AddToCart.EnteredQuantity, new { @class = "qty-label" }) @Html.DropDownListFor(model => model.AddToCart.EnteredQuantity, Model.AddToCart.AllowedQuantities, new { @class = "qty-dropdown" , data_native_menu = "false" })
} else { @Html.LabelFor(model => model.AddToCart.EnteredQuantity, new { @class = "qty-label" }) @Html.TextBoxFor(model => model.AddToCart.EnteredQuantity, new { @class = "qty-input" }) }
if (!Model.AddToCart.DisableBuyButton) {
} if (!Model.AddToCart.DisableWishlistButton) { } } @Html.Widget("mobile_productdetails_add_info")