Skip to content

Commit

Permalink
Fix error when payment limit and point use
Browse files Browse the repository at this point in the history
  • Loading branch information
lqdung1992 committed Oct 15, 2018
1 parent 00ef395 commit 151742f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Eccube/Form/Type/Shopping/OrderType.php
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public function buildForm(FormBuilderInterface $builder, array $options)
}

$Payments = $this->getPayments($Deliveries);
$Payments = $this->filterPayments($Payments, $Order->getSubtotal());
$Payments = $this->filterPayments($Payments, $Order->getPaymentTotal());

$form = $event->getForm();
$this->addPaymentForm($form, $Payments);
Expand Down

0 comments on commit 151742f

Please sign in to comment.