Projet

Général

Profil

0001-lingo-add-test-value-for-ROLMRE-16871.patch

Benjamin Dauvergne, 10 octobre 2020 11:36

Télécharger (986 octets)

Voir les différences:

Subject: [PATCH] lingo: add test value for ROLMRE (#16871)

 combo/apps/lingo/static/js/tipi.js | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
combo/apps/lingo/static/js/tipi.js
65 65

  
66 66
            if (saisie == 'T') {
67 67
                // in test mode the refdet should be 999900000000999999
68
                return "999900000000999999";
68
                if (pesv2) {
69
                    return "999900000000999999";
70
                } else { // ROLMRE
71
                    return "2014AZ000000000005678";
72
                }
69 73
            } else {
70 74
                return exer + refdet;
71 75
            }
72
-