示例#1
0
 internal void clientSettle(IJournalEntry clientSettleJournal, IJournalEntryLine newLine, IGLAccount account, Money balance, IBookingComponent bookingComponent, IAccountTypeInternal giroAccount)
 {
     newLine.GLAccount = account;
     newLine.Balance = balance;
     newLine.BookComponent = bookingComponent;
     newLine.GiroAccount = giroAccount;
     newLine.IsSettledStatus = true;
     clientSettleJournal.Lines.AddJournalEntryLine(newLine);
     newLine.BookLine();
 }