ソースを参照

[Backend] Documents : correctif problème génération pdf (nom fichier brouillon)

refactoring
Guillaume Bourgeois 2年前
コミット
b79c8ca379
1個のファイルの変更12行の追加1行の削除
  1. +12
    -1
      common/models/Document.php

+ 12
- 1
common/models/Document.php ファイルの表示

@@ -480,7 +480,18 @@ class Document extends ActiveRecordCommon

public function getFilename()
{
return $this->getType() . '-' . $this->reference . '.pdf';
$filename = $this->getType() . '-';

if($this->isStatusValid()) {
$filename .= $this->reference;
}
elseif($this->isStatusDraft()) {
$filename .= 'Brouillon-'.$this->id;
}

$filename .= '.pdf';

return $filename;
}

public function getFilenameComplete()

読み込み中…
キャンセル
保存