﻿<?xml version="1.0" encoding="utf-16"?>
<JiwaDocument xmlns:jiwa="http://www.jiwa.com.au/xml/schemas" Type="JiwaFinancials.Jiwa.JiwaApplication.Plugin.Plugin">
  <RecID>8d308a42-a464-4cc3-8086-50a9a987538e</RecID>
  <Name>VS - Custom Fields</Name>
  <Description>This plugin builds multiple combo boxes custom fields. and has previous custom fields moved into it</Description>
  <IsEnabled>true</IsEnabled>
  <IsIsolatedToOwnAppDomain>false</IsIsolatedToOwnAppDomain>
  <ExecutionOrder>0</ExecutionOrder>
  <Author>Atronics Consulting</Author>
  <Version>7.2</Version>
  <Code>'Plugin Updated on 02/12/2020
Imports JiwaFinancials.Jiwa
Imports Microsoft.VisualBasic
Imports System.Windows.Forms
Imports System.Data.SqlClient
Imports System.Drawing
Imports System.Data
Imports System.Collections.Generic

Public Class FormPlugin
Inherits System.MarshalByRefObject
Implements JiwaApplication.IJiwaFormPlugin

Public Overrides Function InitializeLifetimeService() As Object
' returning null here will prevent the lease manager
' from deleting the Object.
Return Nothing
End Function

Public Sub SetupBeforeHandlers(ByVal JiwaForm As JiwaApplication.IJiwaForm, ByVal Plugin As JiwaApplication.Plugin.Plugin) Implements JiwaApplication.IJiwaFormPlugin.SetupBeforeHandlers
End Sub

Public Sub Setup(ByVal JiwaForm As JiwaApplication.IJiwaForm, ByVal Plugin As JiwaApplication.Plugin.Plugin) Implements JiwaApplication.IJiwaFormPlugin.Setup
End Sub
End Class

Public Class BusinessLogicPlugin
Inherits System.MarshalByRefObject
Implements JiwaApplication.IJiwaBusinessLogicPlugin

Private _InventoryObject As JiwaInventory.Inventory 
Private _PurchaseOrderObject As JiwaPurchaseOrders.PurchaseOrder 
'Private _DebtorObject As JiwaDebtors.Debtor 

Public Overrides Function InitializeLifetimeService() As Object
' returning null here will prevent the lease manager
' from deleting the Object.
Return Nothing
End Function

Public Sub Setup(ByVal JiwaBusinessLogic As JiwaApplication.IJiwaBusinessLogic, ByVal Plugin As JiwaApplication.Plugin.Plugin) Implements JiwaApplication.IJiwaBusinessLogicPlugin.Setup
_InventoryObject = DirectCast(JiwaBusinessLogic, JiwaInventory.Inventory)
AddHandler _InventoryObject.CustomFieldValues.Changed, AddressOf CustomFieldValues_Changed
_PurchaseOrderObject = DirectCast(JiwaBusinessLogic, JiwaPurchaseOrders.PurchaseOrder)
AddHandler _PurchaseOrderObject.CustomFieldValues.Changed, AddressOf CustomFieldValues_Changed
End Sub

Private Sub CustomFieldValues_Changed(item As JiwaApplication.CustomFields.CustomFieldValue, e As System.ComponentModel.PropertyChangedEventArgs)
	If item.CustomField.PluginCustomField.Name = "Lab" Then 
		If item.Contents Is Nothing Then
			item.Contents = "1"	
		End If	
	Else If item.CustomField.PluginCustomField.Name = "CleaningPlant" Then 
		If item.Contents Is Nothing Then
			item.Contents = "1"	
		End If
	Else If item.CustomField.PluginCustomField.Name = "PlantedVariety" Then 
		If item.Contents Is Nothing Then
			item.Contents = "1"	
		End If
	End If	
End Sub
End Class

Public Class ApplicationManagerPlugin
Inherits System.MarshalByRefObject
Implements JiwaApplication.IJiwaApplicationManagerPlugin

Public Overrides Function InitializeLifetimeService() As Object
' returning null here will prevent the lease manager
' from deleting the Object.
Return Nothing
End Function

Public Sub Setup(ByVal Plugin As JiwaApplication.Plugin.Plugin) Implements JiwaApplication.IJiwaApplicationManagerPlugin.Setup
End Sub

End Class

Public Class CustomFieldPlugin
Inherits System.MarshalByRefObject
Implements JiwaApplication.IJiwaCustomFieldPlugin

Public Overrides Function InitializeLifetimeService() As Object
' returning null here will prevent the lease manager
' from deleting the Object.
Return Nothing
End Function

