Search Results for

    Show / Hide Table of Contents

    Interface IGroupedTransaction

    The system entity for a grouped transaction, which contains a set of transactions that can be processed in chronological order

    Inherited Members
    IHasReference.Reference
    IBaseEntity.GetLabel(string)
    IBaseEntity.SetLabel(string, string)
    IBaseEntity.SetSilentLabel(string, string)
    IBaseEntity.AccountID
    IBaseEntity.ID
    IBaseEntity.LastUpdated
    IBaseEntity.ModifiedByUserID
    IBaseEntity.CanvasID
    IBaseEntity.AlgorithmStepID
    IBaseEntity.SafeID
    IEquatable<IBaseEntity>.Equals(IBaseEntity)
    INotifyPropertyChanged.PropertyChanged
    INotifyPropertyChanging.PropertyChanging
    ICloneableAsync.Clone(object)
    ICloneableAsync.CopyFromSource(object)
    ICanTrackProperties.HasTrackedPropertyChanged(string)
    ICanTrackProperties.OriginalTrackedPropertyValue(string)
    ICanTrackProperties.OriginalTrackedPropertyValue<T>(string)
    ICanTrackProperties.ClearTrackedOriginalValues()
    ICanTrackProperties.GetAllOriginalTrackedPropertyValues()
    Namespace: LemonEdge.API.Entities.FinancialServices.Transactions
    Assembly: LemonEdge.API.Entities.FinancialServices.dll
    Syntax
    [EntityDefinition(EntityID.GroupedTransaction, "dbo.LT_GroupedTransactions", "GroupedTransaction", LabelColumn = "Reference", IsStandingDataEntity = false)]
    [DefaultEntityIcon(ImageType.GroupedTransactions)]
    public interface IGroupedTransaction : IBaseEntityWithPermissions, IHasReference, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties

    Properties

    Description

    A short user friendly description of this grouped transaction.

    Declaration
    [EntityProperty(SQLType.NVarChar, 200, true)]
    [EntityDescription("A short user friendly description of this grouped transaction.")]
    string Description { get; set; }
    Property Value
    Type Description
    string

    Status

    Indicates the current status of this grouped transactional object.

    By default GL entries aren't processed until an entity has a status >= Committed.

    Finalazied transactions can only be modified through cancel/correct logic
    Declaration
    [EntityProperty(SQLType.SmallInt, false)]
    [EntityDescription("Indicates the current status of this grouped transactional object.")]
    [DBTrackChanges]
    TransactionStatus Status { get; set; }
    Property Value
    Type Description
    TransactionStatus

    TransactionDate

    The transaction date of this grouped transaction.

    Declaration
    [EntityProperty(SQLType.DateTimeOffset, false, IsDate = true)]
    [EntityDescription("The transaction date of this grouped transaction.")]
    [DBTrackChanges]
    DateTimeOffset TransactionDate { get; set; }
    Property Value
    Type Description
    DateTimeOffset

    Extension Methods

    LinqExtensions.AsArray<T>(T)
    LinqExtensions.ToArrayOfOne<T>(T)
    LinqExtensions.ToListOfOne<T>(T)
    MiscExtensions.SetIfNotEqual<T, TP>(T, Expression<Func<T, TP>>, TP)
    WeakReferenceExtensions.WeakReference(object)
    SQLExtensions.ToSQLValue(object, bool)
    ReflectionExtensions.ClearEventInvocations(object, string)
    StringExtensions.ToCSVFormatString(object, Type)
    In this article
    Back to top © LemonEdge Technologies. All rights reserved.