毛坯出入库修改,质量报表生成标签功能添加

This commit is contained in:
2025-10-23 17:51:03 +08:00
parent ea4d9ee0f0
commit 7270da5508
6 changed files with 212 additions and 57 deletions

View File

@@ -129,4 +129,46 @@ namespace ZR.Model.MES.qc.DTO
}
/// <summary>
/// 质量统计-打印送货单
/// </summary>
public class PrintDeliveryNoteDto
{
// btw文件路径
public string Path { get; set; } = "";
// 站点号
public string SiteNo { get; set; } = "";
// 识别内容名称(内部)
public string Name { get; set; } = "";
// 零件号
public string PartNumber { get; set; } = "";
// 产品名称
public string Description { get; set; } = "";
// 颜色
public string Color { get; set; } = "";
// 规格
public string Specification { get; set; } = "";
// 工单号
public string WorkOrder { get; set; } = "";
// 箱号
public string PackageCode { get; set; } = "";
// 班组
public string Team { get; set; } = "A";
// 流水号
public int Sort { get; set; } = 1;
// 生产时间
public string ProductionTime { get; set; } = "";
// 批次号
public string BatchCode { get; set; } = "";
// 满箱数
public int PackageNum { get; set; } = 24;
// 标签内容
public string LabelCode { get; set; } = "";
// 标签区别
public int LabelType { get; set; } = 1;
// 发送时间
public string CreatedTime { get; set; } = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
}
}

View File

@@ -72,6 +72,10 @@
/// </summary>
public string Partnumber { get; set; }
/// <summary>
/// 库位
/// </summary>
public string LocationCode { get; set; }
/// <summary>
/// 短批次系统入库时间
/// </summary>
public DateTime? EntryWarehouseTime { get; set; }