You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
908 B
39 lines
908 B
4 years ago
|
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<IEnumerable<QMAPP.FJC.Entity.Operation.Product>>" %>
|
||
|
<table class="PartList">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>
|
||
|
零件条码
|
||
|
</th>
|
||
|
<th>
|
||
|
物料号
|
||
|
</th>
|
||
|
<th>
|
||
|
物料名称
|
||
|
</th>
|
||
|
<th>
|
||
|
生产时间
|
||
|
</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
<%foreach (var part in Model.OrderByDescending(p => p.CREATEDATE))
|
||
|
{ %>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<%=part.PRODUCTCODE %>
|
||
|
</td>
|
||
|
<td>
|
||
|
<%=part.MATERIAL_CODE %>
|
||
|
</td>
|
||
|
<td>
|
||
|
<%=part.MATERIAL_NAME %>
|
||
|
</td>
|
||
|
<td>
|
||
|
<%=part.CREATEDATE %>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<%} %>
|
||
|
</tbody>
|
||
|
</table>
|