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

master
ljc 7 months ago
parent 80e4f7914c
commit 9bcdf03f7c

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

@ -79,4 +79,4 @@ public class OutboundRecord {
public void setRemark(String remark) {
this.remark = remark;
}
}
}

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

Loading…
Cancel
Save