Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

_SKU_Man_GTIN_Ven.cshtml

@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
}