Parcourir la source

Merge branch 'dev'

master
Guillaume il y a 4 ans
Parent
révision
a8874b3a04
1 fichiers modifiés avec 20 ajouts et 12 suppressions
  1. +20
    -12
      common/models/Order.php

+ 20
- 12
common/models/Order.php Voir le fichier

@@ -603,21 +603,29 @@ class Order extends ActiveRecordCommon
{
$html = '';

$html .= $this->getAmountWithTax(self::AMOUNT_TOTAL, true) . '<br />';

if ($this->paid_amount) {
if ($this->getPaymentStatus() == Order::PAYMENT_PAID) {
$html .= '<span class="label label-success">Payée</span>';
} elseif ($this->getPaymentStatus() == Order::PAYMENT_UNPAID) {
$html .= '<span class="label label-danger">Non payée</span><br />
Reste <strong>' . $this->getAmount(Order::AMOUNT_REMAINING, true) . '</strong> à payer';
} elseif ($this->getPaymentStatus() == Order::PAYMENT_SURPLUS) {
$html .= '<span class="label label-success">Payée</span>';
$creditActive = Producer::getConfig('credit') ;
$html .= $this->getAmountWithTax(self::AMOUNT_TOTAL, true) ;

if($creditActive) {
$html .= '<br />' ;
if ($this->paid_amount) {
if ($this->getPaymentStatus() == Order::PAYMENT_PAID) {
$html .= '<span class="label label-success">Payée</span>';
}
elseif ($this->getPaymentStatus() == Order::PAYMENT_UNPAID) {
$html .= '<span class="label label-danger">Non payée</span><br />
Reste <strong>' . $this->getAmount(Order::AMOUNT_REMAINING, true) . '</strong> à payer';
}
elseif ($this->getPaymentStatus() == Order::PAYMENT_SURPLUS) {
$html .= '<span class="label label-success">Payée</span>';
}
}
else {
$html .= '<span class="label label-default">Non réglé</span>';
}
} else {
$html .= '<span class="label label-default">Non réglé</span>';
}


return $html;
}


Chargement…
Annuler
Enregistrer