-
Notifications
You must be signed in to change notification settings - Fork 0
/
ManifactureReportController.java
66 lines (56 loc) · 1.49 KB
/
ManifactureReportController.java
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
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package pranFood;
import java.net.URL;
import java.util.ResourceBundle;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.Button;
import javafx.scene.control.ComboBox;
import javafx.scene.control.DatePicker;
import javafx.scene.control.TextField;
/**
* FXML Controller class
*
* @author intes
*/
public class ManifactureReportController implements Initializable {
@FXML
private DatePicker manifactureddatepicker;
@FXML
private ComboBox<?> productbrandcombobox;
@FXML
private ComboBox<?> producttypeCombobox;
@FXML
private ComboBox<?> productIDCombobox;
@FXML
private TextField quantityTextField;
@FXML
private Button submitButton;
/**
* Initializes the controller class.
*/
@Override
public void initialize(URL url, ResourceBundle rb) {
// TODO
}
@FXML
private void selectdate(ActionEvent event) {
}
@FXML
private void selectproductbrand(ActionEvent event) {
}
@FXML
private void selectproducttype(ActionEvent event) {
}
@FXML
private void selectProductID(ActionEvent event) {
}
@FXML
private void submitButtonOnClick(ActionEvent event) {
}
}