Skip to content

Commit

Permalink
[FIX] PAYROLL: Fixed the amount issue in bonus encahment list view wh…
Browse files Browse the repository at this point in the history
…ile approving
  • Loading branch information
horilla-opensource committed Jan 3, 2025
1 parent f530c34 commit 53728e1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,8 @@ <h5 class="oh-404__subtitle">
>
<input type="hidden" name="ids" value="{{ req.id }}" />
<input type="hidden" name="status" />
<input type="hidden" name="amount" default="0" min="0" />
<input type="hidden" name="amount" default="0" min="0" {% if req.status == "approved" %}disabled{% endif %} {% if req.amount %}
value="{{req.amount}}"{% endif %}/>
<div class="oh-btn-group" onclick="event.stopPropagation()">
{% if req.status == 'requested' %}
<button
Expand Down

0 comments on commit 53728e1

Please sign in to comment.