* Additional Functions added to services

* Changes in MaterialTransaction mapping
This commit is contained in:
2025-04-02 21:25:13 +02:00
parent 3f0da4ba79
commit 94c4586c35
9 changed files with 86 additions and 58 deletions

View File

@@ -2,40 +2,40 @@ namespace SytelineSaAppEfDataModel.Dtos;
public class MaterialTransactionDto
{
public string MTGroup { get; set; }
public string MTGroupNum { get; set; }
public long TransNum { get; set; }
public string Item { get; set; }
public string? MTGroup { get; set; }
public string? MTGroupNum { get; set; }
public decimal? TransNum { get; set; }
public string? Item { get; set; }
public DateTime? TransDate { get; set; }
public decimal? Qty { get; set; }
public decimal? Cost { get; set; }
public string Whse { get; set; }
public string Loc { get; set; }
public string RefNum { get; set; }
public string? Whse { get; set; }
public string? Loc { get; set; }
public string? RefNum { get; set; }
public short? RefLineSuf { get; set; }
public short? RefRelease { get; set; }
public string ReasonCode { get; set; }
public string TransType { get; set; }
public string RefType { get; set; }
public string MTReasonType { get; set; }
public string PrefixId { get; set; }
public string SequenceId { get; set; }
public string WhseSequenceId { get; set; }
public bool WhseSplit { get; set; }
public string? ReasonCode { get; set; }
public string? TransType { get; set; }
public string? RefType { get; set; }
public string? MTReasonType { get; set; }
public long? PrefixId { get; set; }
public long? SequenceId { get; set; }
public long? WhseSequenceId { get; set; }
public bool? WhseSplit { get; set; }
public Guid? VariableId { get; set; }
public string FormName { get; set; }
public bool InWorkflow { 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 CreateDate { get; set; }
public string CustNum { get; set; }
public string VendNum { get; set; }
public string? FormName { get; set; }
public bool? InWorkflow { 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? CreateDate { get; set; }
public string? CustNum { get; set; }
public string? VendNum { get; set; }
public int? RecipNum { get; set; }
public string Uf_FKR_internal_num_matltran_zn { get; set; }
public string? Uf_FKR_internal_num_matltran_zn { get; set; }
public Guid? Session_Id { get; set; }
public string Uf_MobileAppUser { get; set; }
public string NR_KARTY_KONTROLNEJ { get; set; }
public string? Uf_MobileAppUser { get; set; }
public string? NR_KARTY_KONTROLNEJ { get; set; }
}