Skip to content

Commit 96be22a

Browse files
kestralycolinmollenhour
authored andcommitted
Credit Memo Adjustment Fix (#577)
There is no field or column named `base_adjustment_fee_positive` anywhere in Magento code.
1 parent b3cabc2 commit 96be22a

File tree

1 file changed

+2
-2
lines changed
  • app/design/adminhtml/default/default/template/sales/order/creditmemo/create/totals

1 file changed

+2
-2
lines changed

app/design/adminhtml/default/default/template/sales/order/creditmemo/create/totals/adjustments.phtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@
3535
</tr>
3636
<tr>
3737
<td class="label"><?php echo $this->helper('sales')->__('Adjustment Refund') ?></td>
38-
<td><input type="text" name="creditmemo[adjustment_positive]" value="<?php echo $_source->getBaseAdjustmentFeePositive()*1 ?>" class="input-text not-negative-amount" style="width:60px;text-align:right" id="adjustment_positive" /></td>
38+
<td><input type="text" name="creditmemo[adjustment_positive]" value="<?php echo $_source->getBaseAdjustmentPositive()*1 ?>" class="input-text not-negative-amount" style="width:60px;text-align:right" id="adjustment_positive" /></td>
3939
</tr>
4040
<tr>
4141
<td colspan="2"><div id="adjustment_positive_adv"></div></td>
4242
</tr>
4343
<tr>
4444
<td class="label"><?php echo $this->helper('sales')->__('Adjustment Fee') ?></td>
45-
<td><input type="text" name="creditmemo[adjustment_negative]" value="<?php echo $_source->getBaseAdjustmentFeeNegative()*1 ?>" class="input-text not-negative-amount" style="width:60px;text-align:right" id="adjustment_negative"/></td>
45+
<td><input type="text" name="creditmemo[adjustment_negative]" value="<?php echo $_source->getBaseAdjustmentNegative()*1 ?>" class="input-text not-negative-amount" style="width:60px;text-align:right" id="adjustment_negative"/></td>
4646
</tr>
4747
<tr>
4848
<td colspan="2"><div id="adjustment_negative_adv"></div></td>

0 commit comments

Comments
 (0)