This commit is contained in:
sardq 2024-05-30 00:58:30 +04:00
parent 2dc771cdb5
commit 909c005f88

View File

@ -37,7 +37,7 @@
<thead>
<tr>
<th>План производства</th>
<th>Изделие</th>
<th>Изделие - Цена</th>
</tr>
</thead>
<tbody>
@ -49,7 +49,7 @@
<ul>
@foreach (var plan in planProduction.Products)
{
<li>@plan.ProductName</li>
<li>@plan.ProductName - @plan.Price</li>
}
</ul>
</td>