完善日志 bug处理

This commit is contained in:
2024-06-21 15:14:30 +08:00
parent c9ad81052e
commit 0095ebec24
40 changed files with 470 additions and 254 deletions

View File

@@ -94,7 +94,7 @@
/// </summary>
public const string PRETASK_BILL_STATUS_COMPLE_ID = "26126838773285";
/// <summary>
/// 预任务单据状态-已完成Id
/// 预任务单据状态-已取消Id
/// </summary>
public const string PRETASK_BILL_STATUS_CANCEL_ID = "26126842129701";
@@ -341,7 +341,11 @@
/// <summary>
/// 一楼供料三工位库位
/// </summary>
public const string Floor1GLSGWOutstockStation4 = "30773146852480";
public const string Floor1GLSGWOutstockStation4 = "30773146852481";
/// <summary>
/// 一楼供料三工位库位
/// </summary>
public const string Floor1GLSGWOutstockStation5 = "34863907485461";
/// <summary>
/// todo 一楼外协三工位库位
/// </summary>

View File

@@ -5,6 +5,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using JNPF.Common.Dtos.VisualDev;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
{
@@ -21,9 +22,13 @@ namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
public string biz_type { get; set; }
public string task_type { get; set; }
/// <summary>
/// 来源业务单据id
/// </summary>
public string require_id { get; set; }
/// <summary>
/// 来源业务单据code
/// </summary>
public string require_code { get; set; }
public string moduleConsts { get; set; }
@@ -43,6 +48,6 @@ namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
/// </summary>
public bool isChangeCarryLoc2StartLoc { get; set; } = true;
}
}
}

View File

@@ -185,5 +185,9 @@ public partial class WmsPretaskH : BaseEntity<string>
/// 任务属性
/// </summary>
public string chain_type { get; set; } = "3";
/// <summary>
/// 备注
/// </summary>
public string note { get; set; }
}