Public Sub FormatCell(ByVal BusinessLogicHost As JiwaApplication.IJiwaBusinessLogic, ByVal GridObject As JiwaApplication.Controls.JiwaGrid, ByVal FormObject As JiwaApplication.IJiwaForm, ByVal Col As Integer, ByVal Row As Integer, ByVal HostObject As JiwaApplication.IJiwaCustomFieldValues, ByVal CustomField As JiwaApplication.CustomFields.CustomField, ByVal CustomFieldValue As JiwaApplication.CustomFields.CustomFieldValue) Implements JiwaApplication.IJiwaCustomFieldPlugin.FormatCell		
'	If CustomField.PluginCustomField.Name = "Lab" Then 
'		Dim MyDisplayItems As New List(Of String)
'		Dim MyUnderlyingValues As New List(Of String)
'
'		MyDisplayItems.Add("Earthway Spreaders")
'		MyDisplayItems.Add("Lawn Fertilisers")
'		MyDisplayItems.Add("Seed Blends")
'		MyDisplayItems.Add("Seed Varieties")
'		MyDisplayItems.Add("Sports Turf Covers")
'		MyDisplayItems.Add("Water Treatment")
'		MyDisplayItems.Add("Wetting Agents")
'		MyDisplayItems.Add("Not Set")		
'
'		MyUnderlyingValues.Add("Earthway Spreaders")
'		MyUnderlyingValues.Add("Lawn Fertilisers")
'		MyUnderlyingValues.Add("3")
'		MyUnderlyingValues.Add("4")
'		MyUnderlyingValues.Add("5")
'		MyUnderlyingValues.Add("6")
'		MyUnderlyingValues.Add("7")
'		MyUnderlyingValues.Add("8")		
'
'		DirectCast(GridObject.Activesheet.Cells(Row, Col).CellType, FarPoint.Win.Spread.CellType.ComboBoxCellType).EditorValue = FarPoint.Win.Spread.CellType.EditorValue.ItemData
'		DirectCast(GridObject.Activesheet.Cells(Row, Col).CellType, FarPoint.Win.Spread.CellType.ComboBoxCellType).Items = MyDisplayItems.ToArray
'		DirectCast(GridObject.Activesheet.Cells(Row, Col).CellType, FarPoint.Win.Spread.CellType.ComboBoxCellType).ItemData = MyUnderlyingValues.ToArray
'	Else If CustomField.PluginCustomField.Name = "CleaningPlant" Then 
'		Dim MyDisplayItems As New List(Of String)
'		Dim MyUnderlyingValues As New List(Of String)
'
'		MyDisplayItems.Add("Championship Sports Blends")
'		MyDisplayItems.Add("Flex-Select Spreaders")
'		MyDisplayItems.Add("Home and Garden")
'		MyDisplayItems.Add("Landscaping and Agriculture")
'		MyDisplayItems.Add("Lawn Seed Blends")
'		MyDisplayItems.Add("Lawn Seed Varieties")
'		MyDisplayItems.Add("Liquid and Dust Spreaders")
'		MyDisplayItems.Add("Pasture Seed Blends")
'		MyDisplayItems.Add("Spreader Spare Parts")
'		MyDisplayItems.Add("Not Set")		
'
'		MyUnderlyingValues.Add("1")
'		MyUnderlyingValues.Add("2")
'		MyUnderlyingValues.Add("3")
'		MyUnderlyingValues.Add("4")
'		MyUnderlyingValues.Add("5")
'		MyUnderlyingValues.Add("6")
'		MyUnderlyingValues.Add("7")	
'		MyUnderlyingValues.Add("8")	
'		MyUnderlyingValues.Add("9")	
'		MyUnderlyingValues.Add("10")			
'
'		DirectCast(GridObject.Activesheet.Cells(Row, Col).CellType, FarPoint.Win.Spread.CellType.ComboBoxCellType).EditorValue = FarPoint.Win.Spread.CellType.EditorValue.ItemData
'		DirectCast(GridObject.Activesheet.Cells(Row, Col).CellType, FarPoint.Win.Spread.CellType.ComboBoxCellType).Items = MyDisplayItems.ToArray
'		DirectCast(GridObject.Activesheet.Cells(Row, Col).CellType, FarPoint.Win.Spread.CellType.ComboBoxCellType).ItemData = MyUnderlyingValues.ToArray
'	End If

End Sub

Public Sub ReadData(ByVal BusinessLogicHost As JiwaApplication.IJiwaBusinessLogic, ByVal GridObject As JiwaApplication.Controls.JiwaGrid, ByVal FormObject As JiwaApplication.IJiwaForm, ByVal Row As Integer, ByVal HostObject As JiwaApplication.IJiwaCustomFieldValues, ByVal CustomField As JiwaApplication.CustomFields.CustomField, ByVal CustomFieldValue As JiwaApplication.CustomFields.CustomFieldValue) Implements JiwaApplication.IJiwaCustomFieldPlugin.ReadData
End Sub

Public Sub ButtonClicked(ByVal BusinessLogicHost As JiwaApplication.IJiwaBusinessLogic, ByVal GridObject As JiwaApplication.Controls.JiwaGrid, ByVal FormObject As JiwaApplication.IJiwaForm, ByVal Col As Integer, ByVal Row As Integer, ByVal HostObject As JiwaApplication.IJiwaCustomFieldValues, ByVal CustomField As JiwaApplication.CustomFields.CustomField, ByVal CustomFieldValue As JiwaApplication.CustomFields.CustomFieldValue) Implements JiwaApplication.IJiwaCustomFieldPlugin.ButtonClicked
End Sub

End Class

Public Class LineCustomFieldPlugin
Inherits System.MarshalByRefObject
Implements JiwaApplication.IJiwaLineCustomFieldPlugin

Public Overrides Function InitializeLifetimeService() As Object
' returning null here will prevent the lease manager
' from deleting the Object.
Return Nothing
End Function

