From 19724b0969eb2f91b38efb262a6ef4de04d6b0c5 Mon Sep 17 00:00:00 2001
From: huangxiaoqiang <huangxiaoqiang@hnkhzn.com>
Date: 星期二, 14 十月 2025 12:07:58 +0800
Subject: [PATCH] 新增“有货状态”显示及数据处理逻辑支持在Home.vue和 LineComponent.vue中新增了“有货状态”显示功能,为 RGV 和堆垛机对象添加了 InStock属性。 修改了 Home.vue 的 created生命周期和 LineComponent.vue的 update 方法,增加了对 inStock数据的处理逻辑。删除了三个旧的二进制文件,新增了六个新的二进制文件,可能与项目构建或依赖更新相关。优化了任务分配和状态判断逻辑,确保任务执行更加准确和高效。
---
项目代码/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/Dt_StationManager.cs | 61 ++++++++++++++++++++++++++----
1 files changed, 53 insertions(+), 8 deletions(-)
diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/Dt_StationManager.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/Dt_StationManager.cs"
index bd4da5a..006adbf 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/Dt_StationManager.cs"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/Dt_StationManager.cs"
@@ -62,7 +62,7 @@
[ImporterHeader(Name = "澶囨敞")]
[ExporterHeader(DisplayName = "澶囨敞")]
[SugarColumn(IsNullable = false, ColumnDescription = "澶囨敞")]
- public string stationRemark { get; set; }
+ public int stationRemark { get; set; }
/// <summary>
/// 绾夸綋缂栧彿(瀛愯澶囩紪鍙�)
@@ -73,12 +73,12 @@
public string stationChildCode { get; set; }
/// <summary>
- /// 璁惧鍖哄煙
+ /// 涓嬩竴绔欏彴
/// </summary>
- [ImporterHeader(Name = "璁惧鍖哄煙")]
- [ExporterHeader(DisplayName = "璁惧鍖哄煙")]
- [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "璁惧鍖哄煙")]
- public string stationArea { get; set; }
+ [ImporterHeader(Name = "涓嬩竴绔欏彴")]
+ [ExporterHeader(DisplayName = "涓嬩竴绔欏彴")]
+ [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "涓嬩竴绔欏彴")]
+ public string stationNextChildCode { get; set; }
/// <summary>
/// 鍧愭爣鍦板潃
@@ -88,8 +88,53 @@
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "鍧愭爣鍦板潃")]
public string stationLocation { get; set; }
- public string remark { get; set; }
-
+ /// <summary>
+ /// 澶囨敞
+ /// </summary>
+ [ImporterHeader(Name = "澶囨敞")]
+ [ExporterHeader(DisplayName = "澶囨敞")]
+ [SugarColumn(IsNullable = false, ColumnDescription = "澶囨敞")]
+ public int remark { get; set; }
+ /// <summary>
+ /// 鐘舵��
+ /// </summary>
+ [ImporterHeader(Name = "鐘舵��")]
+ [ExporterHeader(DisplayName = "鐘舵��")]
+ [SugarColumn(IsNullable = false, ColumnDescription = "鐘舵��")]
public string stationStatus { get; set; }
+
+ /// <summary>
+ /// 妤煎眰
+ /// </summary>
+ [ImporterHeader(Name = "妤煎眰")]
+ [ExporterHeader(DisplayName = "妤煎眰")]
+ [SugarColumn(IsNullable = false, ColumnDescription = "妤煎眰")]
+ public string stationFloor { get; set; }
+
+ /// <summary>
+ /// RGV鍚嶇О
+ /// </summary>
+ [ImporterHeader(Name = "RGV鍚嶇О")]
+ [ExporterHeader(DisplayName = "RGV鍚嶇О")]
+ [SugarColumn(IsNullable = false, ColumnDescription = "RGV鍚嶇О")]
+ public string RGVName { get; set; }
+
+
+ /// <summary>
+ /// 涓�鍙稲GV姘村钩浣嶇疆
+ /// </summary>
+ [ImporterHeader(Name = "涓�鍙稲GV姘村钩浣嶇疆")]
+ [ExporterHeader(DisplayName = "涓�鍙稲GV姘村钩浣嶇疆")]
+ [SugarColumn(IsNullable = false, ColumnDescription = "涓�鍙稲GV姘村钩浣嶇疆")]
+ public int LevelPointFist { get; set; }
+
+ /// <summary>
+ /// 浜屽彿RGV姘村钩浣嶇疆
+ /// </summary>
+ [ImporterHeader(Name = "浜屽彿RGV姘村钩浣嶇疆")]
+ [ExporterHeader(DisplayName = "浜屽彿RGV姘村钩浣嶇疆")]
+ [SugarColumn(IsNullable = false, ColumnDescription = "浜屽彿RGV姘村钩浣嶇疆")]
+ public int LevelPointSecond { get; set; }
+
}
}
--
Gitblit v1.9.3