Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id C183D200CD3 for ; Thu, 13 Jul 2017 12:20:06 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id C013916BD2B; Thu, 13 Jul 2017 10:20:06 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 1AEEB16BD2C for ; Thu, 13 Jul 2017 12:20:05 +0200 (CEST) Received: (qmail 67682 invoked by uid 500); 13 Jul 2017 10:20:05 -0000 Mailing-List: contact dev-help@fineract.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@fineract.apache.org Delivered-To: mailing list dev@fineract.apache.org Received: (qmail 67490 invoked by uid 99); 13 Jul 2017 10:20:04 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Jul 2017 10:20:04 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 3F76C1A05C0 for ; Thu, 13 Jul 2017 10:20:04 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -99.202 X-Spam-Level: X-Spam-Status: No, score=-99.202 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id 8OlXhOvTQ1Vu for ; Thu, 13 Jul 2017 10:20:03 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id 053C160DF0 for ; Thu, 13 Jul 2017 10:20:03 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 7BDE3E0051 for ; Thu, 13 Jul 2017 10:20:01 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 435B92474A for ; Thu, 13 Jul 2017 10:20:00 +0000 (UTC) Date: Thu, 13 Jul 2017 10:20:00 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: dev@fineract.incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (FINERACT-241) Include "Add Note" to Deposit and Withdrawal screen in savings account MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Thu, 13 Jul 2017 10:20:06 -0000 [ https://issues.apache.org/jira/browse/FINERACT-241?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16085513#comment-16085513 ] ASF GitHub Bot commented on FINERACT-241: ----------------------------------------- Github user nazeer1100126 commented on a diff in the pull request: https://github.com/apache/fineract/pull/380#discussion_r127177143 --- Diff: fineract-provider/src/main/java/org/apache/fineract/portfolio/savings/service/SavingsAccountWritePlatformServiceJpaRepositoryImpl.java --- @@ -297,6 +303,12 @@ public CommandProcessingResult withdrawal(final Long savingsId, final JsonComman isRegularTransaction, isApplyWithdrawFee, isInterestTransfer, isWithdrawBalance); final SavingsAccountTransaction withdrawal = this.savingsAccountDomainService.handleWithdrawal(account, fmt, transactionDate, transactionAmount, paymentDetail, transactionBooleanValues); + + final String noteText = command.stringValueOfParameterNamed("note"); + if (StringUtils.isNotBlank(noteText)) { + final Note note = Note.savingNote(account, noteText); --- End diff -- need to create Note object by savingsTransactionNote > 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)