* 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:
32
SytelineSaAppEfDataModel/Dtos/LotDto.cs
Normal file
32
SytelineSaAppEfDataModel/Dtos/LotDto.cs
Normal 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; }
|
||||
}
|
||||
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user