Skip to content

Commit

Permalink
Show the doc num on the details page
Browse files Browse the repository at this point in the history
  • Loading branch information
jSylvestre committed Dec 28, 2023
1 parent 8af9709 commit 0b9897c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Sloth.Web/Views/Transactions/_AeDetails.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@
<span>@Model.Transaction.KfsTrackingNumber</span>
</div>
</div>
<div class="txn-detail-row">
<div class="txn-detail-label">
<span>@Html.DisplayNameFor(x => x.Transaction.DocumentNumber)</span>
</div>
<div class="txn-detail-result">
<span>@Model.Transaction.DocumentNumber</span>
</div>
</div>
@if (Model.Transaction.JournalRequest != null)
{
<div class="txn-detail-row">
Expand Down
8 changes: 8 additions & 0 deletions Sloth.Web/Views/Transactions/_AeEditDetails.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@
<span>@Model.Transaction.KfsTrackingNumber</span>
</div>
</div>
<div class="txn-detail-row">
<div class="txn-detail-label">
<span>@Html.DisplayNameFor(x => x.Transaction.DocumentNumber)</span>
</div>
<div class="txn-detail-result">
<span>@Model.Transaction.DocumentNumber</span>
</div>
</div>
@if (Model.Transaction.JournalRequest != null)
{
<div class="txn-detail-row">
Expand Down

0 comments on commit 0b9897c

Please sign in to comment.