Browse Source

[Backend] Correction formulaire pour créditer

Conservation du commentaire inscrit par le producteur lors de l'enregistrement du CreditHistorique.
master
keun 7 years ago
parent
commit
44350026f5
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      common/models/CreditHistorique.php

+ 6
- 2
common/models/CreditHistorique.php View File



public function save($runValidation = true, $attributeNames = NULL) { public function save($runValidation = true, $attributeNames = NULL) {
// initialisation du commentaire avant sauvegarde // initialisation du commentaire avant sauvegarde
$this->commentaire = $this->getStrCommentaire() ;
$this->commentaire .= $this->getStrCommentaire() ;
parent::save($runValidation, $attributeNames); parent::save($runValidation, $attributeNames);


} }
public function getStrCommentaire() { public function getStrCommentaire() {
$str = $this->getStrLibelle() ;
$str = '' ;
if(strlen($this->commentaire)) {
$str .= '<br />' ;
}
$str .= $this->getStrLibelle() ;
if(isset($this->commande)) { if(isset($this->commande)) {
$str .= '<br />Montant de la commande : '.$this->commande->getMontant(true) ; $str .= '<br />Montant de la commande : '.$this->commande->getMontant(true) ;
} }

Loading…
Cancel
Save