15 |
Job
16 |
17 | @Html.ValidationSummary(true, "", new { @class = "text-danger" })
18 |
19 |
38 |
39 |
40 |
47 |
48 |
49 |
56 |
57 |
64 |
65 |
72 |
73 |
80 |
81 |
88 |
89 |
94 |
95 | }
96 |
97 |
11 |
Job
12 |
13 |
14 | -
15 | @Html.DisplayNameFor(model => model.AgentId)
16 |
17 |
18 | -
19 | @Html.DisplayFor(model => model.AgentId)
20 |
21 |
22 | -
23 | @Html.DisplayNameFor(model => model.JobNumber)
24 |
25 |
26 | -
27 | @Html.DisplayFor(model => model.JobNumber)
28 |
29 |
30 | -
31 | @Html.DisplayNameFor(model => model.Title)
32 |
33 |
34 | -
35 | @Html.DisplayFor(model => model.Title)
36 |
37 |
38 | -
39 | @Html.DisplayNameFor(model => model.StartTime)
40 |
41 |
42 | -
43 | @Html.DisplayFor(model => model.StartTime)
44 |
45 |
46 | -
47 | @Html.DisplayNameFor(model => model.EndTime)
48 |
49 |
50 | -
51 | @Html.DisplayFor(model => model.EndTime)
52 |
53 |
54 | -
55 | @Html.DisplayNameFor(model => model.Status)
56 |
57 |
58 | -
59 | @Html.DisplayFor(model => model.Status)
60 |
61 |
62 | -
63 | @Html.DisplayNameFor(model => model.CustomerName)
64 |
65 |
66 | -
67 | @Html.DisplayFor(model => model.CustomerName)
68 |
69 |
70 | -
71 | @Html.DisplayNameFor(model => model.CustomerAddress)
72 |
73 |
74 | -
75 | @Html.DisplayFor(model => model.CustomerAddress)
76 |
77 |
78 | -
79 | @Html.DisplayNameFor(model => model.CustomerPhoneNumber)
80 |
81 |
82 | -
83 | @Html.DisplayFor(model => model.CustomerPhoneNumber)
84 |
85 |
86 | -
87 | @Html.DisplayNameFor(model => model.WorkPerformed)
88 |
89 |
90 | -
91 | @Html.DisplayFor(model => model.WorkPerformed)
92 |
93 |
94 | -
95 | @Html.DisplayNameFor(model => model.Version)
96 |
97 |
98 | -
99 | @Html.DisplayFor(model => model.Version)
100 |
101 |
102 | -
103 | @Html.DisplayNameFor(model => model.CreatedAt)
104 |
105 |
106 | -
107 | @Html.DisplayFor(model => model.CreatedAt)
108 |
109 |
110 | -
111 | @Html.DisplayNameFor(model => model.UpdatedAt)
112 |
113 |
114 | -
115 | @Html.DisplayFor(model => model.UpdatedAt)
116 |
117 |
118 | -
119 | @Html.DisplayNameFor(model => model.Deleted)
120 |
121 |
122 | -
123 | @Html.DisplayFor(model => model.Deleted)
124 |
125 |
126 |
127 |
128 | @using (Html.BeginForm()) {
129 | @Html.AntiForgeryToken()
130 |
131 |
132 | |
133 | @Html.ActionLink("Back to List", "Index")
134 |
135 | }
136 |
137 |
--------------------------------------------------------------------------------
/server/FieldEngineer/Views/Admin/Details.cshtml:
--------------------------------------------------------------------------------
1 | @model FieldEngineerLiteService.DataObjects.Job
2 |
3 | @{
4 | ViewBag.Title = "Details";
5 | }
6 |
7 |
128 | @Html.ActionLink("Edit", "Edit", new { id = Model.Id }) |
129 | @Html.ActionLink("Back to List", "Index")
130 |
131 |
--------------------------------------------------------------------------------
/server/FieldEngineer/Views/Admin/Edit.cshtml:
--------------------------------------------------------------------------------
1 | @model FieldEngineerLiteService.DataObjects.Job
2 |
3 | @{
4 | ViewBag.Title = "Edit";
5 | }
6 |
7 |
15 |
Job
16 |
17 | @Html.ValidationSummary(true, "", new { @class = "text-danger" })
18 | @Html.HiddenFor(model => model.Id)
19 |
20 |
27 |
28 |
35 |
36 |
43 |
44 |
51 |
52 |
59 |
60 |
67 |
68 |
75 |
76 |
83 |
84 |
91 |
92 |
99 |
100 |
107 |
108 |
116 |
117 |
126 |
127 |
132 |
133 | }
134 |
135 |