From 387731cab892804912e68cb91e6fb804411c4756 Mon Sep 17 00:00:00 2001
From: huangxiaoqiang <huangxiaoqiang@hnkhzn.com>
Date: 星期一, 27 十月 2025 23:32:16 +0800
Subject: [PATCH] 优化与ERP出库单逻辑,增加打印程序
---
项目代码/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/BasicModel/DtBoxingInfo.cs | 39 +++++++++++++++------------------------
1 files changed, 15 insertions(+), 24 deletions(-)
diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/BasicModel/DtBoxingInfo.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/BasicModel/DtBoxingInfo.cs"
index de981c4..b6fc21c 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/BasicModel/DtBoxingInfo.cs"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/BasicModel/DtBoxingInfo.cs"
@@ -22,11 +22,22 @@
public string PalletCode { get; set; }
/// <summary>
- /// 鏄惁婊$洏
+ /// 璐т綅缂栫爜
/// </summary>
- [Required]
- [SugarColumn(IsNullable = true, ColumnDescription = "鏄惁婊$洏")]
- public bool IsFull { get; set; } = true;
+ [SugarColumn(IsNullable = true, ColumnDescription = "璐т綅缂栫爜")]
+ public string LocationCode { get; set; }
+
+ /// <summary>
+ /// 鏄惁鏁村嚭
+ /// </summary>
+ [SugarColumn(IsNullable = true, ColumnDescription = "鏄惁鏁村嚭")]
+ public bool IsFullExit { get; set; } = true;
+
+ /// <summary>
+ /// 鐘舵��
+ /// </summary>
+ [SugarColumn(IsNullable = true, ColumnDescription = "鐘舵��")]
+ public int StockStatus { get; set; }
/// <summary>
/// 澶囨敞
@@ -34,29 +45,9 @@
[SugarColumn(IsNullable = true, ColumnDescription = "澶囨敞")]
public string Remark { get; set; }
-
- /// <summary>
- /// 鐢熶骇浜х嚎
- /// </summary>
- [SugarColumn(IsNullable = true, ColumnDescription = "鐢熶骇浜х嚎")]
- public string ProductionLine { get; set; }
-
- /// <summary>
- /// 褰撳墠宸ュ簭
- /// </summary>
- [SugarColumn(IsNullable = true, ColumnDescription = "褰撳墠宸ュ簭")]
- public string ProcessCode { get; set; }
-
- /// <summary>
- /// 涓嬩竴宸ュ簭
- /// </summary>
- [SugarColumn(IsNullable = true, ColumnDescription = "涓嬩竴宸ュ簭")]
- public string NextProcessCode { get; set; }
-
/// <summary>
/// 搴撳瓨鏄庣粏
/// </summary>
- [MinItemsCount(1)] // 妫�娴嬮泦鍚堝厓绱犳渶灏�1涓�
[SugarColumn(ColumnName = "BoxingInfoDetails")]
[Navigate(NavigateType.OneToMany, nameof(DtBoxingInfoDetail.BoxingInfoId))]
public List<DtBoxingInfoDetail>? BoxingInfoDetails { get; set; }
--
Gitblit v1.9.3