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
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> |