<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[FrontAccounting forum — Bank Account Payment Entry / gl/gl_bank.php?NewPayment=Yes]]></title>
	<link rel="self" href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=9035&amp;type=atom" />
	<updated>2021-01-28T21:37:59Z</updated>
	<generator>PunBB</generator>
	<id>https://frontaccounting.com/punbb/viewtopic.php?id=9035</id>
		<entry>
			<title type="html"><![CDATA[Re: Bank Account Payment Entry / gl/gl_bank.php?NewPayment=Yes]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=39062#p39062" />
			<content type="html"><![CDATA[<p>Yeah, i am getting this error from journal entry&nbsp; &nbsp;</p><div class="quotebox"><blockquote><p>finance/gl/gl_journal.php?NewJournal=Yes</p></blockquote></div>]]></content>
			<author>
				<name><![CDATA[cedricktshiyoyo]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=45118</uri>
			</author>
			<updated>2021-01-28T21:37:59Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=39062#p39062</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Bank Account Payment Entry / gl/gl_bank.php?NewPayment=Yes]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=39061#p39061" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>cedricktshiyoyo wrote:</cite><blockquote><p>yeah it may be confusing for sure.</p><p>I think you know what I was trying to do recently with bank payments.</p><p>1. I have altered bank_trans , added 2 extra fields, check_no &amp; source_ref<br />2. I have made little changes in gl/gl_bank.php<br />3. gl/includes/db/gl_db_bank_trans.inc // New code </p><div class="quotebox"><blockquote><p>function add_bank_trans($type, $trans_no, $bank_act, $ref,$check_no, $source_ref, $date_,<br />&nbsp; &nbsp; $amount, $person_type_id, $person_id, $currency=&quot;&quot;, $err_msg=&quot;&quot;, $rate=0)<br />{<br />&nbsp; &nbsp; $sqlDate = date2sql($date_);</p><p>&nbsp; &nbsp; // convert $amount to the bank&#039;s currency<br />&nbsp; &nbsp; if ($currency != &quot;&quot;)<br />&nbsp; &nbsp; {<br />&nbsp; &nbsp; &nbsp; &nbsp; $bank_account_currency = get_bank_account_currency($bank_act);<br />&nbsp; &nbsp; &nbsp; &nbsp; if ($rate == 0)<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $to_bank_currency = get_exchange_rate_from_to($currency, $bank_account_currency, $date_);<br />&nbsp; &nbsp; &nbsp; &nbsp; else<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $to_bank_currency = 1 / $rate;<br />&nbsp; &nbsp; &nbsp; &nbsp; $amount_bank = ($amount / $to_bank_currency);<br />&nbsp; &nbsp; }<br />&nbsp; &nbsp; else<br />&nbsp; &nbsp; &nbsp; &nbsp; $amount_bank = $amount;<br />&nbsp; &nbsp; $amount_bank = round2($amount_bank, user_price_dec());&nbsp; &nbsp; </p><p>&nbsp; &nbsp; $sql = &quot;INSERT INTO &quot;.TB_PREF.&quot;bank_trans (type, trans_no, bank_act, ref, check_no, source_ref,<br />&nbsp; &nbsp; &nbsp; &nbsp; trans_date, amount, person_type_id, person_id) &quot;;</p><p>&nbsp; &nbsp; $sql .= &quot;VALUES ($type, $trans_no, &#039;$bank_act&#039;, &quot;.db_escape($ref).&quot;, &quot;.db_escape($check_no).&quot;,&quot;.db_escape($source_ref).&quot;,&#039;$sqlDate&#039;,<br />&nbsp; &nbsp; &nbsp; &nbsp; &quot;.db_escape($amount_bank).&quot;, &quot;.db_escape($person_type_id)<br />&nbsp; &nbsp; &nbsp; &nbsp; .&quot;, &quot;. db_escape($person_id).&quot;)&quot;;</p><p>&nbsp; &nbsp; if ($err_msg == &quot;&quot;)<br />&nbsp; &nbsp; &nbsp; &nbsp; $err_msg = &quot;The bank transaction could not be inserted&quot;;</p><p>&nbsp; &nbsp; db_query($sql, $err_msg);<br />}</p></blockquote></div></blockquote></div><p>I don&#039;t think there is anything wrong with the above from what I can see. Do you know where this is being called from in this instance where you are getting the error message?</p>]]></content>
			<author>
				<name><![CDATA[tom.horton]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=44772</uri>
			</author>
			<updated>2021-01-28T21:18:40Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=39061#p39061</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Bank Account Payment Entry / gl/gl_bank.php?NewPayment=Yes]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=39060#p39060" />
			<content type="html"><![CDATA[<p>And of course the validation to not accept empty field in cheque no... that&#039;s all I did<br /></p><div class="quotebox"><blockquote><p>if (strlen($_POST[&#039;check_no&#039;]) == 0 || $_POST[&#039;check_no&#039;] == &quot;&quot;) // new line validation added on sunday november 21 2020<br />&nbsp; &nbsp; {<br />&nbsp; &nbsp; &nbsp; &nbsp; display_error(_(&quot;The cheque no&nbsp; reference field must be entered.&quot;)); // new line validation<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if (get_post(&#039;currency&#039;) != get_company_pref(&#039;curr_default&#039;))<br />&nbsp; &nbsp; &nbsp; &nbsp; set_focus(&#039;check_no&#039;); if (isset($_POST[&#039;_ex_rate&#039;]) &amp;&amp; !check_num(&#039;_ex_rate&#039;, 0.000001))<br />&nbsp; &nbsp; &nbsp; &nbsp; return false; {<br />&nbsp; &nbsp; }&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; display_error(_(&quot;The exchange rate must be numeric and greater than zero.&quot;));<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; set_focus(&#039;_ex_rate&#039;);<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $input_error = 1;<br />&nbsp; &nbsp; &nbsp; &nbsp; }</p></blockquote></div>]]></content>
			<author>
				<name><![CDATA[cedricktshiyoyo]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=45118</uri>
			</author>
			<updated>2021-01-28T21:14:14Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=39060#p39060</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Bank Account Payment Entry / gl/gl_bank.php?NewPayment=Yes]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=39059#p39059" />
			<content type="html"><![CDATA[<p>5. in gl/includes/ui/gl_bank_ui.inc </p><div class="quotebox"><blockquote><p>text_row(_(&quot;Cheque No:&quot;),&nbsp; &#039;check_no&#039;, $_POST[&#039;check_no&#039;], 16, 40); </p><p>payment_person_types_list_row( $payment ? _(&quot;Pay To:&quot;):_(&quot;From:&quot;),<br />&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &#039;PayType&#039;, $_POST[&#039;PayType&#039;], true);<br />&nbsp; &nbsp; switch ($_POST[&#039;PayType&#039;])<br />&nbsp; &nbsp; {<br />&nbsp; &nbsp; &nbsp; &nbsp; case PT_MISC :<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; text_row_ex($payment ?_(&quot;To the Order of:&quot;):_(&quot;Name:&quot;),<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &#039;person_id&#039;, 20, 50);<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; text_row(_(&quot;Voucher No:&quot;), &#039;source_ref&#039;, null, 20, 50);&nbsp; &nbsp; // Newly Added<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;</p></blockquote></div>]]></content>
			<author>
				<name><![CDATA[cedricktshiyoyo]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=45118</uri>
			</author>
			<updated>2021-01-28T21:10:00Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=39059#p39059</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Bank Account Payment Entry / gl/gl_bank.php?NewPayment=Yes]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=39058#p39058" />
			<content type="html"><![CDATA[<p>4. gl/includes/db/gl_db_banking.inc </p><div class="quotebox"><blockquote><p>function write_bank_transaction($trans_type, $trans_no, $from_account, $items, $date_,<br />&nbsp; &nbsp; $person_type_id, $person_id, $person_detail_id,&nbsp; &nbsp; $ref, $check_no, $source_ref ,$memo_, $use_transaction=true, $settled_amount=null)<br />{<br />&nbsp; &nbsp; global $Refs, $SysPrefs;</p><p>&nbsp; &nbsp; // we can only handle type 1 (payment)and type 2 (deposit)<br />&nbsp; &nbsp; if ($trans_type != ST_BANKPAYMENT &amp;&amp; $trans_type != ST_BANKDEPOSIT)<br />&nbsp; &nbsp; &nbsp; &nbsp; display_db_error(&quot;Invalid type ($trans_type) sent to add_bank_transaction&quot;);</p><p>&nbsp; &nbsp; $do_exchange_variance = false;<br />&nbsp; &nbsp; $exchanged = false;<br />&nbsp; &nbsp; if ($use_transaction)<br />&nbsp; &nbsp; &nbsp; &nbsp; begin_transaction();</p><p>&nbsp; &nbsp; $args = func_get_args(); if (count($args) &lt; 11) $args[] = true;<br />&nbsp; &nbsp; $args = (object)array_combine(array(&#039;trans_type&#039;, &#039;trans_no&#039;, &#039;from_account&#039;, &#039;items&#039;, &#039;date_&#039;,<br />&nbsp; &nbsp; &nbsp; &nbsp; &#039;person_type_id&#039;, &#039;person_id&#039;, &#039;person_detail_id&#039;, &#039;ref&#039;,&#039;check_no&#039;,&#039;source_ref&#039;, &#039;memo_&#039;, &#039;use_transaction&#039;, &#039;settled_amount&#039;),<br />&nbsp; &nbsp; &nbsp; &nbsp; $args);</p></blockquote></div>]]></content>
			<author>
				<name><![CDATA[cedricktshiyoyo]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=45118</uri>
			</author>
			<updated>2021-01-28T21:07:01Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=39058#p39058</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Bank Account Payment Entry / gl/gl_bank.php?NewPayment=Yes]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=39057#p39057" />
			<content type="html"><![CDATA[<p>yeah it may be confusing for sure.</p><p>I think you know what I was trying to do recently with bank payments.</p><p>1. I have altered bank_trans , added 2 extra fields, check_no &amp; source_ref<br />2. I have made little changes in gl/gl_bank.php<br />3. gl/includes/db/gl_db_bank_trans.inc // New code </p><div class="quotebox"><blockquote><p>function add_bank_trans($type, $trans_no, $bank_act, $ref,$check_no, $source_ref, $date_,<br />&nbsp; &nbsp; $amount, $person_type_id, $person_id, $currency=&quot;&quot;, $err_msg=&quot;&quot;, $rate=0)<br />{<br />&nbsp; &nbsp; $sqlDate = date2sql($date_);</p><p>&nbsp; &nbsp; // convert $amount to the bank&#039;s currency<br />&nbsp; &nbsp; if ($currency != &quot;&quot;)<br />&nbsp; &nbsp; {<br />&nbsp; &nbsp; &nbsp; &nbsp; $bank_account_currency = get_bank_account_currency($bank_act);<br />&nbsp; &nbsp; &nbsp; &nbsp; if ($rate == 0)<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $to_bank_currency = get_exchange_rate_from_to($currency, $bank_account_currency, $date_);<br />&nbsp; &nbsp; &nbsp; &nbsp; else<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $to_bank_currency = 1 / $rate;<br />&nbsp; &nbsp; &nbsp; &nbsp; $amount_bank = ($amount / $to_bank_currency);<br />&nbsp; &nbsp; }<br />&nbsp; &nbsp; else<br />&nbsp; &nbsp; &nbsp; &nbsp; $amount_bank = $amount;<br />&nbsp; &nbsp; $amount_bank = round2($amount_bank, user_price_dec());&nbsp; &nbsp; </p><p>&nbsp; &nbsp; $sql = &quot;INSERT INTO &quot;.TB_PREF.&quot;bank_trans (type, trans_no, bank_act, ref, check_no, source_ref,<br />&nbsp; &nbsp; &nbsp; &nbsp; trans_date, amount, person_type_id, person_id) &quot;;</p><p>&nbsp; &nbsp; $sql .= &quot;VALUES ($type, $trans_no, &#039;$bank_act&#039;, &quot;.db_escape($ref).&quot;, &quot;.db_escape($check_no).&quot;,&quot;.db_escape($source_ref).&quot;,&#039;$sqlDate&#039;,<br />&nbsp; &nbsp; &nbsp; &nbsp; &quot;.db_escape($amount_bank).&quot;, &quot;.db_escape($person_type_id)<br />&nbsp; &nbsp; &nbsp; &nbsp; .&quot;, &quot;. db_escape($person_id).&quot;)&quot;;</p><p>&nbsp; &nbsp; if ($err_msg == &quot;&quot;)<br />&nbsp; &nbsp; &nbsp; &nbsp; $err_msg = &quot;The bank transaction could not be inserted&quot;;</p><p>&nbsp; &nbsp; db_query($sql, $err_msg);<br />}</p></blockquote></div>]]></content>
			<author>
				<name><![CDATA[cedricktshiyoyo]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=45118</uri>
			</author>
			<updated>2021-01-28T21:05:05Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=39057#p39057</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Bank Account Payment Entry / gl/gl_bank.php?NewPayment=Yes]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=39056#p39056" />
			<content type="html"><![CDATA[<p>I think it is getting confused somewhere. I would need to see the full code (the whole PHP file) in order to try and find an answer for you I think.</p>]]></content>
			<author>
				<name><![CDATA[tom.horton]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=44772</uri>
			</author>
			<updated>2021-01-28T20:56:52Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=39056#p39056</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Bank Account Payment Entry / gl/gl_bank.php?NewPayment=Yes]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=39055#p39055" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>INSERT INTO bank_trans (type, trans_no, bank_act, ref, check_no, source_ref, trans_date, amount, person_type_id, person_id) VALUES (0, 1406, &#039;5&#039;, &#039;126/2021&#039;, &lt;check_no&gt;, &lt;source_ref&gt;, &#039;01/28/2021&#039;,&#039;-45&#039;, &#039;&lt;person_type_id&gt;&#039;, &#039;&lt;person_id&gt;&#039;)</code></pre></div><p>Here i am dealing with journal entry, not bank payment. The code above is correct when i process bank payment. but only when happens when i SWITCH TO journal entry.</p><p>Are you able to perfom journal entry which involves bank accounts?</p>]]></content>
			<author>
				<name><![CDATA[cedricktshiyoyo]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=45118</uri>
			</author>
			<updated>2021-01-28T20:52:16Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=39055#p39055</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Bank Account Payment Entry / gl/gl_bank.php?NewPayment=Yes]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=39054#p39054" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>tom.horton wrote:</cite><blockquote><p>It looks like your SQL is trying to insert &quot;ETB&quot; (string) into the &quot;person_type_id&quot; field (an integer). I think it just needs re-aligning again.</p></blockquote></div><p>yeah, but i have not made changes for gl_journal.php <br />I think the code is supposed to ignore person_id when the entry type is ST_JOURNAL</p>]]></content>
			<author>
				<name><![CDATA[cedricktshiyoyo]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=45118</uri>
			</author>
			<updated>2021-01-28T20:39:01Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=39054#p39054</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Bank Account Payment Entry / gl/gl_bank.php?NewPayment=Yes]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=39053#p39053" />
			<content type="html"><![CDATA[<p>This is how it should look:</p><div class="codebox"><pre><code>INSERT INTO bank_trans (type, trans_no, bank_act, ref, check_no, source_ref, trans_date, amount, person_type_id, person_id) VALUES (0, 1406, &#039;5&#039;, &#039;126/2021&#039;, &lt;check_no&gt;, &lt;source_ref&gt;, &#039;01/28/2021&#039;,&#039;-45&#039;, &#039;&lt;person_type_id&gt;&#039;, &#039;&lt;person_id&gt;&#039;)</code></pre></div><p>It doesn&#039;t look like you have a field for &quot;ETB&quot; to go into?</p><p>Also, your date format is wrong. It should be &quot;2021-01-28&quot;.</p>]]></content>
			<author>
				<name><![CDATA[tom.horton]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=44772</uri>
			</author>
			<updated>2021-01-28T20:35:23Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=39053#p39053</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Bank Account Payment Entry / gl/gl_bank.php?NewPayment=Yes]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=39052#p39052" />
			<content type="html"><![CDATA[<p>It looks like your SQL is trying to insert &quot;ETB&quot; (string) into the &quot;person_type_id&quot; field (an integer). I think it just needs re-aligning again.</p>]]></content>
			<author>
				<name><![CDATA[tom.horton]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=44772</uri>
			</author>
			<updated>2021-01-28T20:26:19Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=39052#p39052</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Bank Account Payment Entry / gl/gl_bank.php?NewPayment=Yes]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=39051#p39051" />
			<content type="html"><![CDATA[<p>I was able to solve one of the errors, now on journal entry, I am getting this error. when there is a bank account involved in the process.<br />Tell me are you able to process journal entries after ALTERING bank_trans table with CHEQUE_NO AND SOURCE_REF?</p><div class="quotebox"><blockquote><p>Undefined offset: 1 in file: /var/www/html/finance/includes/date_functions.inc at line 386Undefined offset: 2 in file: /var/www/html/finance/includes/date_functions.inc at line 386DATABASE ERROR : The bank transaction could not be inserted<br />error code : 1366<br />error message : Incorrect integer value: &#039;ETB&#039; for column &#039;person_type_id&#039; at row 1<br />sql that failed was : INSERT INTO bank_trans (type, trans_no, bank_act, ref, check_no, source_ref, trans_date, amount, person_type_id, person_id) VALUES (0, 1406, &#039;5&#039;, &#039;126/2021&#039;, &#039;01/28/2021&#039;,&#039;-45&#039;,&#039;0000-00-00&#039;, &#039;0&#039;, &#039;ETB&#039;, &#039;Cannot insert a destination bank transaction&#039;)</p></blockquote></div>]]></content>
			<author>
				<name><![CDATA[cedricktshiyoyo]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=45118</uri>
			</author>
			<updated>2021-01-28T20:13:54Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=39051#p39051</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Bank Account Payment Entry / gl/gl_bank.php?NewPayment=Yes]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=39048#p39048" />
			<content type="html"><![CDATA[<p>@cedricktshiyoyo Sorry for the delay. Glad you managed to get it sorted.</p>]]></content>
			<author>
				<name><![CDATA[tom.horton]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=44772</uri>
			</author>
			<updated>2021-01-28T19:01:49Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=39048#p39048</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Bank Account Payment Entry / gl/gl_bank.php?NewPayment=Yes]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=39046#p39046" />
			<content type="html"><![CDATA[<p>Sorry for this error i found the problem, I add forgotten to&nbsp; check_no inside quotes like this </p><div class="codebox"><pre><code> text_row(_(&quot;Cheque no:&quot;), &#039;check_no&#039;, null, 16,30);</code></pre></div><div class="quotebox"><blockquote><p>Journal Entry&nbsp; &nbsp;<br />Missing argument 5 for text_row(), called in /var/www/html/finance/gl/includes/ui/gl_journal_ui.inc on line 46 and defined in file: /var/www/html/finance/includes/ui/ui_input.inc at line 631Undefined variable: max in file: /var/www/html/finance/includes/ui/ui_input.inc at line 634</p></blockquote></div>]]></content>
			<author>
				<name><![CDATA[cedricktshiyoyo]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=45118</uri>
			</author>
			<updated>2021-01-28T12:16:26Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=39046#p39046</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Bank Account Payment Entry / gl/gl_bank.php?NewPayment=Yes]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=39045#p39045" />
			<content type="html"><![CDATA[<p>@tom.horton hope you are fine.</p><p>I was not able to process journal entries or Bank Transfer after modifying the code. <br />Are you able to process journal entries without any errors?<br /></p><div class="quotebox"><blockquote><p>Journal Entry&nbsp; &nbsp; <br />Missing argument 5 for text_row(), called in /var/www/html/finance/gl/includes/ui/gl_journal_ui.inc on line 46 and defined in file: /var/www/html/finance/includes/ui/ui_input.inc at line 631Undefined variable: max in file: /var/www/html/finance/includes/ui/ui_input.inc at line 634</p></blockquote></div><div class="quotebox"><blockquote><p>You must enter at least one journal line.Undefined index: check_no in file: /var/www/html/finance/gl/gl_journal.php at line 243The source reference field must be entered.The exchange rate must be numeric and greater than zero.Missing argument 5 for text_row(), called in /var/www/html/finance/gl/includes/ui/gl_journal_ui.inc on line 46 and defined in file: /var/www/html/finance/includes/ui/ui_input.inc at line 631Undefined variable: max in file: /var/www/html/finance/includes/ui/ui_input.inc at line 634</p></blockquote></div>]]></content>
			<author>
				<name><![CDATA[cedricktshiyoyo]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=45118</uri>
			</author>
			<updated>2021-01-28T11:59:14Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=39045#p39045</id>
		</entry>
</feed>
