diff --git a/src/Main.java b/src/Main.java index 1b7c51f..a4bf66d 100644 --- a/src/Main.java +++ b/src/Main.java @@ -150,7 +150,7 @@ public class Main extends Application { // 为入库管理菜单项添加事件处理 inboundItem.setOnAction(e -> showInboundView()); - // 为出库管理菜单项添加事件处理 + // 为出库管理菜单项添加事件处理。 outboundItem.setOnAction(e -> showOutboundView()); menuBar.getMenus().addAll(systemMenu, inventoryMenu, goodsMenu, reportMenu); diff --git a/src/model/OutboundRecord.java b/src/model/OutboundRecord.java index 30bf39d..4060182 100644 --- a/src/model/OutboundRecord.java +++ b/src/model/OutboundRecord.java @@ -79,4 +79,4 @@ public class OutboundRecord { public void setRemark(String remark) { this.remark = remark; } -} \ No newline at end of file +} diff --git a/src/view/OutboundView.java b/src/view/OutboundView.java index 6a3d766..f334811 100644 --- a/src/view/OutboundView.java +++ b/src/view/OutboundView.java @@ -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);