任务详情

This commit is contained in:
tongfei
2024-03-27 10:12:37 +08:00
parent 621485fb4c
commit ca3a43c775
11 changed files with 461 additions and 12 deletions

View File

@@ -78,5 +78,10 @@ namespace WMS.Web.Core.Dto.Erp
/// 单据类型
/// </summary>
public int Type { get; set; }
/// <summary>
/// 销售订单
/// </summary>
public string SaleBillNo { get; set; }
}
}

View File

@@ -0,0 +1,82 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.InStockTask
{
/// <summary>
/// 任务箱信息
/// </summary>
public class InStockTaskBoxInfoDto
{
/// <summary>
/// 箱ID
/// </summary>
public int BoxId { get; set; }
/// <summary>
/// 箱编码
/// </summary>
public string BoxBillNo { get; set; }
/// <summary>
/// 物料编码
/// </summary>
public string MaterialNumber { get; set; }
/// <summary>
/// 物料规格型号
/// </summary>
public string Specifications { get; set; }
/// <summary>
/// 收货时间
/// </summary>
public string ReceiveTime { get; set; }
/// <summary>
/// 收货人
/// </summary>
public string Receiver { get; set; }
/// <summary>
/// 上架人
/// </summary>
public string Shelfer { get; set; }
/// <summary>
/// 入库方式:内部用
/// </summary>
public int MethodForInt { get; set; }
/// <summary>
/// 入库方式1按箱2按产品
/// </summary>
public string Method { get; set; }
/// <summary>
/// 入库时间(上架时间)
/// </summary>
public string ShelfTime { get; set; }
/// <summary>
/// 箱数量
/// </summary>
public decimal Qty { get; set; }
/// <summary>
/// 收货数量
/// </summary>
public decimal ReceiveQty { get; set; }
/// 入库数量
/// </summary>
public decimal RealityQty { get; set; }
/// <summary>
/// 序列号
/// </summary>
public string SerialNumbers { get; set; }
}
}

View File

@@ -23,14 +23,37 @@ namespace WMS.Web.Core.Dto.InStockTask
public string SourceBillNo { get; set; }
/// <summary>
/// 箱ID
/// 销售订单号
/// </summary>
public int BoxId { get; set; }
public string SaleBillNo { get; set; }
/// <summary>
/// 明细
/// 供应商
/// </summary>
public List<InStockTaskDetailsInfoDto> Details { get; set; } = new List<InStockTaskDetailsInfoDto>();
public string Supplier { get; set; }
/// <summary>
/// 组织
/// </summary>
public string Org { get; set; }
/// <summary>
/// 入库状态
/// </summary>
public string Status { get; set; }
/// <summary>
/// 入库类型
/// </summary>
public string Type { get; set; }
/// <summary>
/// 创建时间erp那边的创建时间
/// </summary>
public string CreateTime { get; set; }
/// <summary>
/// 箱信息
/// </summary>
public List<InStockTaskBoxInfoDto> Boxs { get; set; } = new List<InStockTaskBoxInfoDto>();
}
}