OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Compare Revisions

Regard whitespace Rev 27 → Rev 28

/trunk/OpenConcerto/src/org/openconcerto/erp/core/humanresources/payroll/element/SalarieSQLElement.java
34,6 → 34,7
import java.awt.GridBagLayout;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
 
import javax.swing.BorderFactory;
243,7 → 244,7
comboTitre.setButtonsVisible(false);
DefaultGridBagConstraints.lockMinimumSize(comboTitre);
 
this.textCode.setText(NumerotationAutoSQLElement.getNextNumero(SalarieSQLElement.class));
this.textCode.setText(NumerotationAutoSQLElement.getNextNumero(SalarieSQLElement.class, new Date()));
}
 
@Override
309,7 → 310,7
}
 
// incrémentation du numéro auto
if (NumerotationAutoSQLElement.getNextNumero(SalarieSQLElement.class).equalsIgnoreCase(this.textCode.getText().trim())) {
if (NumerotationAutoSQLElement.getNextNumero(SalarieSQLElement.class, new Date()).equalsIgnoreCase(this.textCode.getText().trim())) {
SQLRowValues rowValsNum = new SQLRowValues(this.tableNum);
int val = this.tableNum.getRow(2).getInt("SALARIE_START");
val++;