소스 검색

[Backend] Correction formulaire pour créditer

Conservation du commentaire inscrit par le producteur lors de l'enregistrement du CreditHistorique.
prodstable
keun 6 년 전
부모
커밋
44350026f5
1개의 변경된 파일6개의 추가작업 그리고 2개의 파일을 삭제
  1. +6
    -2
      common/models/CreditHistorique.php

+ 6
- 2
common/models/CreditHistorique.php 파일 보기

@@ -98,7 +98,7 @@ class CreditHistorique extends ActiveRecord {

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

@@ -172,7 +172,11 @@ class CreditHistorique extends ActiveRecord {
}
public function getStrCommentaire() {
$str = $this->getStrLibelle() ;
$str = '' ;
if(strlen($this->commentaire)) {
$str .= '<br />' ;
}
$str .= $this->getStrLibelle() ;
if(isset($this->commande)) {
$str .= '<br />Montant de la commande : '.$this->commande->getMontant(true) ;
}

Loading…
취소
저장