Github user nazeer1100126 commented on the issue:

    https://github.com/apache/fineract/pull/359
  
    @Ippezrobert I believe we need to implement savings transaction note 
similar to loan transaction note.
    1) Add a new column in m_note table for savings transaction id 
'savings_transaction_id'
     @ManyToOne
        @JoinColumn(name = "savings_transaction_id", nullable = true)
        private SavingsAccountTransaction savingsTransaction;
    2) Add a new note type in NoteType -> SAVINGS_TRANSACTION(800, 
"noteType.loan.transaction", "loanTransactions")
    3) Create savings transaction note with newly created savings account 
transaction.
    public static Note savingsTransactionNote(final SavingsAccount 
savingsAccount, final SavingsAccountTransaction savingsTransaction, final 
String note) {
            return new Note(savingsAccount, savingsTransaction, note);
    }
    4) Write the queries which are similar to loan transaction notes for 
savings transaction notes. 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to