Hi, I have implemented Invoice Capture. One problem I've run into is that when the program posts the invoice data to the invoice journal, it that it just grabs the first journal name. This happens in an abstract internal class:
using Newtonsoft.Json.Linq;internal abstract class VendInvoiceCapInvTransferProcessorBase
In this method:
protected LedgerJournalNameId getJournalName(LedgerJournalType ledgerJournalType) { LedgerJournalName ledgerJournalName; select firstonly JournalName from ledgerJournalName where ledgerJournalName.JournalType == ledgerJournalType; return ledgerJournalName.JournalName; }
I want to create a list of journal names and (somehow) override this method and allow the user to select the journal name for the journal that is created.
Any ideas?
ah, it's internal to the application suite...so nothing I can do..
Thanks