Search Results for

    Show / Hide Table of Contents

    Interface IBlendTransaction

    The system entity for a blended transaction, which creates a set of transactions according to rules configured in a IBlendTransaction

    See https://web.lemonedge.com/help/blend-transactions/ for more information

    Inherited Members
    IHeaderTransactionalEntity.Reference
    IHeaderTransactionalEntity.Description
    IHeaderTransactionalEntity.TransactionDate
    ITransactionalEntity.Status
    ITransactionalEntity.CancelledID
    ITransactionalEntity.CorrectedByID
    ICanBeLocked.Locked
    IHasSaveProcessingTask.SavedTaskID
    IHasSaveProcessingTask.SavedTaskParam
    IHasSaveProcessingTask.GetShouldAutoGenerateTaskOnSave()
    IHasSaveProcessingTask.SetAutoGenerateOnSave(Boolean)
    IBaseEntity.AccountID
    IBaseEntity.ID
    IBaseEntity.LastUpdated
    IBaseEntity.ModifiedByUserID
    IBaseEntity.CanvasID
    IBaseEntity.GetLabel(String)
    IBaseEntity.SetLabel(String, String)
    IBaseEntity.SetSilentLabel(String, String)
    System.IEquatable<LemonEdge.API.Core.IBaseEntity>.Equals(LemonEdge.API.Core.IBaseEntity)
    System.ComponentModel.INotifyPropertyChanged.PropertyChanged
    System.ComponentModel.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
    Assembly: API.dll
    Syntax
    [EntityDefinition(EntityID.BlendTransaction, "dbo.LT_BlendTransactions", "BlendTransaction", LabelColumn = "Reference", IsStandingDataEntity = true, HelpURL = "blend-transactions")]
    [DefaultEntityIcon(ImageType.BlendTransactions)]
    [EntityLinkToAnyParentRelationshipModifier(EntityID.Transaction, "ParentItemID", "ID", PartOfThisSet = true)]
    public interface IBlendTransaction : IHeaderTransactionalEntity, ITransactionalEntity, ICanBeLocked, IBaseEntityWithPermissions, IHasSaveProcessingTask, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties

    Properties

    BlendingTransactionID

    Links to IBlendingTran. The Blending Transaction configuration settings to be used to process this Blended Transaction with. See here for more information

    Declaration
    [EntityProperty(SQLType.UniqueIdentifier, false)]
    [EntityRelationship(EntityID.BlendingTran, "ID", SingleJoinType.One, "Blending Transaction", "Blend Transactions", DeleteWithRelationship = true, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = false)]
    [EntityDescription("The blending transaction algorithm to use when blending these transactions.")]
    Guid BlendingTransactionID { get; set; }
    Property Value
    Type Description
    System.Guid

    EndDate

    If the Blending Transaction configuration requires an End Date then one will be visible here.

    Any transaction filtering for Source/Target Transactions will only look between these Start/End Dates. (Again unless the dates are being repeated in which case it is run multiple times, once for each date set)

    Declaration
    [EntityProperty(SQLType.DateTimeOffset, true, IsDate = true)]
    DateTimeOffset? EndDate { get; set; }
    Property Value
    Type Description
    System.Nullable<System.DateTimeOffset>

    FinancialDate

    This is used for transaction matching when aggregating source and target transaction values. The Blended Transaction itself doesn't have a Financial Date as it isn't operating against an Entity

    Declaration
    [EntityProperty(SQLType.DateTimeOffset, false, IsDate = true)]
    [Required]
    DateTimeOffset FinancialDate { get; set; }
    Property Value
    Type Description
    System.DateTimeOffset

    StartDate

    If the Blending Transaction configuration requires a Start Date then one will be visible here.

    Any transaction filtering for Source/Target Transactions will only look between these Start/End Dates. (Again unless the dates are being repeated in which case it is run multiple times, once for each date set)

    Declaration
    [EntityProperty(SQLType.DateTimeOffset, true, IsDate = true)]
    DateTimeOffset? StartDate { get; set; }
    Property Value
    Type Description
    System.Nullable<System.DateTimeOffset>

    Extension Methods

    MiscExtensions.SetIfNotEqual<T, P>(T, Expression<Func<T, P>>, P)
    ReflectionExtensions.ClearEventInvocations(Object, String)
    StringExtensions.ToCSVFormatString(Object, Type)
    SQLExtensions.ToSQLValue(Object, Boolean)

    See Also

    IBlendingTran
    IBlendTransactionInstrumentSet
    In This Article
    Back to top © LemonTree Software Ltd. All rights reserved.