OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Rev

Rev 142 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 142 Rev 182
Line 1... Line 1...
1
/*
1
/*
2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3
 * 
3
 * 
4
 * Copyright 2011 OpenConcerto, by ILM Informatique. All rights reserved.
4
 * Copyright 2011-2019 OpenConcerto, by ILM Informatique. All rights reserved.
5
 * 
5
 * 
6
 * The contents of this file are subject to the terms of the GNU General Public License Version 3
6
 * The contents of this file are subject to the terms of the GNU General Public License Version 3
7
 * only ("GPL"). You may not use this file except in compliance with the License. You can obtain a
7
 * only ("GPL"). You may not use this file except in compliance with the License. You can obtain a
8
 * copy of the License at http://www.gnu.org/licenses/gpl-3.0.html See the License for the specific
8
 * copy of the License at http://www.gnu.org/licenses/gpl-3.0.html See the License for the specific
9
 * language governing permissions and limitations under the License.
9
 * language governing permissions and limitations under the License.
Line 24... Line 24...
24
import java.awt.GridBagLayout;
24
import java.awt.GridBagLayout;
25
import java.awt.event.ActionEvent;
25
import java.awt.event.ActionEvent;
26
import java.beans.PropertyChangeEvent;
26
import java.beans.PropertyChangeEvent;
27
import java.beans.PropertyChangeListener;
27
import java.beans.PropertyChangeListener;
28
import java.util.Calendar;
28
import java.util.Calendar;
-
 
29
import java.util.Collections;
29
import java.util.concurrent.ExecutionException;
30
import java.util.concurrent.ExecutionException;
30
 
31
 
31
import javax.swing.AbstractAction;
32
import javax.swing.AbstractAction;
32
import javax.swing.JButton;
33
import javax.swing.JButton;
33
import javax.swing.JLabel;
34
import javax.swing.JLabel;
Line 74... Line 75...
74
                        } catch (InterruptedException exn) {
75
                        } catch (InterruptedException exn) {
75
                            exn.printStackTrace();
76
                            exn.printStackTrace();
76
                        } catch (ExecutionException exn) {
77
                        } catch (ExecutionException exn) {
77
                            exn.printStackTrace();
78
                            exn.printStackTrace();
78
                        }
79
                        }
79
                        sheet.showPrintAndExport(true, false, false);
80
                        sheet.showPrintAndExport(true, false, false, Collections.emptyList());
80
 
81
 
81
                    };
82
                    };
82
                }.start();
83
                }.start();
83
 
84
 
84
            }
85
            }