-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProductionProblemReport.fxml
More file actions
72 lines (70 loc) · 3.75 KB
/
Copy pathProductionProblemReport.fxml
File metadata and controls
72 lines (70 loc) · 3.75 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ComboBox?>
<?import javafx.scene.control.DatePicker?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TextArea?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.text.Font?>
<AnchorPane id="AnchorPane" prefHeight="662.0" prefWidth="738.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="223.0" layoutY="14.0" prefHeight="62.0" prefWidth="320.0" text="Notify Production Problem">
<font>
<Font name="System Bold Italic" size="24.0" />
</font>
</Label>
<Label layoutX="102.0" layoutY="106.0" text="Reporting Date:">
<font>
<Font name="System Bold" size="18.0" />
</font>
</Label>
<Label layoutX="56.0" layoutY="272.0" text="\% of Less Production:">
<font>
<Font name="System Bold" size="18.0" />
</font>
</Label>
<Label layoutX="110.0" layoutY="150.0" prefHeight="27.0" prefWidth="135.0" text="Product Brand:">
<font>
<Font name="System Bold" size="18.0" />
</font>
</Label>
<Label layoutX="32.0" layoutY="316.0" text="Reason for the problem:">
<font>
<Font name="System Bold" size="18.0" />
</font>
</Label>
<DatePicker fx:id="reportingDatePicker" layoutX="257.0" layoutY="104.0" onAction="#selectdate" />
<ComboBox fx:id="productbrandcombobox" layoutX="257.0" layoutY="146.0" onAction="#selectproductBrand" prefHeight="31.0" prefWidth="218.0" promptText="Select Brand Name" />
<ComboBox fx:id="selectproducttype" layoutX="260.0" layoutY="187.0" onAction="#selectproducttype" prefHeight="31.0" prefWidth="218.0" promptText="Select Product Type" />
<TextField fx:id="parcentagelessproductionTextField" layoutX="260.0" layoutY="270.0" prefHeight="31.0" prefWidth="218.0" />
<Button fx:id="addproductButton" layoutX="277.0" layoutY="367.0" mnemonicParsing="false" onAction="#addproductButtonOnClick" text="Add Product to the List">
<font>
<Font name="System Bold" size="15.0" />
</font>
</Button>
<TextArea fx:id="previewTextArea" layoutX="245.0" layoutY="409.0" prefHeight="200.0" prefWidth="243.0" />
<Button fx:id="previewButton" layoutX="102.0" layoutY="494.0" mnemonicParsing="false" onAction="#previewButtonOnClick" text="Preview ">
<font>
<Font name="System Bold" size="15.0" />
</font>
</Button>
<Button fx:id="submitButton" layoutX="566.0" layoutY="556.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="117.0" layoutY="189.0" prefHeight="27.0" prefWidth="121.0" text="Product Type:">
<font>
<Font name="System Bold" size="18.0" />
</font>
</Label>
<Label layoutX="135.0" layoutY="231.0" prefHeight="27.0" prefWidth="103.0" text="Product ID:">
<font>
<Font name="System Bold" size="18.0" />
</font>
</Label>
<ComboBox fx:id="productIDCombobox" layoutX="260.0" layoutY="227.0" onAction="#selecproductid" prefHeight="31.0" prefWidth="218.0" promptText="Select Product ID" />
<ComboBox fx:id="ReasonCombobox" layoutX="260.0" layoutY="314.0" onAction="#selectReason" prefHeight="31.0" prefWidth="218.0" />
</children>
</AnchorPane>