* Added Lot table and service

* Changed behaviour of scanning to scan first PartNumber, select specific record and then scan MeylePartNumber
This commit is contained in:
2025-06-17 08:30:10 +02:00
parent e96bcc95ba
commit a8e3a8be66
15 changed files with 374 additions and 25 deletions

View File

@@ -0,0 +1,32 @@
namespace SytelineSaAppEfDataModel.Dtos;
public class LotDto
{
public string Item { get; set; }
public string LotNumber { get; set; }
public decimal? RcvdQty { get; set; }
public DateTime? CreateDate { get; set; }
public DateTime? ExpDate { get; set; }
public DateTime? PurgeDate { get; set; }
public string VendLot { get; set; }
public string CertNum { get; set; }
public string Charfld1 { get; set; }
public string Charfld2 { get; set; }
public string Charfld3 { get; set; }
public DateTime? Datefld { get; set; }
public decimal? Decifld1 { get; set; }
public decimal? Decifld2 { get; set; }
public decimal? Decifld3 { get; set; }
public bool Logifld { get; set; }
public bool NoteExistsFlag { get; set; }
public DateTime RecordDate { get; set; }
public Guid RowPointer { get; set; }
public string CreatedBy { get; set; }
public string UpdatedBy { get; set; }
public DateTime CreateDateField { get; set; }
public bool InWorkflow { get; set; }
public bool ContainsTaxFreeMatl { get; set; }
public string AttrGroup { get; set; }
public string ManufacturerId { get; set; }
public string ManufacturerItem { get; set; }
}

View File

@@ -11,4 +11,6 @@ public class WzRowMeyleDto
public string WzNumber { get; set; }
public string? PartNumber { get; set; }
public int? TransactionNumber { get; set; }
public string? FaIndex { get; set; }
public string? PartNumberSl { get; set; }
}