<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — Accounts Receivable]]></title>
		<link>https://frontaccounting.com/punbb/index.php</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;fid=26&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent topics at FrontAccounting forum.]]></description>
		<lastBuildDate>Sat, 02 Mar 2024 23:40:53 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[The invoice file not found]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=10477&amp;action=new</link>
			<description><![CDATA[<p>The problem is if I try to raise invoice not possible doing the entries but finally shown as empty sales order and get message the invoice file not found , also I can’t export the report as excel.</p><p>Also sometime if I try to edit the journal entry not responding in some companies and reflecting in others.</p><p>I don’t know what’s the problem it was working good.</p><p>Please help.</p>]]></description>
			<author><![CDATA[null@example.com (dian)]]></author>
			<pubDate>Sat, 02 Mar 2024 23:40:53 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=10477&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Thousands of sales order need to be converted to invoice]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=10469&amp;action=new</link>
			<description><![CDATA[<p>hi, we had an local event for which we used frontaccounting, however due to suppliers not providing actual invoices initially, we opted to bill using salesorder , now we have around 5,000 sales orders to be converted to invoice. which is a huge task considering we have to convert each one by one,</p><p>IS THERE ANY WAY TO CONVERT MULTIPLE SALES ORDERS TO SINGLE DELIVER ? as we can have multiple delivery notes to invoice ?</p><p>Look forward for any of your help</p><p>Regads</p><p>Roshan</p>]]></description>
			<author><![CDATA[null@example.com (abuzarif)]]></author>
			<pubDate>Tue, 20 Feb 2024 13:33:32 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=10469&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Show and Print Both Bill To address and Shipping Address]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=10440&amp;action=new</link>
			<description><![CDATA[<p>We have a leasing company that is one of the funding sources for our business, They require the invoice to show the bill to -- to them and the ship to address to the customer, But I cannot seem to find a way for the invoice to print both</p>]]></description>
			<author><![CDATA[null@example.com (willie14228)]]></author>
			<pubDate>Fri, 22 Dec 2023 19:16:25 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=10440&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Show bank account in Customer Transactions type:payment]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=10403&amp;action=new</link>
			<description><![CDATA[<p>Hi</p><p>As a contribution for this forum included the customisation files to show the bank account then user consult customer transactions, type: Payment.</p><p>For those who are interested, insert the files at this address</p><p>sales/inquiry/customer_inquiry.php<br />sales/includes/db/cust_trans_db.inc</p>]]></description>
			<author><![CDATA[null@example.com (Rmendez)]]></author>
			<pubDate>Thu, 09 Nov 2023 18:23:19 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=10403&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Better sql construct in sales/includes/db/sales_order_db.inc]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=10393&amp;action=new</link>
			<description><![CDATA[<p>At the end of the file <strong>sales/includes/db/sales_order_db.inc</strong> we have:<br /></p><div class="codebox"><pre><code>function last_sales_order_detail($order, $field)
{
        $sql = &quot;SELECT $field
            FROM &quot;.TB_PREF.&quot;sales_order_details d
            WHERE order_no =
            (SELECT order_no FROM &quot;.TB_PREF.&quot;sales_orders o
            WHERE debtor_no=&quot; . db_escape($order-&gt;customer_id) . &quot;
            ORDER BY order_no DESC LIMIT 1)
            ORDER BY d.id DESC LIMIT 1&quot;;        

        $last_query=db_query($sql, &quot;Could not retrieve last order detail&quot;);
        $row = db_fetch_row($last_query);
        return $row == false ? false : $row[0];
}</code></pre></div><p>Kindly change it to:</p><div class="codebox"><pre><code>function last_sales_order_detail($order, $field)
{
        $sql = &quot;SELECT $field
            FROM &quot;.TB_PREF.&quot;sales_order_details d
            LEFT JOIN &quot; .TB_PREF.&quot;sales_orders o on d.order_no=o.order_no
            WHERE debtor_no=&quot; . db_escape($order-&gt;customer_id) . &quot;
            ORDER BY d.id DESC LIMIT 1&quot;;

        $last_query=db_query($sql, &quot;Could not retrieve last order detail&quot;);
        $row = db_fetch_row($last_query);
        return $row == false ? false : $row[0];
}</code></pre></div><p>It uses a left join instead of a secondary select.</p><p>The <strong>on d.order_no=o.order_no</strong> can become <strong>USING (order_no)</strong> to further optimise it.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Fri, 27 Oct 2023 18:47:39 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=10393&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Sales Tab - PHP8.2]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=10390&amp;action=new</link>
			<description><![CDATA[<p>When I set my PHP to 8.2 with FA 2.4.17 the following error shows:</p><p>Creation of dynamic property front_accounting::$renderer is deprecated in file: /home/mydomain/public_html/accounts/frontaccounting.php at line 66</p><p>When I switch back to php 8.1 it goes away.</p>]]></description>
			<author><![CDATA[null@example.com (seahawk)]]></author>
			<pubDate>Thu, 19 Oct 2023 14:35:59 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=10390&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[RB Missing in newer versions from custome transaction enquiry]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=10375&amp;action=new</link>
			<description><![CDATA[<p>Hi,</p><p>we have two instances of frontaccounting , one which was installed 3-4 years back version 2.3.21 and a newer one with version 2.4.15, We&nbsp; have a column called &quot;RB&quot; in customer transaction enquiry window (see attached screenshot) in the older version which is very useful to see how much total payment was received in a month or during a period.</p><p>However the same is not seen in the newer versions like 2.4.15 (attaching screenshot) and cant see the same in demo version of FA also, let us know how we can have the &quot;RB&quot; for the newer versions ?</p><p>Thanks..</p>]]></description>
			<author><![CDATA[null@example.com (abuzarif)]]></author>
			<pubDate>Sun, 17 Sep 2023 08:02:53 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=10375&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Aged Customer Analysis]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=10362&amp;action=new</link>
			<description><![CDATA[<p>The aged Customer Analysis differs from the customer Balance report.</p><p>As can be seen from the two attachments, the Customer balance shows correctly whilst the Aged Customer analysis does not.</p><br /><p>The Customer balance sees the journal as a credit, while the Aged Customer Analysis see the same journal as a debit.</p><p>I cannot upload the second file.</p>]]></description>
			<author><![CDATA[null@example.com (seahawk)]]></author>
			<pubDate>Wed, 30 Aug 2023 15:18:44 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=10362&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Invoice stop printing]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=10348&amp;action=new</link>
			<description><![CDATA[<p>My FA stop printing invoice.&nbsp; After the invoice has been posted nothing will show when you click &quot;print Invoice&quot;</p><p>this is the error msg i got.</p><p>/home/ufitflyn/public_html/fly/sales/includes/db/cust_trans_db.inc:214: &nbsp; &nbsp; display_backtrace()<br />/home/ufitflyn/public_html/fly/reporting/rep107.php:126: &nbsp; &nbsp; get_customer_trans(&#039;2&#039;,&#039;10&#039;)<br />/home/ufitflyn/public_html/fly/reporting/rep107.php:57: &nbsp; &nbsp; print_invoices()<br />/home/ufitflyn/public_html/fly/modules/KvcodesInvoices/reporting/rep107.php:25: &nbsp; &nbsp; include_once(&#039;/home/ufitflyn/public_html/fly/reporting/rep107.php&#039;)<br />/home/ufitflyn/public_html/fly/reporting/prn_redirect.php:58: &nbsp; &nbsp; require(&#039;/home/ufitflyn/public_html/fly/modules/KvcodesInvoices/reporting/rep107.php&#039;)<br />DATABASE ERROR : duplicate debtor transactions found for given params<br />sql that failed was : SELECT trans.*,ov_amount+ov_gst+ov_freight+ov_freight_tax+ov_discount AS Total,cust.name AS DebtorName, cust.address, cust.debtor_ref, cust.curr_code, cust.tax_id, trans.prep_amount&gt;0 as prepaid,com.memo_, 0_shippers.shipper_name, 0_sales_types.sales_type, 0_sales_types.tax_included, branch.*, cust.discount, 0_tax_groups.name AS tax_group_name, 0_tax_groups.id AS tax_group_id FROM 0_debtor_trans trans LEFT JOIN 0_comments com ON trans.type=com.type AND trans.trans_no=com.id LEFT JOIN 0_shippers ON 0_shippers.shipper_id=trans.ship_via, 0_debtors_master cust, 0_sales_types, 0_cust_branch branch, 0_tax_groups WHERE trans.trans_no=&#039;2&#039; AND trans.type=&#039;10&#039; AND trans.debtor_no=cust.debtor_no AND 0_sales_types.id = trans.tpe AND branch.branch_code = trans.branch_code AND branch.tax_group_id = 0_tax_groups.id</p>]]></description>
			<author><![CDATA[null@example.com (exodusconsulting50)]]></author>
			<pubDate>Fri, 18 Aug 2023 15:58:33 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=10348&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Another "Legal Text" post...Im a newbie user]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=10338&amp;action=new</link>
			<description><![CDATA[<p>I altered the SQL table from &quot;tinytext&quot; to &quot;text&quot;.&nbsp; Made changes to the header.inc file...was able to get the &quot;full text&quot; to appear on all pages.&nbsp; But I am only wanting it to appear on the Invoice.</p><p>It appears like it wants to, but is limited to &quot;one line of text&quot; on the Invoice.&nbsp; I cant get the legal_text to span multi-lines...</p><p>Am I missing something here?</p><p>Please help a newbie...Thanks FA...</p><p>Im using version 2.4.16 installed on a shared host with Hostgator....just FYI.</p>]]></description>
			<author><![CDATA[null@example.com (dsmith)]]></author>
			<pubDate>Thu, 03 Aug 2023 13:45:21 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=10338&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Topic: Total Order VAT inc print in Sale Order and Sale invoice]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=10333&amp;action=new</link>
			<description><![CDATA[<p>Total Order VAT inc print in&nbsp; Sale Order and Sale invoice. I am using GST Tax group But in&nbsp; Sale Order and Sale invoice the total price is printed as Total Vat Inc. which is wrong how to correct it please resolve and guild .....</p>]]></description>
			<author><![CDATA[null@example.com (muzammal83)]]></author>
			<pubDate>Tue, 01 Aug 2023 06:43:29 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=10333&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Error on Sales Tab with Customer Transaction enquiry]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=10330&amp;action=new</link>
			<description><![CDATA[<p>When you go sales/ Inquiries and Reports /&nbsp; Customer Transaction Inquiry</p><p>When I select any client I get the following error although the information is still displaying.</p><div class="codebox"><pre><code>Trying to access array offset on value of type bool in file: /home/mywebsite/public_html/accounts/sales/inquiry/customer_inquiry.php at line 116

Trying to access array offset on value of type bool in file: /home/mywebsite/public_html/accounts/sales/inquiry/customer_inquiry.php at line 131

Trying to access array offset on value of type bool in file: /home/mywebsite/public_html/accounts/sales/inquiry/customer_inquiry.php at line 132

Trying to access array offset on value of type bool in file: /home/mywebsite/public_html/accounts/sales/inquiry/customer_inquiry.php at line 133

Trying to access array offset on value of type bool in file: /home/mywebsite/public_html/accounts/sales/inquiry/customer_inquiry.php at line 134

Trying to access array offset on value of type bool in file: /home/mywebsite/public_html/accounts/sales/inquiry/customer_inquiry.php at line 135

Trying to access array offset on value of type bool in file: /home/mywebsite/public_html/accounts/sales/inquiry/customer_inquiry.php at line 136

Trying to access array offset on value of type bool in file: /home/mywebsite/public_html/accounts/sales/inquiry/customer_inquiry.php at line 137</code></pre></div><p>What would cause this issue?</p>]]></description>
			<author><![CDATA[null@example.com (seahawk)]]></author>
			<pubDate>Wed, 19 Jul 2023 10:41:28 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=10330&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Prepayment on next years invoice]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=10320&amp;action=new</link>
			<description><![CDATA[<p>I’m wondering if anyone can suggest how to accept a payment in this fiscal year, for an invoice that would be an accounts receivable in the next fiscal year. So that the accrual reporting works out in the proper fiscal years. Some of our members are prepaying their fee and I’m confused as to how to do that. I know this is an accounting question but also one related to how the software reports.</p><p>What I have done is created an invoice for the first day of the next fiscal year. I also added a new GL account “membership23-24”. I then accept payment on the date it occurred (So that the bank balances work out for the month). </p><p>Have I done this the best way?</p>]]></description>
			<author><![CDATA[null@example.com (baxterdmutt)]]></author>
			<pubDate>Fri, 07 Jul 2023 18:16:52 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=10320&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Customer statement shows different aging balance than transaction rep]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=10307&amp;action=new</link>
			<description><![CDATA[<p>Just evaluating 2.4.16 to see if any of the problems my client is having have been fixed. I haven&#039;t yet dug into the code.</p><p>One problem my client was having was an incorrect balance on the customer statement that looks like it resulted from a journal entry (currently at 2.4.8). Looking at 2.4.16, the outstanding balance is something completely different, but still wrong. In both versions, the customer transactions show the correct outstanding balance, *AND* the statement debits and credits are correct. If you just add them up, you get the correct balance ... it is just the aging balance report at the bottom that is wrong.</p><p>The customer I&#039;m looking at has journal transactions, sales (invoices) and normal payments against invoices. They have 3 outstanding, unpaid invoices for a total of $318, but the aging balance is $520 (?) In the previous version, it was $117 (?).</p><p>I&#039;m going to take a deeper look, so I can file a proper bug report, but the most confusing thing about FA is the way it sums transactions with some amounts being reversed, etc. I&#039;m just wondering if anyone else is seeing this problem?</p>]]></description>
			<author><![CDATA[null@example.com (oakstreet1)]]></author>
			<pubDate>Mon, 19 Jun 2023 15:42:45 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=10307&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[DISCOUNT!!]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=10288&amp;action=new</link>
			<description><![CDATA[<p>Hello All,</p><p>How do I include sales discount on Invoice. I know that there is discount in the customer payment module. My challenge there is that when the customer&#039;s statement is generated, the discount in not included. So customers are complaining that the discount they are given is not reflected in the Invoice nor their Statement. <br />How do I correct this?</p><p>Thanks.</p><p>Popsicles12</p>]]></description>
			<author><![CDATA[null@example.com (popsicles12)]]></author>
			<pubDate>Mon, 08 May 2023 10:28:50 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=10288&amp;action=new</guid>
		</item>
	</channel>
</rss>
