104 lines
3.5 KiB
Java
104 lines
3.5 KiB
Java
/*
|
|
* MIT License
|
|
*
|
|
* Copyright (c) 2018-2019 Daniel Cortes
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
package danielcortes.xyz;
|
|
|
|
import danielcortes.xyz.controllers.BaseLayoutController;
|
|
import danielcortes.xyz.data.Configuration;
|
|
import danielcortes.xyz.data.DAOManager;
|
|
import danielcortes.xyz.informes.InformeEstadoResultado;
|
|
import danielcortes.xyz.views.BaseLayout;
|
|
|
|
import javax.swing.*;
|
|
import java.io.File;
|
|
import java.io.FileInputStream;
|
|
import java.io.IOException;
|
|
import java.time.YearMonth;
|
|
import java.util.Locale;
|
|
import java.util.logging.LogManager;
|
|
|
|
public class Main {
|
|
private static final int DATABASE_VERSION = 2;
|
|
static {
|
|
setUpLogger();
|
|
setUpSystemProperties();
|
|
updateDatabase();
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
generarInforme();
|
|
}
|
|
|
|
public static void generarInforme(){
|
|
File file = new File(Configuration.get("base_save_directory") + "test.xls");
|
|
new InformeEstadoResultado(YearMonth.of(2019,2), file.toPath()).generarInforme();
|
|
}
|
|
|
|
private static void run() {
|
|
BaseLayout view = new BaseLayout();
|
|
BaseLayoutController controller = new BaseLayoutController(view);
|
|
executeView(view.getContentPanel());
|
|
}
|
|
|
|
private static void updateDatabase(){
|
|
DAOManager.getVersionDAO().updateTo(DATABASE_VERSION);
|
|
}
|
|
|
|
private static void executeView(JComponent view) {
|
|
JFrame frame = new JFrame(Configuration.get("nombre_caja"));
|
|
frame.setContentPane(view);
|
|
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
|
|
|
frame.pack();
|
|
frame.setLocationRelativeTo(null);
|
|
frame.setVisible(true);
|
|
}
|
|
|
|
private static void setUpSystemProperties() {
|
|
System.setProperty("awt.useSystemAAFontSettings", "on");
|
|
System.setProperty("swing.aatext", "true");
|
|
|
|
try {
|
|
UIManager.setLookAndFeel(Configuration.get("look_and_feel"));
|
|
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException e) {
|
|
e.printStackTrace();
|
|
}
|
|
|
|
Locale.setDefault(new Locale("es"));
|
|
}
|
|
|
|
private static void setUpLogger() {
|
|
LogManager manager = LogManager.getLogManager();
|
|
try {
|
|
FileInputStream in = new FileInputStream("config/logging.properties");
|
|
manager.readConfiguration(in);
|
|
in.close();
|
|
} catch (IOException e) {
|
|
System.exit(1);
|
|
}
|
|
|
|
|
|
}
|
|
}
|