+@*
+
+ |
+ *@
+ @item.ProductName
+ @if (!string.IsNullOrEmpty(item.AttributeInfo))
+ {
+
+ @Html.Raw(item.AttributeInfo)
+
+ }
+ @if (!string.IsNullOrEmpty(item.RecurringInfo))
+ {
+
+ @Html.Raw(item.RecurringInfo)
+
+ }
+ @if (!string.IsNullOrEmpty(item.RentalInfo))
+ {
+
+ @Html.Raw(item.RentalInfo)
+
+ }
+ @if (!string.IsNullOrEmpty(item.Sku))
+ {
+
+ @T("Admin.Orders.Products.SKU"):
+ @item.Sku
+
+ }
+ @if (!string.IsNullOrEmpty(item.VendorName))
+ {
+
+ @T("Admin.Orders.Products.Vendor"):
+ @item.VendorName
+
+ }
+ @if (item.ReturnRequests.Count > 0)
+ {
+
+ @T("Admin.Orders.Products.ReturnRequests"):
+ @for (var i = 0; i < item.ReturnRequests.Count; i++)
+ {
+ var returnRequest = item.ReturnRequests[i];
+ @returnRequest.CustomNumber
+ if (i != item.ReturnRequests.Count - 1)
+ {
+ ,
+ }
+ }
+
+ }
+ |
+ @if (Model.HasDownloadableProducts)
+ {
+
+ @if (item.IsDownload)
+ {
+
+ @T("Admin.Orders.Products.Download.Download")
+
+
+ }
+ else
+ {
+ @T("Admin.Orders.Products.Download.NotAvailable")
+ }
+ |
+ }
+
+ @if (Model.AllowCustomersToSelectTaxDisplayType)
+ {
+ @Html.Raw(item.UnitPriceInclTax)
+ @Html.Raw(item.UnitPriceExclTax)
+ }
+ else
+ {
+ switch (Model.TaxDisplayType)
+ {
+ case TaxDisplayType.ExcludingTax:
+ {
+ @Html.Raw(item.UnitPriceExclTax)
+ }
+ break;
+ case TaxDisplayType.IncludingTax:
+ {
+ @Html.Raw(item.UnitPriceInclTax)
+ }
+ break;
+ default:
+ break;
+ }
+ }
+
*@
- |
-
-
-
- |
+
-
- @($"{item.ProductStockQuantity}{(item.ProductIncomingQuantity > 0 ? " (+"+item.ProductIncomingQuantity + ")" : string.Empty)}")
- |
+
+ @(item.Quantity) kt.
+
+ |
-
- @item.Quantity
-
- |
-
-
- @* @item.NetWeight *@
-
- |
+
+
+ @($"{item.ProductStockQuantity} kt.")@($"{(item.ProductIncomingQuantity > 0 ? " (+" + item.ProductIncomingQuantity + ")" : string.Empty)}")
+
+ |
- @*
+ |
+ @(item.NetWeight) kg.
+
+ |
+
+
+ @if(item.IsMeasurable)
+ {
+ Yes
+ }
+ else
+ {
+ No
+ }
+
+ |
+
+ @*
@if (Model.AllowCustomersToSelectTaxDisplayType)
{
@Html.Raw(item.DiscountInclTax)
@@ -340,40 +357,41 @@
| *@
-
- @if (Model.AllowCustomersToSelectTaxDisplayType)
- {
- @Html.Raw(item.SubTotalInclTax)
- @Html.Raw(item.SubTotalExclTax)
- }
- else
- {
- switch (Model.TaxDisplayType)
- {
- case TaxDisplayType.ExcludingTax:
- {
- @Html.Raw(item.SubTotalExclTax)
- }
- break;
- case TaxDisplayType.IncludingTax:
- {
- @Html.Raw(item.SubTotalInclTax)
- }
- break;
- default:
- break;
- }
- }
- |
- }
-