From 9bcdf03f7c2b5dae6d3554b99f2f67a174262bee Mon Sep 17 00:00:00 2001
From: ljc <3413625611@qq.com>
Date: Tue, 26 Nov 2024 16:01:33 +0800
Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=8E=B7=E5=8F=96=E5=AE=9E?=
 =?UTF-8?q?=E6=97=B6=E6=97=B6=E9=97=B4getCurrenTime()=E5=AE=8C=E6=88=90?=
 =?UTF-8?q?=E5=87=BA=E5=BA=93=E7=AE=A1=E7=90=86=E5=8A=9F=E8=83=BD?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 src/Main.java                 | 2 +-
 src/model/OutboundRecord.java | 2 +-
 src/view/OutboundView.java    | 1 -
 3 files changed, 2 insertions(+), 3 deletions(-)

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