From 12f24d97e7ae4b23da1df7f63e37287f644c0eef Mon Sep 17 00:00:00 2001 From: chenhao <852066789@qq.com> Date: Fri, 15 Aug 2025 10:58:48 +0800 Subject: [PATCH] =?UTF-8?q?refactor(inventory):=20=E9=87=8D=E6=9E=84?= =?UTF-8?q?=E5=BA=93=E5=AD=98=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 - 移除生成出库单页面,改为查看出库单详情页面 - 优化订单执行跟踪页面展示 - 新增出库单详情接口和页面 - 修改入库单删除逻辑,增加关联检查 - 优化发货管理页面展示 --- .../templates/inventory/delivery/view.html | 90 ++++------ .../templates/inventory/execution/edit.html | 7 +- .../inventory/execution/generatedOuter.html | 101 ----------- .../templates/inventory/execution/track.html | 2 +- .../templates/inventory/inner/inner.html | 2 +- .../templates/inventory/outer/outer.html | 2 +- .../templates/inventory/outer/viewOuter.html | 167 ++++++++++++++++++ .../controller/InventoryOuterController.java | 14 ++ .../ruoyi/sip/mapper/InventoryInfoMapper.java | 2 + .../sip/mapper/OmsInventoryInnerMapper.java | 2 + .../sip/service/IInventoryInfoService.java | 2 + .../sip/service/IInventoryOuterService.java | 3 + .../impl/InventoryInfoServiceImpl.java | 5 + .../impl/InventoryOuterServiceImpl.java | 22 +++ .../impl/OmsInventoryInnerServiceImpl.java | 9 +- .../java/com/ruoyi/sip/vo/OuterViewVo.java | 25 +++ .../mapper/inventory/InventoryInfoMapper.xml | 8 + .../inventory/OmsInventoryInnerMapper.xml | 17 ++ 18 files changed, 322 insertions(+), 158 deletions(-) delete mode 100644 ruoyi-admin/src/main/resources/templates/inventory/execution/generatedOuter.html create mode 100644 ruoyi-admin/src/main/resources/templates/inventory/outer/viewOuter.html create mode 100644 ruoyi-sip/src/main/java/com/ruoyi/sip/vo/OuterViewVo.java diff --git a/ruoyi-admin/src/main/resources/templates/inventory/delivery/view.html b/ruoyi-admin/src/main/resources/templates/inventory/delivery/view.html index 32461634..aa3896eb 100644 --- a/ruoyi-admin/src/main/resources/templates/inventory/delivery/view.html +++ b/ruoyi-admin/src/main/resources/templates/inventory/delivery/view.html @@ -15,7 +15,20 @@ font-family: "微软雅黑", Arial, sans-serif; /* 统一字体 */ } + body { + font-family: "微软雅黑", Arial, sans-serif; + } + table { + border-collapse: collapse; + width: 100%; + margin-bottom: 20px; + } + + th, td { + border: 1px solid #ccc; + padding: 8px; + } .required-delivery-time { font-size: 20px; @@ -32,57 +45,32 @@