添加获取实时时间getCurrenTime()完成出库管理功能

master
ljc 7 months ago
parent 80e4f7914c
commit 9bcdf03f7c

@ -150,7 +150,7 @@ public class Main extends Application {
// 为入库管理菜单项添加事件处理 // 为入库管理菜单项添加事件处理
inboundItem.setOnAction(e -> showInboundView()); inboundItem.setOnAction(e -> showInboundView());
// 为出库管理菜单项添加事件处理 // 为出库管理菜单项添加事件处理
outboundItem.setOnAction(e -> showOutboundView()); outboundItem.setOnAction(e -> showOutboundView());
menuBar.getMenus().addAll(systemMenu, inventoryMenu, goodsMenu, reportMenu); menuBar.getMenus().addAll(systemMenu, inventoryMenu, goodsMenu, reportMenu);

@ -213,7 +213,6 @@ public class OutboundView extends BorderPane {
quantityField.clear(); quantityField.clear();
remarkField.clear(); remarkField.clear();
} }
private void showAlert(String title, String content) { private void showAlert(String title, String content) {
Alert alert = new Alert(Alert.AlertType.INFORMATION); Alert alert = new Alert(Alert.AlertType.INFORMATION);
alert.setTitle(title); alert.setTitle(title);

Loading…
Cancel
Save