Skip to content

Instantly share code, notes, and snippets.

@BrianMRO
Created November 25, 2020 00:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BrianMRO/86e23999660ecdae676cbf77f007c457 to your computer and use it in GitHub Desktop.
Save BrianMRO/86e23999660ecdae676cbf77f007c457 to your computer and use it in GitHub Desktop.
EPApproval Cache Attached
#region EPApproval Cache Attached
[PXDBDate()]
[PXDefault(typeof(SSRQRequisition.requestDate), PersistingCheck = PXPersistingCheck.Nothing)]
protected virtual void EPApproval_DocDate_CacheAttached(PXCache sender)
{
}
[PXDBInt()]
[PXDefault(typeof(SSRQRequisition.customerID), PersistingCheck = PXPersistingCheck.Nothing)]
protected virtual void EPApproval_BAccountID_CacheAttached(PXCache sender)
{
}
[PXDBGuid()]
[PXDefault(typeof(SSRQRequisition.ownerID), PersistingCheck = PXPersistingCheck.Nothing)]
protected virtual void EPApproval_DocumentOwnerID_CacheAttached(PXCache sender)
{
}
[PXDBString(60, IsUnicode = true)]
[PXDefault(typeof(SSRQRequisition.descr), PersistingCheck = PXPersistingCheck.Nothing)]
protected virtual void EPApproval_Descr_CacheAttached(PXCache sender)
{
}
[PXDBLong()]
[CurrencyInfo(typeof(SSRQRequisition.curyInfoID))]
protected virtual void EPApproval_CuryInfoID_CacheAttached(PXCache sender)
{
}
[PXDBDecimal(4)]
[PXDefault(typeof(SSRQRequisition.curyTotalAmount), PersistingCheck = PXPersistingCheck.Nothing)]
protected virtual void EPApproval_CuryTotalAmount_CacheAttached(PXCache sender)
{
}
[PXDBDecimal(4)]
[PXDefault(typeof(SSRQRequisition.totalAmount), PersistingCheck = PXPersistingCheck.Nothing)]
protected virtual void EPApproval_TotalAmount_CacheAttached(PXCache sender)
{
}
#endregion
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment