Skip to content

Commit

Permalink
price matrix problem fixed
Browse files Browse the repository at this point in the history
price matrix problem fixed
  • Loading branch information
BigAndini committed Mar 6, 2015
1 parent 075a87d commit bc77aec
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions module/Admin/view/partial/price-matrix.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
<?php endforeach; ?>
<td>
<?php if(
$price != null &&
$price->getAgegroup() == null &&
$price->getDeadline() == null): ?>
<?php echo $this->currencyFormat($price->getCharge(), 'EUR', null, 'de_DE'); ?>
Expand Down
4 changes: 2 additions & 2 deletions module/PreReg/src/PreReg/Form/PaymentType.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function __construct($name = null)
'class' => 'checkbox-inline',
),
'options' => array(
'label' => 'Choose Paymenttype',
'label' => 'Choose Payment type',
),
));

Expand All @@ -45,7 +45,7 @@ public function __construct($name = null)
'name' => 'submit',
'attributes' => array(
'type' => 'submit',
'value' => 'Save PaymentType',
'value' => 'Save Payment type',
'id' => 'submitbutton',
'class' => 'btn btn-primary btn-lg',
),
Expand Down
2 changes: 1 addition & 1 deletion module/PreReg/view/pre-reg/order/payment.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ echo $this->navigation()
<?php echo $this->formSubmit($form->get('submit')); ?>
</div>
<div>
<h1>Choose Paymenttype</h1>
<h1>Choose Payment type</h1>
<?php foreach($paymenttypes as $paymenttype): ?>
<?php if($order->getPaymentType() != null && $order->getPaymentType()->getId() == $paymenttype->getId()) :
$checked = true;
Expand Down
2 changes: 1 addition & 1 deletion module/PreReg/view/pre-reg/participant/add.phtml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
// module/Album/view/album/album/add.phtml:

$title = 'Add Participant';
$title = 'Add Person';
$this->headTitle($title);
?>
<h1><?php echo $this->escapeHtml($title); ?></h1>
Expand Down
2 changes: 1 addition & 1 deletion module/PreReg/view/pre-reg/participant/delete.phtml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

$title = 'Delete Participant';
$title = 'Delete Person';
$this->headTitle($title);
?>
<h1><?php echo $this->escapeHtml($title); ?></h1>
Expand Down
2 changes: 1 addition & 1 deletion module/PreReg/view/pre-reg/participant/edit.phtml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

$title = 'Edit Participant';
$title = 'Edit Person';
$this->headTitle($title);
?>
<h1><?php echo $this->escapeHtml($title); ?></h1>
Expand Down

0 comments on commit bc77aec

Please sign in to comment.