OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Compare Revisions

Regard whitespace Rev 155 → Rev 156

/trunk/OpenConcerto/src/org/openconcerto/erp/core/humanresources/payroll/element/SalarieSQLElement.java
225,6 → 225,13
scrollReglPaye.setBorder(null);
this.tabbedPane.add("Règlement", scrollReglPaye);
 
// Pas
this.addView("ID_PAS", REQ + ";" + DEC + ";" + SEP);
ElementSQLObject eltPas = (ElementSQLObject) this.getView("ID_PAS");
JScrollPane scrollPas = new JScrollPane(eltPas);
scrollPas.setBorder(null);
this.tabbedPane.add("PAS", scrollPas);
 
// Infos salarie-paye
this.addView("ID_INFOS_SALARIE_PAYE", REQ + ";" + DEC + ";" + SEP);
ElementSQLObject eltInfosPaye = (ElementSQLObject) this.getView("ID_INFOS_SALARIE_PAYE");
388,6 → 395,6
 
@Override
protected String createCode() {
return createCodeFromPackage() + ".employe";
return createCodeOfPackage() + ".employe";
}
}