<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://developerzone-stg.pastel.co.za/index.php?action=history&amp;feed=atom&amp;title=C_Warehouse_Inter_Branch_Transfer</id>
		<title>C Warehouse Inter Branch Transfer - Revision history</title>
		<link rel="self" type="application/atom+xml" href="https://developerzone-stg.pastel.co.za/index.php?action=history&amp;feed=atom&amp;title=C_Warehouse_Inter_Branch_Transfer"/>
		<link rel="alternate" type="text/html" href="https://developerzone-stg.pastel.co.za/index.php?title=C_Warehouse_Inter_Branch_Transfer&amp;action=history"/>
		<updated>2026-04-17T20:26:25Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.25.2</generator>

	<entry>
		<id>https://developerzone-stg.pastel.co.za/index.php?title=C_Warehouse_Inter_Branch_Transfer&amp;diff=317&amp;oldid=prev</id>
		<title>Admin: Created page with &quot;'''From Version 8.00... onwards the SDK has functionality to do a Warehouse IBT Transfer.''' '''To do Warehouse IBT Transfers the feature has to be enabled in Evolution Wareho...&quot;</title>
		<link rel="alternate" type="text/html" href="https://developerzone-stg.pastel.co.za/index.php?title=C_Warehouse_Inter_Branch_Transfer&amp;diff=317&amp;oldid=prev"/>
				<updated>2017-07-18T10:26:48Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;From Version 8.00... onwards the SDK has functionality to do a Warehouse IBT Transfer.&amp;#039;&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;To do Warehouse IBT Transfers the feature has to be enabled in Evolution Wareho...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;'''From Version 8.00... onwards the SDK has functionality to do a Warehouse IBT Transfer.'''&lt;br /&gt;
'''To do Warehouse IBT Transfers the feature has to be enabled in Evolution Warehouse Defaults.'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
// The following will be the issueing of stock from one warehouse to another leaving the stock in transit&lt;br /&gt;
WarehouseIBT IBTIssue = new WarehouseIBT();&lt;br /&gt;
IBTIssue.WarehouseFrom = new Warehouse(&amp;quot;W1&amp;quot;);//Specify From which warehouse qty will be transfered from&lt;br /&gt;
IBTIssue.WarehouseTo = new Warehouse(&amp;quot;W2&amp;quot;);//Specify To which warehouse qty will be transfered to&lt;br /&gt;
IBTIssue.Description = &amp;quot;Test1des&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
WarehouseIBTLine IBTIssueLine = new WarehouseIBTLine();&lt;br /&gt;
IBTIssueLine.InventoryItem = new InventoryItem(&amp;quot;ItemwA&amp;quot;);&lt;br /&gt;
IBTIssueLine.Description = &amp;quot;testline1&amp;quot;;&lt;br /&gt;
IBTIssueLine.Reference = &amp;quot;Ref001&amp;quot;;&lt;br /&gt;
IBTIssueLine.QuantityIssued = 5;           &lt;br /&gt;
IBTIssue.Detail.Add(IBTIssueLine);&lt;br /&gt;
IBTIssue.IssueStock();&lt;br /&gt;
&lt;br /&gt;
//The following will be the receiving of stock for the issue above that is in transit&lt;br /&gt;
WarehouseIBT IBTReceive = new WarehouseIBT(IBTIssue.Number);&lt;br /&gt;
&lt;br /&gt;
foreach (WarehouseIBTLine IBTReceiveLine in IBTReceive.Detail)&lt;br /&gt;
{&lt;br /&gt;
IBTReceiveLine.QuantityReceived = 2;&lt;br /&gt;
}&lt;br /&gt;
IBTReceive.ReceiveStock();&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>