-
Notifications
You must be signed in to change notification settings - Fork 0
/
SalesManagerAnalysisAndCreateReport.fxml
85 lines (83 loc) · 5.05 KB
/
SalesManagerAnalysisAndCreateReport.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.RadioButton?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.BorderPane?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.text.Font?>
<BorderPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="583.0" prefWidth="756.0" style="-fx-background-color: skyblue;" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="pranFood.FoodProductionManagerDashboardController">
<left>
<VBox alignment="TOP_CENTER" prefHeight="551.0" prefWidth="189.0" style="-fx-background-color: red;" BorderPane.alignment="TOP_CENTER">
<children>
<Button fx:id="dailyOperationsButton" layoutX="12.0" layoutY="138.0" mnemonicParsing="false" onAction="#dailyOperationsButtonOnClick" prefHeight="31.0" prefWidth="182.0" style="-fx-background-color: skyblue;" text="Daily Operations">
<VBox.margin>
<Insets bottom="5.0" top="5.0" />
</VBox.margin>
</Button>
<Button fx:id="analysisandCreateReportButton" mnemonicParsing="false" onAction="#analysisandCreateReportButtonOnClick" prefHeight="31.0" prefWidth="182.0" style="-fx-background-color: skyblue;" text="Analysis & Create Report">
<VBox.margin>
<Insets bottom="5.0" />
</VBox.margin>
</Button>
<Button fx:id="determineprivescheduleButton" layoutX="10.0" layoutY="10.0" mnemonicParsing="false" onAction="#determineprivescheduleButtonOnClick" prefHeight="31.0" prefWidth="179.0" style="-fx-background-color: skyblue;" text="Determine Price Schedule">
<VBox.margin>
<Insets bottom="5.0" />
</VBox.margin>
</Button>
<Button fx:id="generatesleadsamongSRButton" layoutX="10.0" layoutY="41.0" mnemonicParsing="false" onAction="#generatesleadsamongSRButtonOnClick" prefHeight="31.0" prefWidth="180.0" style="-fx-background-color: skyblue;" text="Generate leads Among SR">
<VBox.margin>
<Insets bottom="5.0" />
</VBox.margin>
</Button>
<Button fx:id="allocatesalesactivitiesButton" layoutX="10.0" layoutY="72.0" mnemonicParsing="false" onAction="#allocatesalesactivitiesButtononclick" prefHeight="31.0" prefWidth="183.0" style="-fx-background-color: skyblue;" text="Allocate sales activities">
<VBox.margin>
<Insets bottom="5.0" />
</VBox.margin>
</Button>
<Button fx:id="viewProfileButton" layoutX="22.0" layoutY="481.0" mnemonicParsing="false" onAction="#viewProfileButtonOnClick" prefHeight="31.0" prefWidth="191.0" style="-fx-background-color: black;" text="View Profile" textFill="WHITE">
<VBox.margin>
<Insets top="320.0" />
</VBox.margin>
</Button>
<Button fx:id="logoutButton" layoutX="10.0" layoutY="195.0" mnemonicParsing="false" onAction="#logoutButtonOnClick" prefHeight="31.0" prefWidth="189.0" style="-fx-background-color: black;" text="Logout" textFill="WHITE">
<VBox.margin>
<Insets top="5.0" />
</VBox.margin>
</Button>
</children>
</VBox>
</left>
<center>
<AnchorPane prefHeight="200.0" prefWidth="200.0" BorderPane.alignment="CENTER">
<children>
<RadioButton fx:id="TrackingSalesGoalRadioButton" layoutX="57.0" layoutY="215.0" mnemonicParsing="false" onAction="#selectTrackingSalesGoal" text="Tracking Sales Goal">
<font>
<Font name="System Bold" size="18.0" />
</font>
</RadioButton>
<RadioButton fx:id="salesReportRadioButton" layoutX="57.0" layoutY="255.0" mnemonicParsing="false" onAction="#selectSalesReport" text="Sales Report">
<font>
<Font name="System Bold" size="18.0" />
</font>
</RadioButton>
<RadioButton fx:id="customerreviewRadioButton" layoutX="57.0" layoutY="292.0" mnemonicParsing="false" onAction="#selectCustomerReview" text="Customer Review">
<font>
<Font name="System Bold" size="18.0" />
</font>
</RadioButton>
<Label layoutX="46.0" layoutY="145.0" prefHeight="35.0" prefWidth="281.0" text="Select Desired Option....">
<font>
<Font name="System Bold" size="24.0" />
</font>
</Label>
<Button fx:id="nextButton" layoutX="485.0" layoutY="528.0" mnemonicParsing="false" onAction="#nextButtonOnClick" style="-fx-background-color: Black;" text="Next" textFill="WHITE">
<font>
<Font name="System Bold" size="18.0" />
</font>
</Button>
</children>
</AnchorPane>
</center>
</BorderPane>