Try your search with a different keyword or use * as a wildcard.
@model ProductDetailsModel
@using Nop.Core.Domain.Catalog
@using Nop.Core.Domain.Vendors
@*SKU*@
@if ((!string.IsNullOrWhiteSpace(Model.Sku) || Model.ManageInventoryMethod == ManageInventoryMethod.ManageStockByAttributes) && Model.ShowSku)
{
@T("Products.Sku"):
@Model.Sku
}
@*Manufacturer part number*@
@if ((!string.IsNullOrWhiteSpace(Model.ManufacturerPartNumber) || Model.ManageInventoryMethod == ManageInventoryMethod.ManageStockByAttributes) && Model.ShowManufacturerPartNumber)
{
@T("Products.ManufacturerPartNumber"):
@Model.ManufacturerPartNumber
}
@*GTIN*@
@if ((!string.IsNullOrWhiteSpace(Model.Gtin) || Model.ManageInventoryMethod == ManageInventoryMethod.ManageStockByAttributes) && Model.ShowGtin)
{
@T("Products.GTIN"):
@Model.Gtin
}
@*Vendor*@
@if (Model.ShowVendor)
{
@T("Products.Vendor"):
@Model.VendorModel.Name
}