日志优化,成品库添加移库,AGV上料功能修正,出库计划过滤呆料,毛坯仓库添加实际操作时间

This commit is contained in:
2024-07-10 17:11:01 +08:00
parent 5d42e9e196
commit 13cf1be5a7
16 changed files with 359 additions and 183 deletions

View File

@@ -60,6 +60,8 @@ namespace ZR.Model.MES.wms.Dto
public int Status { get; set; }
public DateTime? ActionTime { get; set; }
public string Remark { get; set; }
public string CreatedBy { get; set; }

View File

@@ -131,4 +131,18 @@ namespace ZR.Model.MES.wms.Dto
/// </summary>
public object Value { get; set; }
}
/// <summary>
/// 批量修改成品库库存
/// </summary>
public class BatchUpdateLocationCodeDto
{
public List<string> Ids { get; set; }
public string LocationCode { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}

View File

@@ -31,6 +31,13 @@ namespace ZR.Model.MES.wms
[SugarColumn(ColumnName = "change_quantity")]
public int? ChangeQuantity { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[SugarColumn(ColumnName = "action_time")]
public DateTime? ActionTime { get; set; }
/// <summary>
/// 类别
/// </summary>