2
0
Derivar 0
Este cometimento está contido em:
Hendrik Schutter 2018-12-08 13:21:14 +01:00
ascendente 5152846478
cometimento 188214dfbe
2 ficheiros modificados com 8 adições e 1 eliminações

Ver ficheiro

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com</groupId>
<artifactId>jFxKasse</artifactId>
<version>0.3.1</version>
<version>0.3.2</version>
<name>jFxKasse</name>
<dependencies>

Ver ficheiro

@ -598,6 +598,7 @@ public class MainWindowController
tapPosEdit.setDisable(false);
btnDeleteSelectedPosition.setDisable(true);
isPrintBtnDisabled = true;
tapJobs.setDisable(false);
setJobPrizeLabel(0);
@ -820,6 +821,7 @@ public class MainWindowController
btnReprintJob.setDisable(true);
btnCancelJob.setDisable(true);
btnDeleteSelectedPosition.setDisable(true);
tapJobs.setDisable(true);
btnOpenFolder.setFocusTraversable(false);
switchSeparate.setFocusTraversable(false);
ueberbtn.setFocusTraversable(false);
@ -830,6 +832,7 @@ public class MainWindowController
initPositionen();
initCurrentOrderTreeTableView();
initJobTreeTableView();
}
public int getSelectedCat()
@ -1406,6 +1409,10 @@ public class MainWindowController
rootJobs.getChildren().add(new TreeItem<tableDataJob>(tmp));
}
if (!dbc.getJobCount().equals("0")) {
tapJobs.setDisable(false);
}
}
public void createNewJob()