[
https://issues.apache.org/jira/browse/FINERACT-241?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16066305#comment-16066305
]
ASF GitHub Bot commented on FINERACT-241:
-----------------------------------------
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.
> Include "Add Note" to Deposit and Withdrawal screen in savings account
> ----------------------------------------------------------------------
>
> Key: FINERACT-241
> URL: https://issues.apache.org/jira/browse/FINERACT-241
> Project: Apache Fineract
> Issue Type: Improvement
> Reporter: Dayna Harp
> Assignee: Markus Geiss
> Labels: beginner, p3
>
> https://mifosforge.jira.com/browse/MIFOSX-2620
> Refer to MIFOSX for images
> Include "Add Note" to Deposit and Withdrawal screen in savings account so
> that narration can be added especially name of the person who has deposited
> which may not be necessarily the account holder. Its good for controls and
> follow ups.
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)