Public Sub FormatCell(ByVal BusinessLogicHost As JiwaApplication.IJiwaBusinessLogic, ByVal GridObject As JiwaApplication.Controls.JiwaGrid, ByVal FormObject As JiwaApplication.IJiwaForm, ByVal Col As Integer, ByVal Row As Integer, ByVal HostItem As JiwaApplication.IJiwaLineCustomFieldValues, ByVal CustomField As JiwaApplication.CustomFields.CustomField, ByVal CustomFieldValue As JiwaApplication.CustomFields.CustomFieldValue) Implements JiwaApplication.IJiwaLineCustomFieldPlugin.FormatCell

	If CustomField.PluginCustomField.Name = "Lab" Then 
		Dim MyDisplayItems As New List(Of String)
		Dim MyUnderlyingValues As New List(Of String)

		MyDisplayItems.Add("Not Set")
		MyDisplayItems.Add("BVAQ")
		MyDisplayItems.Add("SSA")

		MyUnderlyingValues.Add("Not Set")
		MyUnderlyingValues.Add("BVAQ")
		MyUnderlyingValues.Add("SSA")
	
		If GridObject.Activesheet.Cells(Row, Col).CellType Is Nothing Then
		    GridObject.Activesheet.Cells(Row, Col).CellType = GridObject.Activesheet.Columns(Col).CellType
		End If
		DirectCast(GridObject.Activesheet.Cells(Row, Col).CellType, FarPoint.Win.Spread.CellType.ComboBoxCellType).EditorValue = FarPoint.Win.Spread.CellType.EditorValue.ItemData		
		DirectCast(GridObject.Activesheet.Cells(Row, Col).CellType, FarPoint.Win.Spread.CellType.ComboBoxCellType).Items = MyDisplayItems.ToArray		
		DirectCast(GridObject.Activesheet.Cells(Row, Col).CellType, FarPoint.Win.Spread.CellType.ComboBoxCellType).ItemData = MyUnderlyingValues.ToArray
	Else If CustomField.PluginCustomField.Name = "CleaningPlant" Then 
		Dim MyDisplayItems As New List(Of String)
		Dim MyUnderlyingValues As New List(Of String)

		MyDisplayItems.Add("Not Set")
		MyDisplayItems.Add("Mizzeni")
		MyDisplayItems.Add("Tas Seed Dressing")
		MyDisplayItems.Add("Heazlewood")
		MyDisplayItems.Add("Yarck")
		MyDisplayItems.Add("Lidgerwood")
		MyDisplayItems.Add("Tat Seeds")
		MyDisplayItems.Add("Frances")


		MyUnderlyingValues.Add("Not Set")
		MyUnderlyingValues.Add("Mizzeni")
		MyUnderlyingValues.Add("Tas Seed Dressing")
		MyUnderlyingValues.Add("Heazlewood")
		MyUnderlyingValues.Add("Yarck")
		MyUnderlyingValues.Add("Lidgerwood")
		MyUnderlyingValues.Add("Tat Seeds")
		MyUnderlyingValues.Add("Frances")		

		If GridObject.Activesheet.Cells(Row, Col).CellType Is Nothing Then
		    GridObject.Activesheet.Cells(Row, Col).CellType = GridObject.Activesheet.Columns(Col).CellType
		End If
		DirectCast(GridObject.Activesheet.Cells(Row, Col).CellType, FarPoint.Win.Spread.CellType.ComboBoxCellType).EditorValue = FarPoint.Win.Spread.CellType.EditorValue.ItemData
		DirectCast(GridObject.Activesheet.Cells(Row, Col).CellType, FarPoint.Win.Spread.CellType.ComboBoxCellType).Items = MyDisplayItems.ToArray
		DirectCast(GridObject.Activesheet.Cells(Row, Col).CellType, FarPoint.Win.Spread.CellType.ComboBoxCellType).ItemData = MyUnderlyingValues.ToArray
	End If

End Sub

Public Sub ReadData(ByVal BusinessLogicHost As JiwaApplication.IJiwaBusinessLogic, ByVal GridObject As JiwaApplication.Controls.JiwaGrid, ByVal FormObject As JiwaApplication.IJiwaForm, ByVal Row As Integer, ByVal HostItem As JiwaApplication.IJiwaLineCustomFieldValues, ByVal CustomField As JiwaApplication.CustomFields.CustomField, ByVal CustomFieldValue As JiwaApplication.CustomFields.CustomFieldValue) Implements JiwaApplication.IJiwaLineCustomFieldPlugin.ReadData
	If CustomField.PluginCustomField.Name.Trim = "PlantedVariety" Then		
		CustomFieldValue.DisplayContents = CustomFieldValue.Contents
	End If
End Sub

Public Sub ButtonClicked(ByVal BusinessLogicHost As JiwaApplication.IJiwaBusinessLogic, ByVal GridObject As JiwaApplication.Controls.JiwaGrid, ByVal FormObject As JiwaApplication.IJiwaForm, ByVal Col As Integer, ByVal Row As Integer, ByVal HostItem As JiwaApplication.IJiwaLineCustomFieldValues, ByVal CustomField As JiwaApplication.CustomFields.CustomField, ByVal CustomFieldValue As JiwaApplication.CustomFields.CustomFieldValue) Implements JiwaApplication.IJiwaLineCustomFieldPlugin.ButtonClicked

	If CustomField.PluginCustomField.Name.Trim = "PlantedVariety" Then	
		Dim AOption As JiwaApplication.JiwaSearch.SearchOption
        With CustomField.Manager.Search
            .Clear()

            '.FilterNo = 1
            .UsePinBoard = False
            .Caption = "Inventory"

            AOption = CustomField.Manager.CollectionItemFactory.CreateCollectionItem(Of JiwaFinancials.Jiwa.JiwaApplication.JiwaSearch.SearchOption)
            With AOption
                .Title = "Inventory"
                .SQLStr = "Select IN_Main.InventoryID,IN_Main.PartNo,IN_Main.Description FROM IN_Main "
                .OrderBy = "ORDER BY PartNo"
                .AddColumn("InventoryID", vbString, "", 0, 1)
				.AddColumn("PartNo", vbString, "", 50, 2)
                .AddColumn("Description", vbString, "", 100, 3)			
            End With
            .AddSearchOption(AOption)
			
            AOption = Nothing	
			
            If .Show(FormObject) = DialogResult.OK Then
				CustomFieldValue.RecID=.Fields(2).FieldValue &amp; " - " &amp; .Fields(3).FieldValue
				CustomFieldValue.Contents = .Fields(2).FieldValue &amp; " - " &amp; .Fields(3).FieldValue
				CustomFieldValue.DisplayContents = .Fields(2).FieldValue &amp; " - " &amp; .Fields(3).FieldValue				
				GridObject.Activesheet.Cells(Row, Col).Text =.Fields(2).FieldValue &amp; " - " &amp; .Fields(3).FieldValue
            End If		
			
        End With
	End If
			

End Sub
End Class

Public Class SystemSettingPlugin
Inherits System.MarshalByRefObject
Implements JiwaApplication.IJiwaSystemSettingPlugin

Public Overrides Function InitializeLifetimeService() As Object
' returning null here will prevent the lease manager
' from deleting the Object.
Return Nothing
End Function

