@ -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);