-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSalesReport.fxml
42 lines (40 loc) · 2 KB
/
SalesReport.fxml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.RadioButton?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.text.Font?>
<AnchorPane id="AnchorPane" prefHeight="434.0" prefWidth="777.0" style="-fx-background-color: skyblue;" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="pranFood.PreparePeriodicReportsController">
<children>
<Label layoutX="310.0" layoutY="14.0" prefHeight="62.0" prefWidth="186.0" text="Sales Report">
<font>
<Font name="System Bold Italic" size="30.0" />
</font>
</Label>
<Label layoutX="127.0" layoutY="127.0" text="Select Type: ">
<font>
<Font name="System Bold" size="24.0" />
</font>
</Label>
<RadioButton fx:id="dailysalesReportRadioButton" layoutX="247.0" layoutY="187.0" mnemonicParsing="false" onAction="#setdailysetvalue" text="Daily Sales Report">
<font>
<Font name="System Bold" size="18.0" />
</font>
</RadioButton>
<RadioButton fx:id="weeklysalesReportRadioButton" layoutX="247.0" layoutY="224.0" mnemonicParsing="false" onAction="#setweeklysetvalue" text="Weekly Sales Report">
<font>
<Font name="System Bold" size="18.0" />
</font>
</RadioButton>
<RadioButton fx:id="MonthlysalesreportRedioButton" layoutX="247.0" layoutY="263.0" mnemonicParsing="false" onAction="#setMonthlySalesReport" text="Monthly Sales Report">
<font>
<Font name="System Bold" size="18.0" />
</font>
</RadioButton>
<Button fx:id="nuxtButton" layoutX="619.0" layoutY="355.0" mnemonicParsing="false" onAction="#nuxtButtonOnClick" prefHeight="53.0" prefWidth="131.0" style="-fx-background-color: black;" text="Next" textFill="#fcfcfc">
<font>
<Font name="System Bold" size="18.0" />
</font>
</Button>
</children>
</AnchorPane>