Public Sub FormatCell(ByVal BusinessLogicHost As JiwaApplication.IJiwaBusinessLogic, ByVal GridObject As JiwaApplication.Controls.JiwaGrid, ByVal FormObject As JiwaApplication.IJiwaForm, ByVal Col As Integer, ByVal Row As Integer, ByVal SystemSetting As JiwaApplication.SystemSettings.Setting) Implements JiwaApplication.IJiwaSystemSettingPlugin.FormatCell
End Sub

Public Sub ReadData(ByVal BusinessLogicHost As JiwaApplication.IJiwaBusinessLogic, ByVal GridObject As JiwaApplication.Controls.JiwaGrid, ByVal FormObject As JiwaApplication.IJiwaForm, ByVal Row As Integer, ByVal SystemSetting As JiwaApplication.SystemSettings.Setting) Implements JiwaApplication.IJiwaSystemSettingPlugin.ReadData
End Sub

Public Sub ButtonClicked(ByVal BusinessLogicHost As JiwaApplication.IJiwaBusinessLogic, ByVal GridObject As JiwaApplication.Controls.JiwaGrid, ByVal FormObject As JiwaApplication.IJiwaForm, ByVal Col As Integer, ByVal Row As Integer, ByVal SystemSetting As JiwaApplication.SystemSettings.Setting) Implements JiwaApplication.IJiwaSystemSettingPlugin.ButtonClicked
End Sub

End Class

Public Class ScheduledExecutionPlugin
Inherits System.MarshalByRefObject
Implements JiwaApplication.IJiwaScheduledExecutionPlugin

Public Sub Execute(ByVal Plugin As JiwaApplication.Plugin.Plugin, ByVal Schedule As JiwaApplication.Schedule.Schedule) Implements JiwaApplication.IJiwaScheduledExecutionPlugin.Execute

End Sub

Public Sub OnServiceStart(ByVal Plugin As JiwaApplication.Plugin.Plugin) Implements JiwaApplication.IJiwaScheduledExecutionPlugin.OnServiceStart

End Sub

Public Sub OnServiceStopping(ByVal Plugin As JiwaApplication.Plugin.Plugin) Implements JiwaApplication.IJiwaScheduledExecutionPlugin.OnServiceStopping

