I want to get receipt no and including invoices on that receipt no when i am fetching receive payment from my code.
msgSetReq = qbsm.CreateMsgSetRequest("US", 8, 0); IReceivePaymentQuery RecPayQuery = msgSetReq.AppendReceivePaymentQueryRq(); msgSetRes = qbsm.DoRequests(msgSetReq); if (msgSetRes != null) { IResponseList responseList = msgSetRes.ResponseList; ListLstCustPay = new List (); for (int i = 0; i < responseList.Count; i++) { IResponse res = responseList.GetAt(i); if (res != null) { IReceivePaymentRetList RecPayRetList = (IReceivePaymentRetList)res.Detail; if (RecPayRetList != null) { for (int j = 0; j < RecPayRetList.Count; j++) { IReceivePaymentRet RecPayRet = RecPayRetList.GetAt(j); Receipt Receipt = new Receipt(); if (RecPayRet != null)
if (RecPayRet.CustomerRef != null) { if (RecPayRet.CustomerRef.ListID != null) { Receipt.CustomerCode = RecPayRet.CustomerRef.ListID.GetValue(); } if (RecPayRet.CustomerRef.FullName != null) { Receipt.CustomerName = RecPayRet.CustomerRef.FullName.GetValue(); } } else { Receipt.CustomerCode = string.Empty; }now I want to get receipt no and invoices on that receipt no.
can anyone help me for my problem please.there may be multiple invoices in a receipt no.
please give me a good solution

Maen BadwanPosted Nov 24, 2016, 5:45 AM
https://www.leadtools.com/sdk/forms/invoice
https://www.leadtools.com/help/leadtools/v19/dh/to/leadtools.topics.forms~fr.topics.programmingwithleadtoolsformsrecognitionprocessingengine.html
If this is not what you are looking for, please provide more details about your requirements with source files if possible.
Disclaimer: I am an employee of this library.