<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[FrontAccounting forum — Batching Invoice against Sales Delivery]]></title>
	<link rel="self" href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=5592&amp;type=atom" />
	<updated>2015-04-24T00:53:02Z</updated>
	<generator>PunBB</generator>
	<id>https://frontaccounting.com/punbb/viewtopic.php?id=5592</id>
		<entry>
			<title type="html"><![CDATA[Re: Batching Invoice against Sales Delivery]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=23329#p23329" />
			<content type="html"><![CDATA[<p>The selections in one screen are the ones which get processed. Selections in the second screen must be done separately. You can try to increase the number of entries on each screen as stated in this thread, if you want all in one go.</p>]]></content>
			<author>
				<name><![CDATA[apmuthu]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=364</uri>
			</author>
			<updated>2015-04-24T00:53:02Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=23329#p23329</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Batching Invoice against Sales Delivery]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=23294#p23294" />
			<content type="html"><![CDATA[<p>If I select the full screen (10 items) and then go to the next screen to continue selecting, when I process the invoice, only the last screen selection is processed...???</p><br /><p>__________________________<br /><a href="http://www.solitairewithbuddies.com/">http://solitairewithbuddies.com/</a></p>]]></content>
			<author>
				<name><![CDATA[sakooon]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=20323</uri>
			</author>
			<updated>2015-04-15T06:32:49Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=23294#p23294</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Batching Invoice against Sales Delivery]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=22776#p22776" />
			<content type="html"><![CDATA[<p>I most certainly did. - very easy - Thank you</p>]]></content>
			<author>
				<name><![CDATA[dls]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=699</uri>
			</author>
			<updated>2015-03-04T12:02:27Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=22776#p22776</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Batching Invoice against Sales Delivery]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=22774#p22774" />
			<content type="html"><![CDATA[<p>I hope you used the last method instead of hacking the code.</p>]]></content>
			<author>
				<name><![CDATA[apmuthu]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=364</uri>
			</author>
			<updated>2015-03-04T08:46:12Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=22774#p22774</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Batching Invoice against Sales Delivery]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=22772#p22772" />
			<content type="html"><![CDATA[<p>Thanks - that works.</p>]]></content>
			<author>
				<name><![CDATA[dls]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=699</uri>
			</author>
			<updated>2015-03-03T22:37:09Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=22772#p22772</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Batching Invoice against Sales Delivery]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=22770#p22770" />
			<content type="html"><![CDATA[<p>@joe: maybe we need to remember the ticks of the previous page in the session variables before going to the next page.</p><p>Try to increase the number of items to say 20 or more. Try changing line 207 in <strong>sales/inquiry/sales_deliveries_view.php</strong>:<br /></p><div class="codebox"><pre><code>$table =&amp; new_db_pager(&#039;deliveries_tbl&#039;, $sql, $cols);</code></pre></div><p>by hardcoding it to<br /></p><div class="codebox"><pre><code>$table =&amp; new_db_pager(&#039;deliveries_tbl&#039;, $sql, $cols,,20);</code></pre></div><p>The <em>function <strong>new_db_pager()</strong></em> is defined in <strong>includes\db_pager.inc</strong> at line 482 with the following prototype:<br /></p><div class="codebox"><pre><code>function &amp;new_db_pager($name, $sql, $coldef, $table = null, $key = null, $page_len = 0)  {</code></pre></div><p>If the default <strong>$page_len</strong> is left as zero (0), then the <strong>#_users.query_size</strong> field&#039;s value (default 10) is taken.</p><p>It can also be set in <strong>Setup =&gt; Display Setup (Preferences) =&gt; Query page size:</strong></p>]]></content>
			<author>
				<name><![CDATA[apmuthu]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=364</uri>
			</author>
			<updated>2015-03-03T19:21:11Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=22770#p22770</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Batching Invoice against Sales Delivery]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=22768#p22768" />
			<content type="html"><![CDATA[<p>Thanks for the reply apmuthu</p><p>I&#039;ve tried that, but the Search Not Invoiced Deliveries screen only gives 10 items at a time. I can select all of those and batch those, limiting me to 10 items.</p><p>If I select the full screen (10 items) and then go to the next screen to continue selecting, when I process the invoice, only the last screen selection is processed.</p><p>Is there any way of selecting and batching more? Or am I missing something?</p>]]></content>
			<author>
				<name><![CDATA[dls]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=699</uri>
			</author>
			<updated>2015-03-03T17:40:42Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=22768#p22768</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Batching Invoice against Sales Delivery]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=22757#p22757" />
			<content type="html"><![CDATA[<p>Create a batch Invoice. Refer the <a href="https://frontaccounting.com/fawiki/index.php?n=Help.SearchNotInvoicedDeliveries">Wiki</a>.</p><div class="quotebox"><blockquote><p>A <strong>batch</strong> invoice, a single invoice created from multiple work orders/deliveries, can be processed if all items have been sent to the same location. Click the check-box beside each delivery and click the <strong>Batch</strong> button at the top of the column to make such an invoice.</p></blockquote></div>]]></content>
			<author>
				<name><![CDATA[apmuthu]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=364</uri>
			</author>
			<updated>2015-03-03T13:52:01Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=22757#p22757</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Batching Invoice against Sales Delivery]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=22744#p22744" />
			<content type="html"><![CDATA[<p>Is there any way of batching more than one screen (10 sales Delivery) into an invoice? Every time I select the items and go onto the next screen the first selection is lost.</p><p>Thanks</p>]]></content>
			<author>
				<name><![CDATA[dls]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=699</uri>
			</author>
			<updated>2015-03-02T17:29:19Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=22744#p22744</id>
		</entry>
</feed>