End Sub
End Class
</Code>
  <ExceptionPolicy>Report</ExceptionPolicy>
  <Language>VisualBasic</Language>
  <PluginFormCollection>
    <PluginForm>
      <RecID>9a3a5fc7-af0d-416d-a797-b0e513473456</RecID>
      <Description>Inventory Maintenance</Description>
      <ClassName>JiwaFinancials.Jiwa.JiwaInventoryUI.InventoryMaintenanceForm</ClassName>
    </PluginForm>
    <PluginForm>
      <RecID>d526c3e1-3253-42f6-a13d-922979092138</RecID>
      <Description>Purchase Orders</Description>
      <ClassName>JiwaFinancials.Jiwa.JiwaPurchaseOrdersUI.PurchaseOrders</ClassName>
    </PluginForm>
  </PluginFormCollection>
  <ReferenceCollection>
    <Reference>
      <RecID>bef91341-c194-4e5f-98b0-89f68f046886</RecID>
      <AssemblyFullName>JiwaApplication, Version=7.2.1.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaApplication.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\JiwaApplication.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>2024af5a-9283-40f0-99d9-aff28f2973ae</RecID>
      <AssemblyFullName>mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</AssemblyFullName>
      <AssemblyName>mscorlib.dll</AssemblyName>
      <AssemblyLocation>C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscorlib.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>bb9ad03b-90fe-4d01-afeb-6b41cf6a4c1c</RecID>
      <AssemblyFullName>System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</AssemblyFullName>
      <AssemblyName>System.dll</AssemblyName>
      <AssemblyLocation>C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>1dc24cfb-9e35-4753-b8ec-707f8f9f332f</RecID>
      <AssemblyFullName>System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</AssemblyFullName>
      <AssemblyName>System.Data.dll</AssemblyName>
      <AssemblyLocation>C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>90120d82-4e1e-464c-98c5-84c8614488fe</RecID>
      <AssemblyFullName>JiwaODBC, Version=7.2.1.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaODBC.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\JiwaODBC.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>8dc78d0b-59a1-4f09-8baf-120ba47907e0</RecID>
      <AssemblyFullName>System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</AssemblyFullName>
      <AssemblyName>System.Xml.dll</AssemblyName>
      <AssemblyLocation>C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>ab4611e3-cd7e-4097-aea7-4bf811b4f5dc</RecID>
      <AssemblyFullName>System.Runtime.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</AssemblyFullName>
      <AssemblyName>System.Runtime.Serialization.dll</AssemblyName>
      <AssemblyLocation>C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>abbb269c-3f8b-4311-9626-1c06ac72ffa5</RecID>
      <AssemblyFullName>System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</AssemblyFullName>
      <AssemblyName>System.Drawing.dll</AssemblyName>
      <AssemblyLocation>C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>dea2c825-a684-4d15-bf6b-bdb5d37f8c46</RecID>
      <AssemblyFullName>Microsoft.SqlServer.Smo, Version=14.100.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91</AssemblyFullName>
      <AssemblyName>Microsoft.SqlServer.Smo.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\Microsoft.SqlServer.Smo.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>e617944a-60c9-486c-bc13-ede25525d0d3</RecID>
      <AssemblyFullName>Microsoft.SqlServer.ConnectionInfo, Version=14.100.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91</AssemblyFullName>
      <AssemblyName>Microsoft.SqlServer.ConnectionInfo.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\Microsoft.SqlServer.ConnectionInfo.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>ad15293d-e302-4a84-8036-e8e6dac53d90</RecID>
      <AssemblyFullName>System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</AssemblyFullName>
      <AssemblyName>System.Windows.Forms.dll</AssemblyName>
      <AssemblyLocation>C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>26cfd130-c2ba-4710-ab6e-7fc4b12cf4ea</RecID>
      <AssemblyFullName>Infragistics4.Win.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\Infragistics4.Win.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>912ba941-f7bd-4ba9-8368-7eaca737147f</RecID>
      <AssemblyFullName>Microsoft.VisualBasic, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</AssemblyFullName>
      <AssemblyName>Microsoft.VisualBasic.dll</AssemblyName>
      <AssemblyLocation>C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>c75f76fd-dda6-4c4c-8321-45ee897409e5</RecID>
      <AssemblyFullName>Infragistics4.Win.Misc.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.Misc.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\Infragistics4.Win.Misc.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>8dc13a7c-ff60-41d8-a53f-091fb8fd344c</RecID>
      <AssemblyFullName>Infragistics4.Win.UltraWinEditors.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.UltraWinEditors.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\Infragistics4.Win.UltraWinEditors.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>abb77e92-0219-4c69-a226-fa170327e947</RecID>
      <AssemblyFullName>Infragistics4.Win.UltraWinExplorerBar.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.UltraWinExplorerBar.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\Infragistics4.Win.UltraWinExplorerBar.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>b3571f2f-d588-48bb-97a0-e7cddb94df1d</RecID>
      <AssemblyFullName>Infragistics4.Win.UltraWinTree.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.UltraWinTree.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\Infragistics4.Win.UltraWinTree.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>0658fe3d-f632-44fb-8fd3-9e5d7f2f9d34</RecID>
      <AssemblyFullName>FarPoint.Win.Spread, Version=8.35.20151.0, Culture=neutral, PublicKeyToken=327c3516b1b18457</AssemblyFullName>
      <AssemblyName>FarPoint.Win.Spread.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\FarPoint.Win.Spread.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>9d2b7005-44df-4294-ac6c-6cf4a268b95f</RecID>
      <AssemblyFullName>Infragistics4.Win.UltraWinTabControl.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.UltraWinTabControl.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\Infragistics4.Win.UltraWinTabControl.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>dfdeb89f-6ad9-4104-ad45-a358d382d3aa</RecID>
      <AssemblyFullName>Infragistics4.Win.UltraWinToolbars.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.UltraWinToolbars.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\Infragistics4.Win.UltraWinToolbars.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>4cc74f24-c88a-4038-94e1-2f36bfdd6654</RecID>
      <AssemblyFullName>Infragistics4.Win.UltraWinStatusBar.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.UltraWinStatusBar.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\Infragistics4.Win.UltraWinStatusBar.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>fd86cd0e-ef73-4e73-98e4-ee82a4f08f62</RecID>
      <AssemblyFullName>Infragistics4.Win.UltraWinListView.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.UltraWinListView.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\Infragistics4.Win.UltraWinListView.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>9bb53636-1690-487d-81e8-55860013cd5b</RecID>
      <AssemblyFullName>ActiproSoftware.SyntaxEditor.WinForms, Version=16.1.330.0, Culture=neutral, PublicKeyToken=c27e062d3c1a4763</AssemblyFullName>
      <AssemblyName>ActiproSoftware.SyntaxEditor.WinForms.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\ActiproSoftware.SyntaxEditor.WinForms.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>802ea9f6-cb0b-40e8-8a76-9119cccf4af6</RecID>
      <AssemblyFullName>ZetaHtmlEditControl, Version=1.1.0.3, Culture=neutral, PublicKeyToken=2e2e5ba5da72b6c0</AssemblyFullName>
      <AssemblyName>ZetaHtmlEditControl.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\ZetaHtmlEditControl.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>294aad78-066e-47e0-b8d3-414406cfe5a0</RecID>
      <AssemblyFullName>ActiproSoftware.SyntaxEditor.Addons.DotNet.WinForms, Version=16.1.330.0, Culture=neutral, PublicKeyToken=c27e062d3c1a4763</AssemblyFullName>
      <AssemblyName>ActiproSoftware.SyntaxEditor.Addons.DotNet.WinForms.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\ActiproSoftware.SyntaxEditor.Addons.DotNet.WinForms.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>d6bc9beb-24c1-45f1-8bac-84de24afe839</RecID>
      <AssemblyFullName>JiwaEncryption, Version=7.2.1.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaEncryption.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\JiwaEncryption.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>ff0fc4c2-8df8-44c1-8686-e7571901cf00</RecID>
      <AssemblyFullName>Microsoft.SqlServer.Dac, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</AssemblyFullName>
      <AssemblyName>Microsoft.SqlServer.Dac.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\Microsoft.SqlServer.Dac.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>5ef148cd-2195-4ed6-accf-5489b833842b</RecID>
      <AssemblyFullName>CrystalDecisions.CrystalReports.Engine, Version=13.0.3500.0, Culture=neutral, PublicKeyToken=692fbea5521e1304</AssemblyFullName>
      <AssemblyName>CrystalDecisions.CrystalReports.Engine.dll</AssemblyName>
      <AssemblyLocation>C:\Windows\assembly\GAC_MSIL\CrystalDecisions.CrystalReports.Engine\13.0.3500.0__692fbea5521e1304\CrystalDecisions.CrystalReports.Engine.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>52454c62-7b32-42d2-8f62-f6846077e6dc</RecID>
      <AssemblyFullName>CrystalDecisions.Shared, Version=13.0.3500.0, Culture=neutral, PublicKeyToken=692fbea5521e1304</AssemblyFullName>
      <AssemblyName>CrystalDecisions.Shared.dll</AssemblyName>
      <AssemblyLocation>C:\Windows\assembly\GAC_MSIL\CrystalDecisions.Shared\13.0.3500.0__692fbea5521e1304\CrystalDecisions.Shared.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>e19a4ff5-34a5-4286-8ef2-4843a0c4c42f</RecID>
      <AssemblyFullName>CrystalDecisions.ReportAppServer.Controllers, Version=13.0.3500.0, Culture=neutral, PublicKeyToken=692fbea5521e1304</AssemblyFullName>
      <AssemblyName>CrystalDecisions.ReportAppServer.Controllers.dll</AssemblyName>
      <AssemblyLocation>C:\Windows\assembly\GAC_MSIL\CrystalDecisions.ReportAppServer.Controllers\13.0.3500.0__692fbea5521e1304\CrystalDecisions.ReportAppServer.Controllers.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>725a0885-0790-480a-b607-f8c25528da21</RecID>
      <AssemblyFullName>System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</AssemblyFullName>
      <AssemblyName>System.Core.dll</AssemblyName>
      <AssemblyLocation>C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>c88b2a70-87ec-4c16-b0e3-079582c451a7</RecID>
      <AssemblyFullName>Infragistics4.Win.AppStylistSupport.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.AppStylistSupport.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\Infragistics4.Win.AppStylistSupport.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>f7902e3f-8b09-4f9d-8219-e8c713becac3</RecID>
      <AssemblyFullName>JiwaLib, Version=7.2.1.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaLib.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\JiwaLib.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>aba0b409-cebe-4f18-9312-533e5de30070</RecID>
      <AssemblyFullName>CrystalDecisions.Windows.Forms, Version=13.0.3500.0, Culture=neutral, PublicKeyToken=692fbea5521e1304</AssemblyFullName>
      <AssemblyName>CrystalDecisions.Windows.Forms.dll</AssemblyName>
      <AssemblyLocation>C:\Windows\assembly\GAC_MSIL\CrystalDecisions.Windows.Forms\13.0.3500.0__692fbea5521e1304\CrystalDecisions.Windows.Forms.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>e7fa2d39-e5e8-454c-8938-6e3e2272a871</RecID>
      <AssemblyFullName>Infragistics4.Win.UltraWinSchedule.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.UltraWinSchedule.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\Infragistics4.Win.UltraWinSchedule.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>36114623-87f0-413d-8491-366fab7d9a32</RecID>
      <AssemblyFullName>Infragistics4.Win.UltraWinGrid.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.UltraWinGrid.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\Infragistics4.Win.UltraWinGrid.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>9a7e83bd-0c08-4d5e-8176-d9266ac5af12</RecID>
      <AssemblyFullName>Infragistics4.Shared.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Shared.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\Infragistics4.Shared.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>07f3ebf0-ca71-4214-aa59-bf75f5ca12e9</RecID>
      <AssemblyFullName>ActiproSoftware.Shared.WinForms, Version=16.1.330.0, Culture=neutral, PublicKeyToken=c27e062d3c1a4763</AssemblyFullName>
      <AssemblyName>ActiproSoftware.Shared.WinForms.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\ActiproSoftware.Shared.WinForms.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>6ac8bb7d-2ca1-42da-bcad-3f38460c0417</RecID>
      <AssemblyFullName>FarPoint.Win, Version=8.35.20151.0, Culture=neutral, PublicKeyToken=327c3516b1b18457</AssemblyFullName>
      <AssemblyName>FarPoint.Win.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\FarPoint.Win.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>6a7fab0d-5ee2-4e86-8983-60f1cd289bf0</RecID>
      <AssemblyFullName>System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</AssemblyFullName>
      <AssemblyName>System.Security.dll</AssemblyName>
      <AssemblyLocation>C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>cec803d5-c1e2-4891-8e1e-f6fdb8dbde97</RecID>
      <AssemblyFullName>CrystalDecisions.ReportAppServer.ClientDoc, Version=13.0.3500.0, Culture=neutral, PublicKeyToken=692fbea5521e1304</AssemblyFullName>
      <AssemblyName>CrystalDecisions.ReportAppServer.ClientDoc.dll</AssemblyName>
      <AssemblyLocation>C:\Windows\assembly\GAC_MSIL\CrystalDecisions.ReportAppServer.ClientDoc\13.0.3500.0__692fbea5521e1304\CrystalDecisions.ReportAppServer.ClientDoc.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>5c95db51-7611-4240-ac2c-6fdad6cc8c50</RecID>
      <AssemblyFullName>CrystalDecisions.ReportAppServer.ReportDefModel, Version=13.0.3500.0, Culture=neutral, PublicKeyToken=692fbea5521e1304</AssemblyFullName>
      <AssemblyName>CrystalDecisions.ReportAppServer.ReportDefModel.dll</AssemblyName>
      <AssemblyLocation>C:\Windows\assembly\GAC_MSIL\CrystalDecisions.ReportAppServer.ReportDefModel\13.0.3500.0__692fbea5521e1304\CrystalDecisions.ReportAppServer.ReportDefModel.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>be7e2ff8-abd0-43c1-91dd-c149fc7b2a14</RecID>
      <AssemblyFullName>JiwaInventoryUI, Version=7.2.1.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaInventoryUI.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\JiwaInventoryUI.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>3d8b9960-57dc-47eb-b2af-6b1513fc86d2</RecID>
      <AssemblyFullName>JiwaInventory, Version=7.2.1.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaInventory.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\JiwaInventory.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>8ec1be89-5808-410f-9b24-7ec78abe295c</RecID>
      <AssemblyFullName>JiwaDebtorsUI, Version=7.2.1.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaDebtorsUI.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\JiwaDebtorsUI.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>22ed2cff-14c0-4206-98b4-e3e367fa722e</RecID>
      <AssemblyFullName>JiwaDebtors, Version=7.2.1.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaDebtors.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\JiwaDebtors.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>58aa8e51-8531-4a97-8859-df5e113ffd2a</RecID>
      <AssemblyFullName>JiwaDebtorAdjustments, Version=7.2.1.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaDebtorAdjustments.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\JiwaDebtorAdjustments.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>de90297b-aa99-4a93-ad1b-f821325fc4c1</RecID>
      <AssemblyFullName>JiwaDebtorInvoices, Version=7.2.1.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaDebtorInvoices.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\JiwaDebtorInvoices.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>137060cd-fcc2-4689-9dbb-261774b4aa70</RecID>
      <AssemblyFullName>JiwaCashBookUI, Version=7.2.1.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaCashBookUI.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\JiwaCashBookUI.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>cf0a8959-13ec-4ccb-ae0e-0e3b58cdd7e2</RecID>
      <AssemblyFullName>JiwaDebtorAdjustmentsUI, Version=7.2.1.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaDebtorAdjustmentsUI.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\JiwaDebtorAdjustmentsUI.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>70661def-3e0e-4590-a214-9c1476a6ab61</RecID>
      <AssemblyFullName>JiwaDebtorInvoicesUI, Version=7.2.1.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaDebtorInvoicesUI.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\JiwaDebtorInvoicesUI.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>acf125f5-d92c-4513-8b05-61637fdbd8c8</RecID>
      <AssemblyFullName>JiwaCashBook, Version=7.2.1.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaCashBook.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\JiwaCashBook.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>1406a73f-36b0-4268-b6a9-5d1668350956</RecID>
      <AssemblyFullName>JiwaSalesUI, Version=7.2.1.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaSalesUI.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\JiwaSalesUI.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>c1c83901-8c49-4952-9101-2efd33092de7</RecID>
      <AssemblyFullName>LumenWorks.Framework.IO, Version=7.2.1.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>LumenWorks.Framework.IO.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\LumenWorks.Framework.IO.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>26e76389-4e29-4843-8ea1-de78a5fb358d</RecID>
      <AssemblyFullName>System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</AssemblyFullName>
      <AssemblyName>System.Xml.Linq.dll</AssemblyName>
      <AssemblyLocation>C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>d29abc68-98c3-41ac-86a2-dfa393507198</RecID>
      <AssemblyFullName>JiwaServiceModel, Version=7.2.1.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaServiceModel.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\JiwaServiceModel.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>92ee7558-7624-498f-986f-50253e6cbc7f</RecID>
      <AssemblyFullName>JiwaPurchaseOrdersUI, Version=7.2.1.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaPurchaseOrdersUI.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\JiwaPurchaseOrdersUI.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>eac04610-3437-468e-a85f-d528255148ef</RecID>
      <AssemblyFullName>JiwaPurchaseOrders, Version=7.2.1.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaPurchaseOrders.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\JiwaPurchaseOrders.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>a329a65d-e6d2-42b7-abb3-37e1119fa8e3</RecID>
      <AssemblyFullName>JiwaCreditorsUI, Version=7.2.1.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaCreditorsUI.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\JiwaCreditorsUI.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>ba5564f0-438d-43c0-bb41-f3156361979d</RecID>
      <AssemblyFullName>JiwaInvReceivalUI, Version=7.2.1.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaInvReceivalUI.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\JiwaInvReceivalUI.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>a2854c2c-30bb-484c-b78e-e3658b1eeedd</RecID>
      <AssemblyFullName>JiwaInvReceival, Version=7.2.1.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaInvReceival.dll</AssemblyName>
      <AssemblyLocation>C:\Program Files (x86)\Jiwa Financials\Jiwa 7\JiwaInvReceival.dll</AssemblyLocation>
    </Reference>
  </ReferenceCollection>
  <CustomFieldCollection>
    <CustomField>
      <RecID>37174217-dc62-444f-9241-4772befb1637</RecID>
      <Name>Item1</Name>
      <Description>Item 1</Description>
      <DisplayOrder>1</DisplayOrder>
      <CellType>Text</CellType>
      <CustomFieldModule>Bill Maintenance</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>9e59c399-4e2b-4df7-aed9-03f8021b5398</RecID>
      <Name>Item1PC</Name>
      <Description>Item 1 per cent</Description>
      <DisplayOrder>2</DisplayOrder>
      <CellType>Integer</CellType>
      <CustomFieldModule>Bill Maintenance</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>221a746c-a3cc-43a5-bf6e-6366ba39edfd</RecID>
      <Name>Item2</Name>
      <Description>Item 2</Description>
      <DisplayOrder>3</DisplayOrder>
      <CellType>Text</CellType>
      <CustomFieldModule>Bill Maintenance</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>e49f1ed8-7d0d-4426-b4f4-e8a385a793d0</RecID>
      <Name>Item2PC</Name>
      <Description>Item 2 per cent</Description>
      <DisplayOrder>4</DisplayOrder>
      <CellType>Integer</CellType>
      <CustomFieldModule>Bill Maintenance</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>4139db03-fad8-451d-acc1-6c2bb8cb2552</RecID>
      <Name>Item3</Name>
      <Description>Item 3</Description>
      <DisplayOrder>5</DisplayOrder>
      <CellType>Text</CellType>
      <CustomFieldModule>Bill Maintenance</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>c011d200-36f5-4aa9-9951-461f64d0cd40</RecID>
      <Name>Item3PC</Name>
      <Description>Item 3 per cent</Description>
      <DisplayOrder>6</DisplayOrder>
      <CellType>Integer</CellType>
      <CustomFieldModule>Bill Maintenance</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>98aae2de-e263-4d94-bcc1-71fbc1b98241</RecID>
      <Name>Item4</Name>
      <Description>Item 4</Description>
      <DisplayOrder>7</DisplayOrder>
      <CellType>Text</CellType>
      <CustomFieldModule>Bill Maintenance</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>2493f421-e847-4dcc-9289-deb49a22f662</RecID>
      <Name>Item4PC</Name>
      <Description>Item 4 per cent</Description>
      <DisplayOrder>8</DisplayOrder>
      <CellType>Integer</CellType>
      <CustomFieldModule>Bill Maintenance</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>81580dc4-ef38-4326-91e4-e8e25379ab23</RecID>
      <Name>Factor</Name>
      <Description>Kg's per pack</Description>
      <DisplayOrder>1</DisplayOrder>
      <CellType>Float</CellType>
      <CustomFieldModule>Inventory Maintenance</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>b4a911b5-677c-4383-ad7e-73a3c961c48e</RecID>
      <Name>PLS</Name>
      <Description>Tick for Packaged Lawn Seed items</Description>
      <DisplayOrder>2</DisplayOrder>
      <CellType>Checkbox</CellType>
      <CustomFieldModule>Inventory Maintenance</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>c084b30b-04fc-409a-b493-df30c518b8e6</RecID>
      <Name>CBS</Name>
      <Description>Tick if this item can't be sold wityhout a Test Date</Description>
      <DisplayOrder>3</DisplayOrder>
      <CellType>Checkbox</CellType>
      <CustomFieldModule>Inventory Maintenance</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>54423d20-5ecb-4c87-bc1f-f00a30559ed5</RecID>
      <Name>FO_Misc</Name>
      <Description>Factory Order - tick for non- raw material item</Description>
      <DisplayOrder>4</DisplayOrder>
      <CellType>Checkbox</CellType>
      <CustomFieldModule>Inventory Maintenance</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>b9563bc9-7597-4618-8c53-b507138156c4</RecID>
      <Name>Mixes</Name>
      <Description>Number of Batches (mixes)</Description>
      <DisplayOrder>1</DisplayOrder>
      <CellType>Integer</CellType>
      <CustomFieldModule>Work Order</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>3976806e-ca2e-484b-8109-79ff63a43685</RecID>
      <Name>Item1</Name>
      <Description>Item 1</Description>
      <DisplayOrder>2</DisplayOrder>
      <CellType>Text</CellType>
      <CustomFieldModule>Work Order</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>f818d3a1-303f-4ae7-81f9-90f217c33f22</RecID>
      <Name>Item1PC</Name>
      <Description>Item 1 per cent</Description>
      <DisplayOrder>3</DisplayOrder>
      <CellType>Integer</CellType>
      <CustomFieldModule>Work Order</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>fccf7344-077b-452b-b0df-4f845ec47012</RecID>
      <Name>Item2</Name>
      <Description>Item 2</Description>
      <DisplayOrder>4</DisplayOrder>
      <CellType>Text</CellType>
      <CustomFieldModule>Work Order</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>adcd6e32-5467-406d-b440-14263a1d494a</RecID>
      <Name>Item2PC</Name>
      <Description>Item 2 per cent</Description>
      <DisplayOrder>5</DisplayOrder>
      <CellType>Integer</CellType>
      <CustomFieldModule>Work Order</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>0d2de9e0-e354-4a3e-9ed0-33fe7c88af72</RecID>
      <Name>Item3</Name>
      <Description>Item 3</Description>
      <DisplayOrder>6</DisplayOrder>
      <CellType>Text</CellType>
      <CustomFieldModule>Work Order</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>e388a358-005b-4d8a-8193-b44fc65473de</RecID>
      <Name>Item3PC</Name>
      <Description>Item 3 per cent</Description>
      <DisplayOrder>7</DisplayOrder>
      <CellType>Integer</CellType>
      <CustomFieldModule>Work Order</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>e02ca152-18f8-41ba-9e39-c6dcc80144eb</RecID>
      <Name>Item4</Name>
      <Description>Item 4</Description>
      <DisplayOrder>8</DisplayOrder>
      <CellType>Text</CellType>
      <CustomFieldModule>Work Order</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>7e8a00d3-232b-4a69-b947-567c0e97335e</RecID>
      <Name>Item4PC</Name>
      <Description>Item 4 per cent</Description>
      <DisplayOrder>9</DisplayOrder>
      <CellType>Float</CellType>
      <CustomFieldModule>Work Order</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>065dab6a-f665-44f7-a6c7-13efdefd733a</RecID>
      <Name>SON</Name>
      <Description>Sales Order Number</Description>
      <DisplayOrder>11</DisplayOrder>
      <CellType>Text</CellType>
      <CustomFieldModule>Work Order</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>fdf71632-d200-46e4-9e70-9f9b31850255</RecID>
      <Name>SOQ</Name>
      <Description>Sales Order Quantity</Description>
      <DisplayOrder>12</DisplayOrder>
      <CellType>Float</CellType>
      <CustomFieldModule>Work Order</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>ae21f22d-ea6d-4b91-838d-6af70b3bd3e7</RecID>
      <Name>Mixes</Name>
      <Description>Number of Mixes for this Work Order</Description>
      <DisplayOrder>1</DisplayOrder>
      <CellType>Integer</CellType>
      <CustomFieldModule>Work Order Stages</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>4766f7a3-5bae-42a8-894b-8db4ed4f7cec</RecID>
      <Name>Paddock</Name>
      <Description>Paddock</Description>
      <DisplayOrder>1</DisplayOrder>
      <CellType>Text</CellType>
      <CustomFieldModule>Purchase Order Lines</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>4099b129-55ed-4dcf-8f74-32fa0dd27c9d</RecID>
      <Name>Lab</Name>
      <Description>Lab</Description>
      <DisplayOrder>2</DisplayOrder>
      <CellType>Combo</CellType>
      <CustomFieldModule>Purchase Order Lines</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>70bcf312-cbb8-4531-8ce6-4a6014a245ea</RecID>
      <Name>CleaningPlant</Name>
      <Description>Cleaning Plant</Description>
      <DisplayOrder>3</DisplayOrder>
      <CellType>Combo</CellType>
      <CustomFieldModule>Purchase Order Lines</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>571c948b-3382-4027-a797-95033aac35c2</RecID>
      <Name>PlantedVariety</Name>
      <Description>Planted Variety</Description>
      <DisplayOrder>4</DisplayOrder>
      <CellType>Lookup</CellType>
      <CustomFieldModule>Purchase Order Lines</CustomFieldModule>
    </CustomField>
    <CustomField>
      <RecID>11a945c7-f75e-4294-9a10-9421e4764c34</RecID>
      <Name>WarehouseEmail</Name>
      <Description>Warehouse Email</Description>
      <DisplayOrder>1</DisplayOrder>
      <CellType>Text</CellType>
      <CustomFieldModule>Warehouse Maintenance</CustomFieldModule>
    </CustomField>
  </CustomFieldCollection>
</JiwaDocument>