![]() |
#3 |
Участник
|
Код: final class Originaldocuments { LedgerTrans ledgerTrans_Caller; CustTrans custTrans_Caller; VendTrans vendTrans_Caller; BankAccountTrans bankAccountTrans_Caller; TmpLedgerBase tmpLedgerBase; Integer numTrans; TmpChequePrintout tmpChequePrintout; RCashTrans cashTrans_Caller; // EGLA, Cash II // ---> NEW BillsTrans billsTrans_Caller; // <--- NEW } void findRelations() { ; tmpLedgerBase = null; this.findFromLedgerTrans(); this.findFromCustTrans(); this.findFromVendTrans(); this.findFromBankAccountTrans(); this.findFromRCashTrans(); // EGLA, Cash II // ---> NEW this.findFrom_BillsTrans(); // <--- NEW } void findFrom_BillsTrans() { // здесь по образу и подобию прочесываются таблицы трансов номого модуля } |
|