OpenConcerto

Dépôt officiel du code source de l'ERP OpenConcerto
sonarqube

svn://code.openconcerto.org/openconcerto

Rev

Rev 177 | Rev 182 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 177 Rev 180
Line 383... Line 383...
383
                // sqlRowValues.putRowValues("ID_STOCK").commit();
383
                // sqlRowValues.putRowValues("ID_STOCK").commit();
384
                // }
384
                // }
385
            } else {
385
            } else {
386
                boolean contains = false;
386
                boolean contains = false;
387
                for (SQLRowValues sqlRowValues2 : referentRows) {
387
                for (SQLRowValues sqlRowValues2 : referentRows) {
388
                    if (!sqlRowValues2.isForeignEmpty("ID_ARTICLE") && sqlRowValues2.getForeign("ID_ARTICLE") != null && sqlRowValues2.getForeign("ID_ARTICLE").getString("CODE") != null) {
388
                    if (sqlRowValues2.getForeign("ID_ARTICLE") != null && !sqlRowValues2.isForeignEmpty("ID_ARTICLE") && sqlRowValues2.getForeign("ID_ARTICLE").getString("CODE") != null) {
389
                        if (codeKits.contains(sqlRowValues2.getForeign("ID_ARTICLE").getString("CODE"))) {
389
                        if (codeKits.contains(sqlRowValues2.getForeign("ID_ARTICLE").getString("CODE"))) {
390
                            contains = true;
390
                            contains = true;
391
                            break;
391
                            break;
392
                        }
392
                        }
393
                    }
393
                    }