OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Rev

Rev 147 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 147 Rev 165
Line 24... Line 24...
24
 
24
 
25
public class CustomerTicketHistorySQLElement extends ModuleElement {
25
public class CustomerTicketHistorySQLElement extends ModuleElement {
26
 
26
 
27
    public CustomerTicketHistorySQLElement(AbstractModule module) {
27
    public CustomerTicketHistorySQLElement(AbstractModule module) {
28
        super(module, Module.TABLE_CUSTOMER_SUPPORT_TICKET_HISTORY);
28
        super(module, Module.TABLE_CUSTOMER_SUPPORT_TICKET_HISTORY);
29
        this.setL18nLocation(CustomerTicketHistorySQLElement.class);
-
 
30
        PredicateRowAction actionAttachment = new PredicateRowAction(new AttachmentAction().getAction(), true);
29
        PredicateRowAction actionAttachment = new PredicateRowAction(new AttachmentAction().getAction(), true);
31
        actionAttachment.setPredicate(IListeEvent.getSingleSelectionPredicate());
30
        actionAttachment.setPredicate(IListeEvent.getSingleSelectionPredicate());
32
        getRowActions().add(actionAttachment);
31
        getRowActions().add(actionAttachment);
33
    }
32
    }
34
 
33