Skip to content

Commit

Permalink
Test fonctionnel "file does not exist" #1357
Browse files Browse the repository at this point in the history
  • Loading branch information
stakovicz committed Nov 23, 2023
1 parent 886c8df commit 1c356bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/Afup/Comptabilite/Facture.php
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ function genererNumeroFacture()
$requete .= 'WHERE';
$requete .= ' LEFT(numero_facture, 4)=' . $this->_bdd->echapper(date('Y'));
$index = $this->_bdd->obtenirUn($requete);
return dump(date('Y') . '-' . (is_null($index) ? 1 : $index));
return date('Y') . '-' . (is_null($index) ? 1 : $index);
}

function genererNumeroDevis()
Expand Down

0 comments on commit 1c356bb

Please sign in to comment.