OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Rev

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

Rev 19 Rev 57
Line 20... Line 20...
20
import java.util.ArrayList;
20
import java.util.ArrayList;
21
import java.util.List;
21
import java.util.List;
22
 
22
 
23
import javax.swing.JTextField;
23
import javax.swing.JTextField;
24
 
24
 
25
 
-
 
26
public class FichePayeElementSQLElement extends ComptaSQLConfElement {
25
public class FichePayeElementSQLElement extends ComptaSQLConfElement {
27
    public FichePayeElementSQLElement() {
26
    public FichePayeElementSQLElement() {
28
        super("FICHE_PAYE_ELEMENT", "un élément de fiche de paye", "éléments de fiche de paye");
27
        super("FICHE_PAYE_ELEMENT", "un élément de fiche de paye", "éléments de fiche de paye");
29
    }
28
    }
30
 
29
 
Line 73... Line 72...
73
                this.addSQLObject(new JTextField(), "MONTANT_PAT", "right");
72
                this.addSQLObject(new JTextField(), "MONTANT_PAT", "right");
74
 
73
 
75
            }
74
            }
76
        };
75
        };
77
    }
76
    }
-
 
77
 
-
 
78
    @Override
-
 
79
    protected String createCode() {
-
 
80
        return createCodeFromPackage() + ".payslip.item";
-
 
81
    }
78
}
82
}