This commit is contained in:
2021-06-23 20:04:55 +00:00
parent b21cf8ce57
commit 6927412ca8
28 changed files with 61 additions and 34 deletions

View File

@@ -355,8 +355,9 @@ namespace AyaNova.Biz
////////////////////////////////////////////////////////////////////////////////////////////////
//REPORTING
//
public async Task<JArray> GetReportData(long[] idList)
public async Task<JArray> GetReportData(DataListSelectedRequest dataListSelectedRequest)
{
var idList = dataListSelectedRequest.SelectedRowIds;
JArray ReportData = new JArray();
while (idList.Any())
{
@@ -531,7 +532,7 @@ namespace AyaNova.Biz
await NotifyEventHelper.ProcessStandardObjectEvents(ayaEvent, proposedObj, ct);
//SPECIFIC EVENTS FOR THIS OBJECT
Customer o = (Customer)proposedObj;
Customer o = (Customer)proposedObj;
//## DELETED EVENTS
//any event added below needs to be removed, so
@@ -543,7 +544,7 @@ namespace AyaNova.Biz
//## CREATED / MODIFIED EVENTS
if (ayaEvent == AyaEvent.Created || ayaEvent == AyaEvent.Modified)
{
{
//# CONTRACT EXPIRY
{