Skip to content

Commit

Permalink
MAGETWO-83462: Adjustments values were not loaded after the ajax refr…
Browse files Browse the repository at this point in the history
…esh triggered by the "Update Qty's" button #12065
  • Loading branch information
Oleksii Korshenko authored Nov 10, 2017
2 parents 5e00970 + 74a673c commit 8950e3d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<td>
<input type="text"
name="creditmemo[adjustment_positive]"
value="<?= /* @escapeNotVerified */ $_source->getBaseAdjustmentFeePositive()*1 ?>"
value="<?= /* @escapeNotVerified */ $_source->getBaseAdjustmentPositive()*1 ?>"
class="input-text admin__control-text not-negative-amount"
id="adjustment_positive" />
</td>
Expand All @@ -34,7 +34,7 @@
<td>
<input type="text"
name="creditmemo[adjustment_negative]"
value="<?= /* @escapeNotVerified */ $_source->getBaseAdjustmentFeeNegative()*1 ?>"
value="<?= /* @escapeNotVerified */ $_source->getBaseAdjustmentNegative()*1 ?>"
class="input-text admin__control-text not-negative-amount"
id="adjustment_negative"/>
<script>
Expand Down

0 comments on commit 8950e3d

Please sign in to comment.