@model GreenTree.Strohrmann.ERP.Web.Models.Business.CraftModel @{ ViewData["Title"] = "Kundendetails"; }

Werksdetails

@Model.Name


Allgemein
@Html.DisplayNameFor(model => model.Id)
@Html.DisplayFor(model => model.Id)
@Html.DisplayNameFor(model => model.Name)
@Html.DisplayFor(model => model.Name)
@Html.DisplayNameFor(model => model.CreationDate)
@Html.DisplayFor(model => model.CreationDate)
@Html.DisplayNameFor(model => model.Customer)
@Html.DisplayFor(model => model.CustomerText)
@Html.DisplayNameFor(model => model.Comment)
@Html.DisplayFor(model => model.Comment)
Arbeitsstunden
@if (Model != null && Model.CraftEmployees != null && Model.CraftEmployees.Count > 0) { @foreach (var item in Model.CraftEmployees) { } } else { Keine Stunden eingetragen }
@Html.DisplayNameFor(model => model.CraftEmployees.First().Value.Employee) @Html.DisplayNameFor(model => model.CraftEmployees.First().Value.Amount) @Html.DisplayNameFor(model => model.CraftEmployees.First().Value.Value) @Html.DisplayNameFor(model => model.CraftEmployees.First().Value.Comment)
@Html.DisplayFor(model => item.Value.Employee.Fullname) @Html.DisplayFor(model => item.Value.Amount) Std. @Html.DisplayFor(model => item.Value.Value) @Html.DisplayFor(model => item.Value.Comment)
Materialien
@if (Model != null && Model.CraftMaterials != null && Model.CraftMaterials.Count > 0) { @foreach (var item in Model.CraftMaterials) { } } else { Keine Materialien verwendet }
@Html.DisplayNameFor(model => model.CraftMaterials.First().Value.Material) @Html.DisplayNameFor(model => model.CraftMaterials.First().Value.Amount) @Html.DisplayNameFor(model => model.CraftMaterials.First().Value.CalculationFactor) @Html.DisplayNameFor(model => model.CraftMaterials.First().Value.Value)
@Html.DisplayFor(model => item.Value.MaterialText) @Html.DisplayFor(model => item.Value.Amount) @Html.DisplayFor(model => item.Value.Material.DefaultUnit.ShortName) @Html.DisplayFor(model => item.Value.CalculationFactorUncalculated) @Html.DisplayFor(model => item.Value.Value)

@Html.ActionLink("Bearbeiten", "Edit", new { id = Model.Id })
Zurück zur Liste
Änderungsinfo