<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — Edit Bank Transfer]]></title>
		<link>https://frontaccounting.com/punbb/viewtopic.php?id=3165</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=3165&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Edit Bank Transfer.]]></description>
		<lastBuildDate>Mon, 19 Jan 2015 17:44:06 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Edit Bank Transfer]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=22227#p22227</link>
			<description><![CDATA[<p>I was looking for such things and finally i find out my solution here and i am glad that i found truly helpful site.<br />I am an accounting student and always like to do something that can be helpful for others in accounting field by they way i have also a website about accounting solution related and frequently face some coding problem but now i found solution by find this site , thanks to all hard working people and thanks those people who post here and provide solution.</p>]]></description>
			<author><![CDATA[null@example.com (alauddin222)]]></author>
			<pubDate>Mon, 19 Jan 2015 17:44:06 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=22227#p22227</guid>
		</item>
		<item>
			<title><![CDATA[Re: Edit Bank Transfer]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=21040#p21040</link>
			<description><![CDATA[<p>Joe / Janusz - this needs to be in the core. Thanks @cambell!</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Fri, 03 Oct 2014 09:16:06 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=21040#p21040</guid>
		</item>
		<item>
			<title><![CDATA[Re: Edit Bank Transfer]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=20995#p20995</link>
			<description><![CDATA[<p>I&#039;ve implemented a bank transfer edit feature as per the OP request.&nbsp; The patch is <a href="https://github.com/cambell-prince/frontaccounting/commit/fad33ed06e661e7c7781bbeab866441a2da0669f">available here</a>.</p><p>If you have some mechanism for accepting pull requests let me know.</p><p>E2E tests are also available in my frontaccounting-wrapper repo.&nbsp; If you&#039;re interested in incorporating the e2e tests it would be nice to push the current code down one level and have the tests in a folder that is not in the main src (htdocs) tree.</p>]]></description>
			<author><![CDATA[null@example.com (cambell)]]></author>
			<pubDate>Sun, 28 Sep 2014 08:37:02 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=20995#p20995</guid>
		</item>
		<item>
			<title><![CDATA[Re: Edit Bank Transfer]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=12781#p12781</link>
			<description><![CDATA[<p>Joe, <br />Thank you very much for the date fix. This is very helpful.<br />As for the editing - based on what I&#039;ve seen of your work, &#039;tricky&#039; doesn&#039;t seem like it&#039;d be a problem for a guy like you <img src="https://frontaccounting.com/punbb/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p>-Joshua</p>]]></description>
			<author><![CDATA[null@example.com (sticmann)]]></author>
			<pubDate>Thu, 28 Jun 2012 12:02:25 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=12781#p12781</guid>
		</item>
		<item>
			<title><![CDATA[Re: Edit Bank Transfer]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=12779#p12779</link>
			<description><![CDATA[<p>Yes, it is tricky to allow editing of bank transfer, so it is not allowed.</p><p>However your topic regarding &#039;Remember last document date, will be fixed in next minor release.</p><p>In the mean time you can change in file /gl/bank_transfer, line 72.</p><p>Remove the existing line<br /></p><div class="codebox"><pre><code> 
date_row(_(&quot;Transfer Date:&quot;), &#039;DatePaid&#039;, &#039;&#039;, null, 0, 0, 0, null, true);</code></pre></div><p>and insert the following lines:<br /></p><div class="codebox"><pre><code>    if (!isset($_POST[&#039;DatePaid&#039;])) { // init page
        $_POST[&#039;DatePaid&#039;] = new_doc_date();
        if (!is_date_in_fiscalyear($_POST[&#039;DatePaid&#039;]))
            $_POST[&#039;DatePaid&#039;] = end_fiscalyear();
    }
    date_row(_(&quot;Transfer Date:&quot;), &#039;DatePaid&#039;, &#039;&#039;, true, 0, 0, 0, null, true);</code></pre></div><p>And insert at line 195:<br /></p><div class="codebox"><pre><code>    new_doc_date($_POST[&#039;DatePaid&#039;]);</code></pre></div><p>/Joe<br />This should fix it.</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Thu, 28 Jun 2012 10:18:01 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=12779#p12779</guid>
		</item>
		<item>
			<title><![CDATA[Edit Bank Transfer]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=12775#p12775</link>
			<description><![CDATA[<p>I see an edit button for modifying existing Bank Payments, but not for Bank Transfers. Is this a difficult thing to implement? I&#039;m sure it&#039;s not the last time I&#039;ll make a mistake on a transfer. I know I could void the transaction and re-enter it, but what a pain in the butt for just mis-inputting the date. <br />Speaking of the date, I have my system preferences set to Remember last document date, but the Bank Transfer page keeps going back to today.</p>]]></description>
			<author><![CDATA[null@example.com (sticmann)]]></author>
			<pubDate>Wed, 27 Jun 2012 21:37:43 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=12775#p12775</guid>
		</item>
	</channel>
</rss>
