This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// GUID, defaulting by "old" algorithm (timestamp + ethernet MAC address) | |
[PXDBSequentialGuid(IsKey=true)] | |
[PXReferentialIntegrityCheck] | |
[PXUIField(DisplayName="ID")] | |
public Guid? FilterID { get; set; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[PXDBGuid(false, IsKey=true)] | |
public Guid? WebHookID { get; set; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[PXDBString(10, IsUnicode = true, IsKey = true)] | |
[PXDefault(PersistingCheck = PXPersistingCheck.NullOrBlank)] | |
[PXUIField(DisplayName = "Class ID", Visibility=PXUIVisibility.SelectorVisible)] | |
[PXSelector(typeof(CustomerClass.customerClassID), CacheGlobal = true)] | |
[PXFieldDescription] | |
[PXReferentialIntegrityCheck] | |
public string CustomerClassID { get; set; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[PXDBString(3, IsKey = true, IsFixed = true)] | |
[PXDefault] | |
[ARDocType.List] | |
[PXUIField(DisplayName = "Type", Visibility = PXUIVisibility.SelectorVisible, Enabled = true, TabOrder = 0)] | |
public string DocType { get; set; } | |
public class ARDocType : ILabelProvider { | |
public const string Invoice = "INV"; | |
public const string NoUpdate = "UND"; | |
public const string Undefined = "UND"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// The identifier of the business account.</summary> | |
/// <remarks>This field is auto-incremental and not visible | |
/// This field is a surrogate key, as opposed to the natural key <see cref="AcctCD"/>. | |
/// </remarks> | |
[PXDBIdentity] | |
[PXUIField(Visible = false, Visibility = PXUIVisibility.Invisible, DisplayName = "Account ID")] | |
[PXReferentialIntegrityCheck] | |
public int? BAccountID { get; set; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[PXDBGuid(false)] | |
[PXDefault] | |
public Guid? WebHookID { get; set; } | |
[PXDBString(128, IsUnicode=true, IsKey=true, InputMask="")] | |
[PXDefault] | |
[PXSelector(typeof(WebHook.name), new Type[] { typeof(WebHook.name), typeof(WebHook.isActive), typeof(WebHook.isSystem) })] | |
[PXUIField(DisplayName="Webhook Name")] | |
public string Name { get; set; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[PXDBIdentity(IsKey=true)] | |
[PXUIField(Visible=false)] | |
public int? LogID { get; set; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[PXDBLongIdentity(IsKey=true)] | |
[PXUIField(DisplayName="Record ID", Enabled=false, Visible=false)] | |
public long? RecordID { get; set; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[PXDBInt(IsKey = true)] | |
[PXUIField(DisplayName = "Line Nbr.", Visible = false)] | |
public int? LineNbr { get; set; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Child Key | |
[PXDBDefault(typeof(BCBinding.bindingID))] | |
[PXDBInt(IsKey=true)] | |
[PXParent(typeof(Select<BCBinding, Where<BCBinding.bindingID, Equal<Current<BCBindingBigCommerce.bindingID>>>>))] | |
[PXUIField(DisplayName="Store", Visible=false)] | |
public int? BindingID { get; set; } | |
// Parent Key | |
[PXDBIdentity] | |
[PXUIField(DisplayName="Store ID", Visible=false)] |
NewerOlder