-
Notifications
You must be signed in to change notification settings - Fork 0
/
DailySalesReport.fxml
47 lines (45 loc) · 2.24 KB
/
DailySalesReport.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
43
44
45
46
47
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.DatePicker?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.text.Font?>
<AnchorPane id="AnchorPane" prefHeight="340.0" prefWidth="782.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="257.0" layoutY="14.0" prefHeight="62.0" prefWidth="235.0" text="Daily Sales Activity">
<font>
<Font name="System Bold Italic" size="24.0" />
</font>
</Label>
<Label layoutX="128.0" layoutY="106.0" text="Select Date:">
<font>
<Font name="System Bold" size="18.0" />
</font>
</Label>
<Label layoutX="110.0" layoutY="150.0" prefHeight="27.0" prefWidth="135.0" text="Sales Volume:">
<font>
<Font name="System Bold" size="18.0" />
</font>
</Label>
<Label layoutX="145.0" layoutY="231.0" text="Revenue:">
<font>
<Font name="System Bold" size="18.0" />
</font>
</Label>
<DatePicker fx:id="mydatePicker" layoutX="257.0" layoutY="104.0" onAction="#selectDate" />
<TextField fx:id="salesVolumeTextField" layoutX="257.0" layoutY="148.0" prefHeight="31.0" prefWidth="218.0" />
<Button fx:id="submitButton" layoutX="637.0" layoutY="273.0" mnemonicParsing="false" onAction="#submitButtonOnClick" prefHeight="53.0" prefWidth="131.0" style="-fx-background-color: black;" text="Submit" textFill="#fcfcfc">
<font>
<Font name="System Bold" size="18.0" />
</font>
</Button>
<Label layoutX="76.0" layoutY="189.0" prefHeight="27.0" prefWidth="152.0" text="Expense Amount:">
<font>
<Font name="System Bold" size="18.0" />
</font>
</Label>
<TextField fx:id="expenseamountTextField" layoutX="257.0" layoutY="187.0" prefHeight="31.0" prefWidth="218.0" />
<TextField fx:id="revenueTextField" layoutX="257.0" layoutY="229.0" prefHeight="31.0" prefWidth="218.0" />
</children>
</AnchorPane>