From 419c6a9b87b37be567a581d6a80d7e3f505d84e9 Mon Sep 17 00:00:00 2001
From: lty <876263681@qq.com>
Date: 星期一, 23 六月 2025 13:39:04 +0800
Subject: [PATCH] #新增空箱入库功能,界面等修改

---
 src/main/java/com/zy/asrs/entity/OrderDetl.java |   52 +++++++++++++++++++++++++++++++++++++++++-----------
 1 files changed, 41 insertions(+), 11 deletions(-)

diff --git a/src/main/java/com/zy/asrs/entity/OrderDetl.java b/src/main/java/com/zy/asrs/entity/OrderDetl.java
index 18b1894..a97aa6a 100644
--- a/src/main/java/com/zy/asrs/entity/OrderDetl.java
+++ b/src/main/java/com/zy/asrs/entity/OrderDetl.java
@@ -4,8 +4,10 @@
 import com.baomidou.mybatisplus.annotations.TableId;
 import com.baomidou.mybatisplus.annotations.TableName;
 import com.baomidou.mybatisplus.enums.IdType;
+import com.baomidou.mybatisplus.mapper.EntityWrapper;
 import com.core.common.Cools;
 import com.core.common.SpringUtils;
+import com.zy.asrs.service.BasBoxTypeService;
 import com.zy.asrs.service.OrderService;
 import com.zy.common.utils.Synchro;
 import com.zy.system.entity.User;
@@ -295,6 +297,17 @@
     @ApiModelProperty(value= "澶囨敞")
     private String memo;
 
+    @ApiModelProperty(value = "閫�搴撴爣璁�")
+    @TableField("tk_type")
+    private Integer tkType;
+
+    /**
+     * 鍗蜂俊鎭疘D
+     */
+    @ApiModelProperty(value= "鍗蜂俊鎭疘D")
+    @TableField("roll_up")
+    private Long rollUp;
+
     public OrderDetl() {}
 
     public OrderDetl(Long orderId, String orderNo, Double anfme, Double qty, String matnr, String maktx, String batch, String specs, String model, String color, String brand, String unit, Double price, String sku, Double units, String barcode, String origin, String manu, String manuDate, String itemNum, Double safeQty, Double weight, Double length, Double volume, String threeCode, String supp, String suppCode, Integer beBatch, String deadTime, Integer deadWarn, Integer source, Integer inspect, Integer danger, Integer status, Long createBy, Date createTime, Long updateBy, Date updateTime, String memo) {
@@ -377,33 +390,41 @@
         if (null == this.source){ return "鏈‘璁�"; }
         switch (this.source){
             case 1:
-                return "纭";
+                return "宸茬‘璁�";
             default:
                 return "鏈‘璁�";
         }
     }
 
     public String getInspect$(){
-        if (null == this.inspect){ return null; }
+        if (null == this.inspect){ return "寰呭璐�"; }
         switch (this.inspect){
             case 1:
-                return "鏄�";
-            case 0:
-                return "鍚�";
+                return "澶囪揣涓�";
+            case 2:
+                return "宸插璐�";
             default:
-                return String.valueOf(this.inspect);
+                return "寰呭璐�";
         }
     }
 
+    public String getTkType$(){
+        if (null == this.tkType) return "姝e父";
+        if (this.tkType == 1) {
+            return "閫�搴�";
+        }
+        return "姝e父";
+    }
+
     public String getDanger$(){
-        if (null == this.danger){ return null; }
+        if (null == this.danger){ return "寰呯Щ搴�"; }
         switch (this.danger){
             case 1:
-                return "鏄�";
-            case 0:
-                return "鍚�";
+                return "绉诲簱涓�";
+            case 2:
+                return "绉诲簱瀹屾垚";
             default:
-                return String.valueOf(this.danger);
+                return "寰呯Щ搴�";
         }
     }
 
@@ -472,4 +493,13 @@
         Synchro.Copy(source, this);
     }
 
+    public String getBrand$(){
+        BasBoxTypeService basBoxTypeService = SpringUtils.getBean(BasBoxTypeService.class);
+        BasBoxType basBoxType = basBoxTypeService.selectOne(new EntityWrapper<BasBoxType>().eq("box_type", this.brand));
+        if (!Cools.isEmpty(basBoxType)){
+            return String.valueOf(basBoxType.getBoxSpecs());
+        }
+        return this.brand;
+    }
+
 }
\ No newline at end of file

--
Gitblit v1.9.1