Browse Source

low txn report

Ime-london-webcore
Leeza Baidar 7 months ago
parent
commit
81a405216e
  1. 11
      Swift.DAL/Remittance/Transaction/TranAgentReportDao.cs

11
Swift.DAL/Remittance/Transaction/TranAgentReportDao.cs

@ -356,16 +356,13 @@ namespace Swift.DAL.BL.Remit.Transaction
sql += ",@isOnlineTxn=" + FilterString(isOnlineTxn);
return ParseReportResult(sql);
}
public ReportResult GetNewRegistrationReport(string user, string flag, string fromDate, string toDate, string agentId, string branchId, string withAgent)
public ReportResult GetNewRegistrationReport(string user, string flag, string fromDate)
{
var sql = "PROC_REGISTRATION_REPORT ";
var sql = "proc_low_txn_report ";
sql += "@flag =" + FilterString(flag); ;
sql += ",@user=" + FilterString(user);
sql += ",@FROM_DATE=" + FilterString(fromDate);
sql += ",@TO_DATE=" + FilterString(toDate);
sql += ",@agentId=" + FilterString(agentId);
sql += ",@branchId=" + FilterString(branchId);
sql += ",@withAgent=" + FilterString(withAgent);
sql += ",@fromDate=" + FilterString(fromDate);
return ParseReportResult(sql);
}
public ReportResult GetDisabledCustomersReport(string user, string flag, string fromDate, string toDate)

Loading…
Cancel
Save