Skip to content

Commit

Permalink
Work in support of #441.
Browse files Browse the repository at this point in the history
  • Loading branch information
uncheckederror committed Apr 15, 2024
1 parent bac38c4 commit 5fc597c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions NumberSearch.Ops/Views/Orders/Quotes.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<th>
Products Ordered
</th>
<th>Notes</th>
</tr>
</thead>
<tbody>
Expand Down Expand Up @@ -219,12 +220,19 @@
</ul>
}
}
</td>
<td>
@{
if (!string.IsNullOrWhiteSpace(order?.Order?.CustomerNotes))
{
<strong>Customer Notes</strong>
<p class="text-break">@order.Order.CustomerNotes</p>
}
if (!string.IsNullOrWhiteSpace(order?.Order?.InternalNotes))
{
<strong>Internal Notes</strong>
<p class="text-break">@order.Order.InternalNotes</p>
}
}
</td>
</tr>
Expand Down

0 comments on commit 5fc597c

Please sign in to comment.