Explorar el Código

[backend] Référence documents : correction bug génération référence

dev
Guillaume Bourgeois hace 4 años
padre
commit
a3498b06b0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      common/models/Document.php

+ 1
- 1
common/models/Document.php Ver fichero

@@ -193,7 +193,7 @@ class Document extends ActiveRecordCommon
}

$prefix = Producer::getConfig('document_' . $classLower . '_prefix');
$oneDocumentExist = $class::searchOne([], ['orderby' => 'reference DESC']);
$oneDocumentExist = $class::searchOne(['status' => Document::STATUS_VALID] , ['orderby' => 'reference DESC']);

if ($oneDocumentExist) {
$reference = $oneDocumentExist->reference;

Cargando…
Cancelar
Guardar