Skip to content

Commit

Permalink
Fix : ajout cas dans récupération notices simulation si la deuxième v…
Browse files Browse the repository at this point in the history
…aleur du tableau est vide
  • Loading branch information
pierre-maraval committed Feb 1, 2023
1 parent 1de35d4 commit 40ae1b4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/simulationExemp.vue
Original file line number Diff line number Diff line change
Expand Up @@ -356,13 +356,19 @@ export default {
}).then(
(result) => {
this.numeroPPNNotice = result.data[0];
console.log("first" + result.data[1]);
console.log("second" + result.data[2]);
if (result.data[1] === '' || result.data[1] === '\r\n') {
this.noticeAvant = 'Il n\'y a pas d\'exemplaires\n'
+ 'déjà existants pour cette\nnotice sur ce RCR.';
} else {
this.noticeAvant = result.data[1].replaceAll('\u001F', '').replaceAll('\u001E', ''); // Exemplaires existants
}
this.noticeApres = result.data[2].replaceAll('\u001F', '').replaceAll('\u001E', ''); // Exemplaires à créer
if (result.data[2] !== undefined) {
this.noticeApres = result.data[2].replaceAll('\u001F', '').replaceAll('\u001E', ''); // Exemplaires à créer
} else {
this.noticeApres = 'Simulation impossible. Voir message ci-dessus.';
}
// TODO corriger en back pour avoir un retour vide ou nul
if (result.data[1] !== '\r\n') {
Expand Down

0 comments on commit 40ae1b4

Please sign in to comment.