生产入库单汇报记录id

This commit is contained in:
2024-08-30 15:20:10 +08:00
parent 9f21475907
commit 60c27e331d
8 changed files with 20 additions and 3 deletions

View File

@@ -108,6 +108,10 @@
/// 齐套出入库
/// </summary>
public const string MATERIALTRANSFER_QTCRK_CODE = "assortWarehouse";
/// <summary>
/// 跨层外协件出入库
/// </summary>
public const string MATERIALTRANSFER_CROSSLAYER_CODE = "crosslayer";
/// <summary>
/// 出入库单据状态TypeID

View File

@@ -18,6 +18,7 @@ namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
public decimal rqty { get; set; }
public string type { get; set; }
public string create_id { get; set; }
public string prd_report_id { get; set; }
public List<WmsPrdInstockDInput> prdInstockDs { get; set; }
public List<WmsPrdInstockCodeInput> prdInstockCodes { get; set; }
}

View File

@@ -130,7 +130,7 @@ public partial class WmsMaterialTransfer : BaseEntity<string>
public string? erp_bill_code { get; set; }
/// <summary>
/// 转库类型
/// 转库类型(弃用)
/// </summary>
public string? transfer_type { get; set; }

View File

@@ -89,4 +89,9 @@ public partial class WmsPrdInstockH : BaseEntity<string>
/// </summary>
public string? type { get; set; }
/// <summary>
/// 汇报记录id
/// </summary>
public string? prd_report_id { get; set; }
}

View File

@@ -150,7 +150,7 @@ public partial class WmsTransferOutstockD : BaseEntity<string>
public string erp_wh_type { get; set; }
/// <summary>
/// erp入库仓库编码
/// erp入库仓库id
/// </summary>
public string? warehouse_instock_code { get; set; }