Agregado promedio ventas mensual segun dias trabajados

This commit is contained in:
Daniel Cortés
2019-06-21 01:49:22 -04:00
parent 6404a9fa9a
commit 1f14bd3673
10 changed files with 394 additions and 370 deletions

View File

@@ -12,8 +12,8 @@ import javax.swing.UnsupportedLookAndFeelException;
public class Main {
private static final int DATABASE_VERSION = 3;
private static final String VERSION = "1.0";
private static final int DATABASE_VERSION = 4;
private static final String VERSION = "1.1";
static {
setUpSystemProperties();
@@ -25,6 +25,8 @@ public class Main {
System.out.println("--------------------------------------------------------------------------------");
System.out.println("Software version: " + VERSION);
System.out.println("Database version: " + DATABASE_VERSION);
System.out.println("Last Update Message: ");
System.out.println("Agregado promedio de ventas en el mes en estado resultado");
System.out.println("--------------------------------------------------------------------------------");
run();
}