Reconfigure for GIT
This commit is contained in:
@@ -0,0 +1,89 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using DevExpress.Xpo;
|
||||
using DevExpress.Persistent.Base;
|
||||
using System.Collections.Generic;
|
||||
using DevExpress.Persistent.BaseImpl;
|
||||
using DevExpress.Persistent.Validation;
|
||||
namespace SISBusiness.Module
|
||||
{
|
||||
[DefaultClassOptions]
|
||||
[CreatableItem(false)]
|
||||
[NonPersistent]
|
||||
[NavigationItem("Reports")]
|
||||
[RuleCriteria("NAVInvoiceReport-OutputPath",DefaultContexts.Save,"CheckFilePath = true")]
|
||||
public class NAVInvoiceReport : BaseObject
|
||||
{ // Inherit from a different class to provide a custom primary key, concurrency and deletion behavior, etc. (http://documentation.devexpress.com/#Xaf/CustomDocument3146).
|
||||
public NAVInvoiceReport(Session session)
|
||||
: base(session)
|
||||
{
|
||||
}
|
||||
public override void AfterConstruction()
|
||||
{
|
||||
base.AfterConstruction();
|
||||
// Place your initialization code here (http://documentation.devexpress.com/#Xaf/CustomDocument2834).
|
||||
}
|
||||
private DateTime _fromDate;
|
||||
private DateTime _toDate;
|
||||
private String _documentNumberFrom;
|
||||
private String _documentNumberTo;
|
||||
private String _documentNumberBegin;
|
||||
private String _outputPath;
|
||||
//[XafDisplayName("My display name"), ToolTip("My hint message")]
|
||||
//[ModelDefault("EditMask", "(000)-00"), Index(0), VisibleInListView(false)]
|
||||
//[Persistent("DatabaseColumnName"), RuleRequiredField(DefaultContexts.Save)]
|
||||
[RuleRequiredField("NAVInvoiceReport-FromDate", DefaultContexts.Save)]
|
||||
public DateTime FromDate
|
||||
{
|
||||
get { return _fromDate; }
|
||||
set { SetPropertyValue("FromDate", ref _fromDate, value); }
|
||||
}
|
||||
[RuleRequiredField("NAVInvoiceReport-ToDate", DefaultContexts.Save)]
|
||||
public DateTime ToDate
|
||||
{
|
||||
get { return _toDate; }
|
||||
set { SetPropertyValue("ToDate", ref _toDate, value); }
|
||||
}
|
||||
public String DocumentNumberFrom
|
||||
{
|
||||
get { return _documentNumberFrom; }
|
||||
set { SetPropertyValue("DocumentNumberFrom", ref _documentNumberFrom, value); }
|
||||
}
|
||||
public String DocumentNumberTo
|
||||
{
|
||||
get { return _documentNumberTo; }
|
||||
set { SetPropertyValue("DocumentNumberTo", ref _documentNumberTo, value); }
|
||||
}
|
||||
public String DocumentNumberBegin
|
||||
{
|
||||
get { return _documentNumberBegin; }
|
||||
set { SetPropertyValue("DocumentNumberBegin", ref _documentNumberBegin, value); }
|
||||
}
|
||||
[Size(900)]
|
||||
|
||||
public String OutputPath
|
||||
{
|
||||
get { return _outputPath; }
|
||||
set { SetPropertyValue("OutputPath", ref _outputPath, value); }
|
||||
}
|
||||
private Boolean CheckFilePath
|
||||
{
|
||||
get
|
||||
{
|
||||
if (System.IO.Directory.Exists(OutputPath))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
};
|
||||
}
|
||||
}
|
||||
//[Action(Caption = "My UI Action", ConfirmationMessage = "Are you sure?", ImageName = "Attention", AutoCommit = true)]
|
||||
//public void ActionMethod() {
|
||||
// // Trigger a custom business logic for the current record in the UI (http://documentation.devexpress.com/#Xaf/CustomDocument2619).
|
||||
// this.PersistentProperty = "Paid";
|
||||
//}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
Folder Description
|
||||
|
||||
The "BusinessObjects" project folder is intended for storing the business objects
|
||||
code. In XAF, a business object can be implemented as a base persistent class
|
||||
descendant and as Domain Component interfaces.
|
||||
|
||||
|
||||
Relevant Documentation
|
||||
|
||||
Business Model Design
|
||||
http://help.devexpress.com/#Xaf/CustomDocument2600
|
||||
|
||||
Domain Components
|
||||
http://help.devexpress.com/#Xaf/CustomDocument3261
|
||||
@@ -0,0 +1,50 @@
|
||||
namespace SISBusiness.Module
|
||||
{
|
||||
partial class AuditTrailVCC
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Component Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
this.aGetAuditTrailC = new DevExpress.ExpressApp.Actions.SimpleAction(this.components);
|
||||
//
|
||||
// aGetAuditTrailC
|
||||
//
|
||||
this.aGetAuditTrailC.Caption = "aGet Audit Trail C";
|
||||
this.aGetAuditTrailC.Category = "View";
|
||||
this.aGetAuditTrailC.ConfirmationMessage = null;
|
||||
this.aGetAuditTrailC.Id = "aGetAuditTrailC";
|
||||
this.aGetAuditTrailC.SelectionDependencyType = DevExpress.ExpressApp.Actions.SelectionDependencyType.RequireSingleObject;
|
||||
this.aGetAuditTrailC.ToolTip = null;
|
||||
this.aGetAuditTrailC.Execute += new DevExpress.ExpressApp.Actions.SimpleActionExecuteEventHandler(this.aGetAuditTrail_Execute);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
internal DevExpress.ExpressApp.Actions.SimpleAction aGetAuditTrailC;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,72 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using DevExpress.ExpressApp;
|
||||
using DevExpress.Data.Filtering;
|
||||
using System.Collections.Generic;
|
||||
using DevExpress.ExpressApp.Actions;
|
||||
using DevExpress.ExpressApp.Xpo;
|
||||
using DevExpress.Xpo;
|
||||
using DevExpress.Persistent.BaseImpl;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace SISBusiness.Module
|
||||
{
|
||||
// For more typical usage scenarios, be sure to check out http://documentation.devexpress.com/#Xaf/clsDevExpressExpressAppViewControllertopic.
|
||||
public partial class AuditTrailVCC : ViewController
|
||||
{
|
||||
public AuditTrailVCC()
|
||||
{
|
||||
InitializeComponent();
|
||||
RegisterActions(components);
|
||||
TargetViewType = ViewType.ListView;
|
||||
// Target required Views (via the TargetXXX properties) and create their Actions.
|
||||
}
|
||||
protected override void OnActivated()
|
||||
{
|
||||
base.OnActivated();
|
||||
Frame.GetController<AuditTrailVCC>().aGetAuditTrailC.Active.SetItemValue("", false);
|
||||
|
||||
if( View.Id.Contains("AuditDataItemPersistent")) {
|
||||
Frame.GetController<AuditTrailVCC>().aGetAuditTrailC.Active.SetItemValue("", false);
|
||||
}
|
||||
// Perform various tasks depending on the target View.
|
||||
}
|
||||
protected override void OnViewControlsCreated()
|
||||
{
|
||||
base.OnViewControlsCreated();
|
||||
// Access and customize the target View control.
|
||||
}
|
||||
protected override void OnDeactivated()
|
||||
{
|
||||
// Unsubscribe from previously subscribed events and release other references and resources.
|
||||
base.OnDeactivated();
|
||||
}
|
||||
|
||||
private void aGetAuditTrail_Execute(object sender, SimpleActionExecuteEventArgs e)
|
||||
{
|
||||
|
||||
//XPObjectSpace _ocur = View.ObjectSpace as XPObjectSpace;
|
||||
//XPCollection<AuditDataItemPersistent> _AuditDataItemPersistent_Collection = default(XPCollection<AuditDataItemPersistent>);
|
||||
//XPObjectSpace _onew = (XPObjectSpace)Application.CreateObjectSpace();
|
||||
//CollectionSource _CS = new CollectionSource(_onew, typeof(AuditDataItemPersistent));
|
||||
|
||||
//_AuditDataItemPersistent_Collection = AuditedObjectWeakReference.GetAuditTrail(_ocur.Session, View.SelectedObjects[0]);
|
||||
|
||||
//_CS.BeginUpdateCriteria();
|
||||
//_CS.Criteria.Clear();
|
||||
//_CS.Criteria["First"] = CriteriaOperator.Parse("1=2");
|
||||
//_CS.EndUpdateCriteria();
|
||||
|
||||
//if (_AuditDataItemPersistent_Collection != null) {
|
||||
// foreach ( var _AuditDataItemPersistent in _AuditDataItemPersistent_Collection) {
|
||||
// _CS.Add(_onew.GetObject(_AuditDataItemPersistent));
|
||||
// }
|
||||
|
||||
// e.ShowViewParameters.CreatedView = Application.CreateListView("AuditDataItemPersistent_ListView", _CS, false);
|
||||
// e.ShowViewParameters.NewWindowTarget = NewWindowTarget.Separate;
|
||||
// e.ShowViewParameters.TargetWindow = TargetWindow.NewModalWindow;
|
||||
|
||||
//}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,126 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="aGetAuditTrailC.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
<metadata name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
</root>
|
||||
@@ -0,0 +1,67 @@
|
||||
namespace SISBusiness.Module
|
||||
{
|
||||
partial class CustomersOrderVC
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Component Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
this.aCustomer_SysnBusinessDirectory = new DevExpress.ExpressApp.Actions.SimpleAction(this.components);
|
||||
this.aOpenWindowsExplorer = new DevExpress.ExpressApp.Actions.SimpleAction(this.components);
|
||||
//
|
||||
// aCustomer_SysnBusinessDirectory
|
||||
//
|
||||
this.aCustomer_SysnBusinessDirectory.Caption = "aCustomer_SyncBusinessDirectory";
|
||||
this.aCustomer_SysnBusinessDirectory.Category = "ObjectsCreation";
|
||||
this.aCustomer_SysnBusinessDirectory.ConfirmationMessage = null;
|
||||
this.aCustomer_SysnBusinessDirectory.Id = "aCustomer_SyncBusinessDirectory";
|
||||
this.aCustomer_SysnBusinessDirectory.SelectionDependencyType = DevExpress.ExpressApp.Actions.SelectionDependencyType.RequireSingleObject;
|
||||
this.aCustomer_SysnBusinessDirectory.ToolTip = null;
|
||||
this.aCustomer_SysnBusinessDirectory.Execute += new DevExpress.ExpressApp.Actions.SimpleActionExecuteEventHandler(this.aCustomer_SysnBusinessDirectory_Execute);
|
||||
//
|
||||
// aOpenWindowsExplorer
|
||||
//
|
||||
this.aOpenWindowsExplorer.Caption = "aOpen Windows Explorer";
|
||||
this.aOpenWindowsExplorer.Category = "ObjectsCreation";
|
||||
this.aOpenWindowsExplorer.ConfirmationMessage = null;
|
||||
this.aOpenWindowsExplorer.Id = "aOpenWindowsExplorer";
|
||||
this.aOpenWindowsExplorer.SelectionDependencyType = DevExpress.ExpressApp.Actions.SelectionDependencyType.RequireSingleObject;
|
||||
this.aOpenWindowsExplorer.ToolTip = null;
|
||||
this.aOpenWindowsExplorer.Execute += new DevExpress.ExpressApp.Actions.SimpleActionExecuteEventHandler(this.aOpenWindowsExplorer_Execute);
|
||||
//
|
||||
// CustomersOrderVC
|
||||
//
|
||||
this.Actions.Add(this.aCustomer_SysnBusinessDirectory);
|
||||
this.Actions.Add(this.aOpenWindowsExplorer);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private DevExpress.ExpressApp.Actions.SimpleAction aOpenWindowsExplorer;
|
||||
private DevExpress.ExpressApp.Actions.SimpleAction aCustomer_SysnBusinessDirectory;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,179 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using DevExpress.Data.Filtering;
|
||||
using DevExpress.ExpressApp;
|
||||
using DevExpress.ExpressApp.Actions;
|
||||
using DevExpress.ExpressApp.Editors;
|
||||
using DevExpress.ExpressApp.Layout;
|
||||
using DevExpress.ExpressApp.Model.NodeGenerators;
|
||||
using DevExpress.ExpressApp.SystemModule;
|
||||
using DevExpress.ExpressApp.Templates;
|
||||
using DevExpress.ExpressApp.Utils;
|
||||
using DevExpress.Persistent.Base;
|
||||
using DevExpress.Persistent.Validation;
|
||||
using DevExpress.ExpressApp.Xpo;
|
||||
using System.IO;
|
||||
using System.Collections;
|
||||
using System.Diagnostics;
|
||||
using System.Windows.Forms;
|
||||
using DevExpress.Xpo;
|
||||
using System;
|
||||
using System.Linq;
|
||||
using DevExpress.Xpo;
|
||||
using DevExpress.Persistent.Base;
|
||||
using System.Collections.Generic;
|
||||
using DevExpress.Persistent.BaseImpl;
|
||||
using DevExpress.Persistent.Validation;
|
||||
using DevExpress.ExpressApp.Model;
|
||||
|
||||
namespace SISBusiness.Module
|
||||
{
|
||||
// For more typical usage scenarios, be sure to check out https://documentation.devexpress.com/eXpressAppFramework/clsDevExpressExpressAppViewControllertopic.aspx.
|
||||
public partial class CustomersOrderVC : ViewController
|
||||
{
|
||||
public CustomersOrderVC()
|
||||
{
|
||||
InitializeComponent();
|
||||
// Target required Views (via the TargetXXX properties) and create their Actions.
|
||||
}
|
||||
protected override void OnActivated()
|
||||
{
|
||||
base.OnActivated();
|
||||
Frame.GetController<CustomersOrderVC>().aCustomer_SysnBusinessDirectory.Active.SetItemValue("", false);
|
||||
Frame.GetController<CustomersOrderVC>().aOpenWindowsExplorer.Active.SetItemValue("", false);
|
||||
if (View.Id == "DBV_OfferOutRows_ListView")
|
||||
{
|
||||
Frame.GetController<CustomersOrderVC>().aCustomer_SysnBusinessDirectory.Active.SetItemValue("", true);
|
||||
}
|
||||
if (View.Id.Contains("OfferOutHeader_ListView"))
|
||||
{
|
||||
Frame.GetController<CustomersOrderVC>().aCustomer_SysnBusinessDirectory.Active.SetItemValue("", true);
|
||||
}
|
||||
DevExpress.ExpressApp.ListView _ListView = View as DevExpress.ExpressApp.ListView;
|
||||
if (_ListView != null)
|
||||
{
|
||||
IModelListView _IModelListView = (IModelListView)_ListView.Model;
|
||||
switch (_IModelListView.ModelClass.Name)
|
||||
{
|
||||
case "SISBusiness.Module.Customers":
|
||||
case "SISBusiness.Module.CustomersOrder":
|
||||
Frame.GetController<CustomersOrderVC>().aOpenWindowsExplorer.Active.SetItemValue("", true);
|
||||
break;
|
||||
}
|
||||
}
|
||||
switch (View.Id)
|
||||
{
|
||||
case "DBV_OfferOutRows_ListView":
|
||||
case "DBV_Products_ListView":
|
||||
Frame.GetController<CustomersOrderVC>().aOpenWindowsExplorer.Active.SetItemValue("", true);
|
||||
break;
|
||||
}
|
||||
}
|
||||
protected override void OnViewControlsCreated()
|
||||
{
|
||||
base.OnViewControlsCreated();
|
||||
// Access and customize the target View control.
|
||||
}
|
||||
protected override void OnDeactivated()
|
||||
{
|
||||
// Unsubscribe from previously subscribed events and release other references and resources.
|
||||
base.OnDeactivated();
|
||||
}
|
||||
|
||||
private void aOpenWindowsExplorer_Execute(object sender, SimpleActionExecuteEventArgs e)
|
||||
{
|
||||
XPObjectSpace _ocur = (XPObjectSpace)View.ObjectSpace;
|
||||
XPObjectSpace _onew = (XPObjectSpace)Application.CreateObjectSpace();
|
||||
XPBaseObject _Object = (XPBaseObject)View.SelectedObjects[0];
|
||||
|
||||
DevExpress.ExpressApp.ListView _ListView = (DevExpress.ExpressApp.ListView)View;
|
||||
if (_ListView != null)
|
||||
{
|
||||
IModelListView _IModelListView = (IModelListView)_ListView.Model;
|
||||
switch (_IModelListView.ModelClass.Name)
|
||||
{
|
||||
case "SISBusiness.Module.Products":
|
||||
_Object = ((Products)_Object).ProductGroups;
|
||||
break;
|
||||
case "SISBusiness.Module.Contacts":
|
||||
_Object = ((Contacts)_Object).Customers;
|
||||
break;
|
||||
case "SISBusiness.Module.OfferOutRows":
|
||||
_Object = ((OfferOutRows)_Object).OfferOutHeader;
|
||||
break;
|
||||
|
||||
}
|
||||
}
|
||||
try
|
||||
{
|
||||
if (_Object != null)
|
||||
{
|
||||
if (string.IsNullOrEmpty(_Object.GetMemberValue("DocumentPath").ToString()) == false)
|
||||
{
|
||||
if (Directory.Exists(_Object.GetMemberValue("DocumentPath").ToString()))
|
||||
{
|
||||
Process.Start(_Object.GetMemberValue("DocumentPath").ToString());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private void aCustomer_SysnBusinessDirectory_Execute(object sender, SimpleActionExecuteEventArgs e)
|
||||
{
|
||||
XPObjectSpace _ocur= (XPObjectSpace)View.ObjectSpace;
|
||||
Customers _Customers=null;
|
||||
OfferOutHeader _OfferOutHeader = null;
|
||||
switch (View.Id)
|
||||
{
|
||||
case "DBV_OfferOutRows_ListView":
|
||||
_OfferOutHeader = ((OfferOutRows)View.SelectedObjects[0]).OfferOutHeader;
|
||||
_Customers=_OfferOutHeader.Customers;
|
||||
break;
|
||||
case "OfferOutHeader_ListView":
|
||||
case "OfferOutHeader_ListView_Editable":
|
||||
_OfferOutHeader = ((OfferOutHeader)View.SelectedObjects[0]);
|
||||
_Customers = _OfferOutHeader.Customers;
|
||||
break;
|
||||
default:
|
||||
return;
|
||||
break;
|
||||
}
|
||||
if (_Customers.MasterBusinessDirectory == null)
|
||||
{
|
||||
BusinessDirectory _CustomersBaseBusinessDirectory = _ocur.FindObject<BusinessDirectory>(CriteriaOperator.Parse("ShortName='Ügyfelek' AND IsNull(BusinessDirectory_Parent)=True"));
|
||||
|
||||
if (_CustomersBaseBusinessDirectory == null)
|
||||
{
|
||||
_CustomersBaseBusinessDirectory = new BusinessDirectory(_ocur.Session);
|
||||
var _with1 = _CustomersBaseBusinessDirectory;
|
||||
_with1.ShortName = "Ügyfelek";
|
||||
_with1.BusinessDirectory_Parent = null;
|
||||
}
|
||||
|
||||
BusinessDirectory _CustomersBusinessDirectory = new BusinessDirectory(_ocur.Session);
|
||||
_CustomersBusinessDirectory.ShortName = string.Format("{0} {1} {2}", _Customers.FullName, _Customers.Address1.City, _Customers.CustomerNumber);
|
||||
_CustomersBusinessDirectory.BusinessDirectory_Parent = _CustomersBaseBusinessDirectory;
|
||||
_CustomersBusinessDirectory.Save();
|
||||
_Customers.MasterBusinessDirectory = _CustomersBusinessDirectory;
|
||||
_ocur.CommitChanges();
|
||||
}
|
||||
|
||||
if (_OfferOutHeader.MasterBusinessDirectory == null)
|
||||
{
|
||||
BusinessDirectory _OfferOutBusinessDirectory = new BusinessDirectory(_ocur.Session);
|
||||
_OfferOutBusinessDirectory.ShortName = string.Format("{0}", _OfferOutHeader.DocumentNumber);
|
||||
_OfferOutBusinessDirectory.BusinessDirectory_Parent = _OfferOutHeader.Customers.MasterBusinessDirectory;
|
||||
_OfferOutBusinessDirectory.Save();
|
||||
_OfferOutHeader.MasterBusinessDirectory = _OfferOutBusinessDirectory;
|
||||
_ocur.CommitChanges();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,129 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="aCustomer_SysnBusinessDirectory.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 56</value>
|
||||
</metadata>
|
||||
<metadata name="aOpenWindowsExplorer.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>254, 17</value>
|
||||
</metadata>
|
||||
<metadata name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
</root>
|
||||
@@ -0,0 +1,54 @@
|
||||
namespace SISBusiness.Module
|
||||
{
|
||||
partial class NavInvoiceReportVC
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Component Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
this.aCreateNAVInvoiceReportXML = new DevExpress.ExpressApp.Actions.SimpleAction(this.components);
|
||||
//
|
||||
// aCreateNAVInvoiceReportXML
|
||||
//
|
||||
this.aCreateNAVInvoiceReportXML.ActionMeaning = DevExpress.ExpressApp.Actions.ActionMeaning.Accept;
|
||||
this.aCreateNAVInvoiceReportXML.Caption = "aCreate NAVInvoice Report XML";
|
||||
this.aCreateNAVInvoiceReportXML.ConfirmationMessage = "aCreateNAVInvoiceReportXML";
|
||||
this.aCreateNAVInvoiceReportXML.Id = "aCreateNAVInvoiceReportXML";
|
||||
this.aCreateNAVInvoiceReportXML.TargetObjectType = typeof(SISBusiness.Module.NAVInvoiceReport);
|
||||
this.aCreateNAVInvoiceReportXML.ToolTip = null;
|
||||
this.aCreateNAVInvoiceReportXML.Execute += new DevExpress.ExpressApp.Actions.SimpleActionExecuteEventHandler(this.aCreateNAVInvoiceReportXML_Execute);
|
||||
//
|
||||
// NavInvoiceReportVC
|
||||
//
|
||||
this.Actions.Add(this.aCreateNAVInvoiceReportXML);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private DevExpress.ExpressApp.Actions.SimpleAction aCreateNAVInvoiceReportXML;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,204 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using DevExpress.ExpressApp;
|
||||
using System.Collections.Generic;
|
||||
using DevExpress.ExpressApp.Actions;
|
||||
using DevExpress.Persistent.Validation;
|
||||
using System.Xml;
|
||||
using DevExpress.Xpo;
|
||||
using DevExpress.ExpressApp.Xpo;
|
||||
using DevExpress.Data.Filtering;
|
||||
using SISBusiness.Module;
|
||||
using System.Globalization;
|
||||
using System.Windows.Forms;
|
||||
namespace SISBusiness.Module
|
||||
{
|
||||
// For more typical usage scenarios, be sure to check out http://documentation.devexpress.com/#Xaf/clsDevExpressExpressAppViewControllertopic.
|
||||
public partial class NavInvoiceReportVC : ViewController
|
||||
{
|
||||
public NavInvoiceReportVC()
|
||||
{
|
||||
InitializeComponent();
|
||||
RegisterActions(components);
|
||||
// Target required Views (via the TargetXXX properties) and create their Actions.
|
||||
}
|
||||
protected override void OnActivated()
|
||||
{
|
||||
base.OnActivated();
|
||||
// Perform various tasks depending on the target View.
|
||||
}
|
||||
protected override void OnViewControlsCreated()
|
||||
{
|
||||
base.OnViewControlsCreated();
|
||||
// Access and customize the target View control.
|
||||
}
|
||||
protected override void OnDeactivated()
|
||||
{
|
||||
// Unsubscribe from previously subscribed events and release other references and resources.
|
||||
base.OnDeactivated();
|
||||
}
|
||||
|
||||
private void aCreateNAVInvoiceReportXML_Execute(object sender, SimpleActionExecuteEventArgs e)
|
||||
{
|
||||
|
||||
XPObjectSpace _ocur = (XPObjectSpace)View.ObjectSpace;
|
||||
XPObjectSpace _onew = (XPObjectSpace)Application.CreateObjectSpace();
|
||||
NAVInvoiceReport _NAVInvoiceReport = (NAVInvoiceReport)View.SelectedObjects[0];
|
||||
|
||||
//Kritéria a törzsbõl
|
||||
System.String _Criteria=" IsEditable=false and IsProforma=false and DocumentNumber!='' and IsNull(DocumentNumber)=false";
|
||||
|
||||
if (string.IsNullOrEmpty(_NAVInvoiceReport.DocumentNumberFrom)==false & string.IsNullOrEmpty(_NAVInvoiceReport.DocumentNumberTo)==false)
|
||||
{
|
||||
_Criteria += string.Format(" and (DocumentNumber>='{0}' and DocumentNumber <='{1}')", _NAVInvoiceReport.DocumentNumberFrom, _NAVInvoiceReport.DocumentNumberTo);
|
||||
}
|
||||
_Criteria += " and (GetDate(DateCreated)>=? and GetDate(DateCreated)<=?)";
|
||||
XPCollection<InvoiceHeader> _InvoiceHeader_Collection = new XPCollection<InvoiceHeader>(_onew.Session, CriteriaOperator.Parse(_Criteria, _NAVInvoiceReport.FromDate, _NAVInvoiceReport.ToDate));
|
||||
|
||||
_InvoiceHeader_Collection.Sorting.Add(new SortProperty("DateCreated", DevExpress.Xpo.DB.SortingDirection.Ascending));
|
||||
|
||||
System.String _Filename = string.Format(@"NR{0:yyyyMMddHHmm}.xml", System.DateTime.Now);
|
||||
if (Validator.RuleSet.ValidateAll(View.ObjectSpace, View.SelectedObjects, DefaultContexts.Save))
|
||||
{
|
||||
|
||||
XmlWriterSettings settings = new XmlWriterSettings() { Indent = true, NewLineOnAttributes = true };
|
||||
using (XmlWriter writer = XmlWriter.Create(string.Format(@"{0}\{1}",_NAVInvoiceReport.OutputPath,_Filename), settings))
|
||||
{
|
||||
writer.WriteStartDocument();
|
||||
writer.WriteStartElement("szamlak", @"http://schemas.nav.gov.hu/2013/szamla");
|
||||
writer.WriteElementString("export_datuma", DateTime.Now.ToString(@"yyyy-MM-dd"));
|
||||
writer.WriteElementString("export_szla_db", _InvoiceHeader_Collection.Count.ToString());
|
||||
writer.WriteElementString("kezdo_ido", _NAVInvoiceReport.FromDate.ToString(@"yyyy-MM-dd"));
|
||||
writer.WriteElementString("zaro_ido", _NAVInvoiceReport.ToDate.ToString(@"yyyy-MM-dd"));
|
||||
writer.WriteElementString("kezdo_szamlaszam", _NAVInvoiceReport.DocumentNumberFrom);
|
||||
writer.WriteElementString("zaro_szamlaszam", _NAVInvoiceReport.DocumentNumberTo);
|
||||
|
||||
foreach (InvoiceHeader _InvoiceHeader in _InvoiceHeader_Collection)
|
||||
{
|
||||
writer.WriteStartElement("szamla");
|
||||
|
||||
writer.WriteStartElement("fejlec");
|
||||
writer.WriteElementString("szlasorszam", _InvoiceHeader.DocumentNumber);
|
||||
writer.WriteElementString("szlatipus", "1");
|
||||
writer.WriteElementString("szladatum", _InvoiceHeader.DateCreated.ToString(@"yyyy-MM-dd"));
|
||||
writer.WriteElementString("teljdatum", _InvoiceHeader.DateExecution.ToString(@"yyyy-MM-dd"));
|
||||
|
||||
writer.WriteEndElement();//fejlec
|
||||
|
||||
writer.WriteStartElement("szamlakibocsato");
|
||||
writer.WriteElementString("adoszam", _InvoiceHeader.Saved_CustomersFrom_VATNumber);
|
||||
writer.WriteElementString("kisadozo", "false");
|
||||
writer.WriteElementString("nev", _InvoiceHeader.Saved_CustomersFrom_Name);
|
||||
|
||||
writer.WriteStartElement("cim");
|
||||
writer.WriteElementString("iranyitoszam", _InvoiceHeader.Saved_CustomersFrom_Address_ZipPostal);
|
||||
writer.WriteElementString("telepules", _InvoiceHeader.Saved_CustomersFrom_Address_City);
|
||||
|
||||
if (_InvoiceHeader.CustomersFrom.Address1.GetMemberValue("NameOfStreet") != null)
|
||||
{ writer.WriteElementString("kozterulet_neve", _InvoiceHeader.CustomersFrom.Address1.GetMemberValue("NameOfStreet").ToString()); }
|
||||
else
|
||||
{ writer.WriteElementString("kozterulet_neve", _InvoiceHeader.Saved_CustomersFrom_Address_Street); }
|
||||
|
||||
|
||||
if (_InvoiceHeader.CustomersFrom.Address1.GetMemberValue("District") != null) { writer.WriteElementString("kerulet", _InvoiceHeader.CustomersFrom.Address1.GetMemberValue("District").ToString()); }
|
||||
if (_InvoiceHeader.CustomersFrom.Address1.GetMemberValue("TypeOfStreet") != null) { writer.WriteElementString("kozterulet_jellege", _InvoiceHeader.CustomersFrom.Address1.GetMemberValue("TypeOfStreet").ToString()); }
|
||||
if (_InvoiceHeader.CustomersFrom.Address1.GetMemberValue("NumberOfStreet") != null) { writer.WriteElementString("hazszam", _InvoiceHeader.CustomersFrom.Address1.GetMemberValue("NumberOfStreet").ToString()); }
|
||||
if (_InvoiceHeader.CustomersFrom.Address1.GetMemberValue("Building") != null) { writer.WriteElementString("epulet", _InvoiceHeader.CustomersFrom.Address1.GetMemberValue("Building").ToString()); }
|
||||
if (_InvoiceHeader.CustomersFrom.Address1.GetMemberValue("StairCase") != null) { writer.WriteElementString("lepcsohaz", _InvoiceHeader.CustomersFrom.Address1.GetMemberValue("StairCase").ToString()); }
|
||||
if (_InvoiceHeader.CustomersFrom.Address1.GetMemberValue("Floor") != null) { writer.WriteElementString("szint", _InvoiceHeader.CustomersFrom.Address1.GetMemberValue("Floor").ToString()); }
|
||||
if (_InvoiceHeader.CustomersFrom.Address1.GetMemberValue("NumberOfDoor") != null) { writer.WriteElementString("ajto", _InvoiceHeader.CustomersFrom.Address1.GetMemberValue("NumberOfDoor").ToString()); }
|
||||
|
||||
//writer.WriteElementString("kerulet", (_InvoiceHeader.CustomersFrom.Address1.GetMemberValue("District") ?? "").ToString());
|
||||
|
||||
writer.WriteElementString("egyeni_vallalkozo", "");
|
||||
writer.WriteElementString("ev_nyilv_tart_szam", "");
|
||||
writer.WriteElementString("ev_neve", "");
|
||||
writer.WriteEndElement();//cim
|
||||
|
||||
writer.WriteEndElement();//szamlakibocsato
|
||||
|
||||
writer.WriteStartElement("vevo");
|
||||
writer.WriteElementString("nev", _InvoiceHeader.Saved_Customers_Name);
|
||||
|
||||
writer.WriteStartElement("cim");
|
||||
writer.WriteElementString("iranyitoszam", _InvoiceHeader.Saved_Customers_Address_ZipPostal);
|
||||
writer.WriteElementString("telepules", _InvoiceHeader.Saved_Customers_Address_City);
|
||||
if (_InvoiceHeader.Customers.Address1.GetMemberValue("NameOfStreet") != null)
|
||||
{ writer.WriteElementString("kozterulet_neve", _InvoiceHeader.Customers.Address1.GetMemberValue("NameOfStreet").ToString()); }
|
||||
else
|
||||
{ writer.WriteElementString("kozterulet_neve", _InvoiceHeader.Saved_Customers_Address_Street); }
|
||||
|
||||
|
||||
if (_InvoiceHeader.Customers.Address1.GetMemberValue("District") != null) { writer.WriteElementString("kerulet", _InvoiceHeader.Customers.Address1.GetMemberValue("District").ToString()); }
|
||||
if (_InvoiceHeader.Customers.Address1.GetMemberValue("TypeOfStreet") != null) { writer.WriteElementString("kozterulet_jellege", _InvoiceHeader.Customers.Address1.GetMemberValue("TypeOfStreet").ToString()); }
|
||||
if (_InvoiceHeader.Customers.Address1.GetMemberValue("NumberOfStreet") != null) { writer.WriteElementString("hazszam", _InvoiceHeader.Customers.Address1.GetMemberValue("NumberOfStreet").ToString()); }
|
||||
if (_InvoiceHeader.Customers.Address1.GetMemberValue("Building") != null) { writer.WriteElementString("epulet", _InvoiceHeader.Customers.Address1.GetMemberValue("Building").ToString()); }
|
||||
if (_InvoiceHeader.Customers.Address1.GetMemberValue("StairCase") != null) { writer.WriteElementString("lepcsohaz", _InvoiceHeader.Customers.Address1.GetMemberValue("StairCase").ToString()); }
|
||||
if (_InvoiceHeader.Customers.Address1.GetMemberValue("Floor") != null) { writer.WriteElementString("szint", _InvoiceHeader.Customers.Address1.GetMemberValue("Floor").ToString()); }
|
||||
if (_InvoiceHeader.Customers.Address1.GetMemberValue("NumberOfDoor") != null) { writer.WriteElementString("ajto", _InvoiceHeader.Customers.Address1.GetMemberValue("NumberOfDoor").ToString()); }
|
||||
|
||||
writer.WriteEndElement();//cim
|
||||
|
||||
writer.WriteEndElement();//vevo
|
||||
foreach (InvoiceRows _InvoiceRows in _InvoiceHeader.InvoiceRows)
|
||||
{
|
||||
writer.WriteStartElement("termek_szolgaltatas_tetelek");
|
||||
writer.WriteElementString("termeknev", _InvoiceRows.ShortName);
|
||||
writer.WriteElementString("menny", _InvoiceRows.QTT.ToString("F", CultureInfo.InvariantCulture));
|
||||
writer.WriteElementString("mertekegys", _InvoiceRows.Units.ShortName);
|
||||
writer.WriteElementString("nettoar", _InvoiceRows.SumPriceHUF.ToString("F", CultureInfo.InvariantCulture));
|
||||
writer.WriteElementString("nettoegysar", _InvoiceRows.ListPriceHUF.ToString("F", CultureInfo.InvariantCulture));
|
||||
writer.WriteElementString("adokulcs", _InvoiceRows.VAT.KeyValue.ToString("F", CultureInfo.InvariantCulture));
|
||||
writer.WriteElementString("adoertek", (_InvoiceRows.SumPriceBruttoHUF - _InvoiceRows.SumPriceHUF).ToString("F", CultureInfo.InvariantCulture));
|
||||
writer.WriteElementString("bruttoar", _InvoiceRows.SumPriceBruttoHUF.ToString("F", CultureInfo.InvariantCulture));
|
||||
|
||||
writer.WriteEndElement();//termek_szolgaltatas_tetelek
|
||||
}
|
||||
|
||||
writer.WriteStartElement("zaradekok");
|
||||
writer.WriteElementString("adoment_hiv", "false");
|
||||
writer.WriteEndElement(); //zaradekok
|
||||
|
||||
writer.WriteStartElement("nem_kotelezo");
|
||||
writer.WriteElementString("fiz_hatarido", _InvoiceHeader.DatePayment.ToString(@"yyyy-MM-dd"));
|
||||
writer.WriteElementString("fiz_mod", _InvoiceHeader.PaymentOption.ShortName);
|
||||
writer.WriteElementString("penznem", _InvoiceHeader.CurrencyName.ShortName);
|
||||
writer.WriteEndElement(); //nem_kotelezo
|
||||
|
||||
writer.WriteStartElement("osszesites");
|
||||
foreach (InvoiceVATRows _InvoiceVATRows in _InvoiceHeader.InvoiceVATRows)
|
||||
{
|
||||
writer.WriteStartElement("afarovat");
|
||||
writer.WriteElementString("nettoar", _InvoiceVATRows.AmountNettoHUF.ToString("F", CultureInfo.InvariantCulture));
|
||||
writer.WriteElementString("adokulcs", _InvoiceVATRows.VAT.KeyValue.ToString("F", CultureInfo.InvariantCulture));
|
||||
writer.WriteElementString("adoertek", _InvoiceVATRows.AmountVATHUF.ToString("F", CultureInfo.InvariantCulture));
|
||||
writer.WriteElementString("bruttoar", _InvoiceVATRows.AmountBruttoHUF.ToString("F", CultureInfo.InvariantCulture));
|
||||
|
||||
writer.WriteEndElement(); //afarovat
|
||||
}
|
||||
writer.WriteStartElement("vegosszeg");
|
||||
writer.WriteElementString("nettoarossz", _InvoiceHeader.TotalNettoHUF.ToString("F", CultureInfo.InvariantCulture));
|
||||
writer.WriteElementString("afaertekossz", _InvoiceHeader.TotalVATHUF.ToString("F", CultureInfo.InvariantCulture));
|
||||
writer.WriteElementString("bruttoarossz", _InvoiceHeader.TotalBruttoHUF.ToString("F", CultureInfo.InvariantCulture));
|
||||
|
||||
writer.WriteEndElement(); //vegosszeg
|
||||
writer.WriteEndElement(); //osszesites
|
||||
|
||||
writer.WriteEndElement(); //szamla
|
||||
}
|
||||
|
||||
writer.WriteEndElement();
|
||||
writer.WriteEndDocument();
|
||||
MessageBox.Show(string.Format("A letöltés befejezõdött !\nA fájl a következõ helyen :\n{0}", string.Format(@"{0}\{1}", _NAVInvoiceReport.OutputPath, _Filename)), "Adatletöltés állapota", MessageBoxButtons.OK);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void simpleAction1_Execute(object sender, SimpleActionExecuteEventArgs e)
|
||||
{
|
||||
DevExpress.ExpressApp.Reports.Win.ReportsController _ReportsController = Frame.GetController<DevExpress.ExpressApp.Reports.Win.ReportsController>();
|
||||
|
||||
_ReportsController.ShowReportDesignerAction.DoExecute();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,126 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="aCreateNAVInvoiceReportXML.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>146, 17</value>
|
||||
</metadata>
|
||||
<metadata name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
</root>
|
||||
@@ -0,0 +1,36 @@
|
||||
namespace SISBusiness.Module
|
||||
{
|
||||
partial class NavigationItemVCC
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Component Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
components = new System.ComponentModel.Container();
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using DevExpress.ExpressApp.Actions;
|
||||
using DevExpress.ExpressApp.SystemModule;
|
||||
using DevExpress.ExpressApp.Xpo;
|
||||
|
||||
namespace SISBusiness.Module
|
||||
{
|
||||
// For more typical usage scenarios, be sure to check out http://documentation.devexpress.com/#Xaf/clsDevExpressExpressAppWindowControllertopic.
|
||||
public partial class NavigationItemVCC : SISBusiness.Module.Win.SISShowNavigationItemController
|
||||
{
|
||||
public NavigationItemVCC()
|
||||
{
|
||||
InitializeComponent();
|
||||
RegisterActions(components);
|
||||
// Target required Windows (via the TargetXXX properties) and create their Actions.
|
||||
}
|
||||
protected override void OnActivated()
|
||||
{
|
||||
base.OnActivated();
|
||||
// Perform various tasks depending on the target Window.
|
||||
}
|
||||
protected override void OnDeactivated()
|
||||
{
|
||||
// Unsubscribe from previously subscribed events and release other references and resources.
|
||||
base.OnDeactivated();
|
||||
}
|
||||
|
||||
protected override void ShowNavigationItem(SingleChoiceActionExecuteEventArgs args)
|
||||
{
|
||||
if (args.SelectedChoiceActionItem != null && args.SelectedChoiceActionItem.Enabled)
|
||||
{
|
||||
if (args.SelectedChoiceActionItem.Id == "NAVInvoiceReport_ListView")
|
||||
{
|
||||
XPObjectSpace _onew = (XPObjectSpace)Application.CreateObjectSpace();
|
||||
NAVInvoiceReport _NAVInvoiceReport = _onew.CreateObject<NAVInvoiceReport>();
|
||||
|
||||
args.ShowViewParameters.CreatedView = Application.CreateDetailView(_onew, "NAVInvoiceReport_DetailView", true, _NAVInvoiceReport);
|
||||
}
|
||||
else
|
||||
{
|
||||
base.ShowNavigationItem(args);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
Folder Description
|
||||
|
||||
The "Controllers" project folder is intended for storing Controller classes
|
||||
that can change the default XAF application flow and add new features.
|
||||
|
||||
|
||||
Relevant Documentation
|
||||
|
||||
Extend Functionality
|
||||
http://help.devexpress.com/#Xaf/CustomDocument2623
|
||||
|
||||
Controller Class
|
||||
http://help.devexpress.com/#Xaf/clsDevExpressExpressAppControllertopic
|
||||
|
||||
ViewController Class
|
||||
http://help.devexpress.com/#Xaf/clsDevExpressExpressAppViewControllertopic
|
||||
|
||||
WindowController Class
|
||||
http://help.devexpress.com/#Xaf/clsDevExpressExpressAppWindowControllertopic
|
||||
@@ -0,0 +1,53 @@
|
||||
namespace SISBusiness.Module.Controllers
|
||||
{
|
||||
partial class ZoomListViewVC
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Component Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
this.aZoomListView = new DevExpress.ExpressApp.Actions.SimpleAction(this.components);
|
||||
//
|
||||
// aZoomListView
|
||||
//
|
||||
this.aZoomListView.Caption = "aZoom List View";
|
||||
this.aZoomListView.Category = "ObjectsCreation";
|
||||
this.aZoomListView.ConfirmationMessage = null;
|
||||
this.aZoomListView.Id = "aZoomListView";
|
||||
this.aZoomListView.ToolTip = null;
|
||||
this.aZoomListView.Execute += new DevExpress.ExpressApp.Actions.SimpleActionExecuteEventHandler(this.aZoomListView_Execute);
|
||||
//
|
||||
// ZoomListViewVC
|
||||
//
|
||||
this.Actions.Add(this.aZoomListView);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private DevExpress.ExpressApp.Actions.SimpleAction aZoomListView;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,156 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using DevExpress.Data.Filtering;
|
||||
using DevExpress.ExpressApp;
|
||||
using DevExpress.ExpressApp.Actions;
|
||||
using DevExpress.ExpressApp.Editors;
|
||||
using DevExpress.ExpressApp.Layout;
|
||||
using DevExpress.ExpressApp.Model.NodeGenerators;
|
||||
using DevExpress.ExpressApp.SystemModule;
|
||||
using DevExpress.ExpressApp.Templates;
|
||||
using DevExpress.ExpressApp.Utils;
|
||||
using DevExpress.Persistent.Base;
|
||||
using DevExpress.Persistent.Validation;
|
||||
using DevExpress.ExpressApp.Xpo;
|
||||
|
||||
namespace SISBusiness.Module.Controllers
|
||||
{
|
||||
// For more typical usage scenarios, be sure to check out https://documentation.devexpress.com/eXpressAppFramework/clsDevExpressExpressAppViewControllertopic.aspx.
|
||||
public partial class ZoomListViewVC : ViewController
|
||||
{
|
||||
public ZoomListViewVC()
|
||||
{
|
||||
InitializeComponent();
|
||||
// Target required Views (via the TargetXXX properties) and create their Actions.
|
||||
}
|
||||
protected override void OnActivated()
|
||||
{
|
||||
base.OnActivated();
|
||||
Frame.GetController<ZoomListViewVC>().aZoomListView.Active.SetItemValue("", false);
|
||||
if (View.Id.Contains("BusinessDirectory"))
|
||||
{
|
||||
Frame.GetController<ZoomListViewVC>().aZoomListView.Active.SetItemValue("", true);
|
||||
|
||||
}
|
||||
if (View.Id == "DBV_OfferOutRows_ListView")
|
||||
{
|
||||
Frame.GetController<ZoomListViewVC>().aZoomListView.Active.SetItemValue("", true);
|
||||
}
|
||||
if (View.Id == "DBV_OrderInRows_ListView")
|
||||
{
|
||||
Frame.GetController<ZoomListViewVC>().aZoomListView.Active.SetItemValue("", true);
|
||||
}
|
||||
if (View.Id == "BusinessDirectory_ListView_Zoom")
|
||||
{
|
||||
Frame.GetController<ZoomListViewVC>().aZoomListView.Active.SetItemValue("", false);
|
||||
Frame.GetController<SISBusiness.Module.BusinessDirectory_VC>().aBusinessDirectory_SetRoleEnabled.Active.SetItemValue("", false);
|
||||
Frame.GetController<SISBusiness.Module.BusinessDirectory_VC>().aBusinessDirectory_SetRoleDisabled.Active.SetItemValue("", false);
|
||||
Frame.GetController<SISBusiness.Module.BusinessDirectory_VC>().aBusinessDirectory_NewDashboard.Active.SetItemValue("", false);
|
||||
Frame.GetController<SISBusiness.Module.BusinessDirectory_VC>().aBusinessDirectory_OpenDashboardWithDesigner.Active.SetItemValue("", false);
|
||||
//Frame.GetController<SISBusiness.Module.BusinessDirectory_VC>().aBusinessDirectory_OpenDashboardWithViewer.Active.SetItemValue("", false);
|
||||
}
|
||||
if (View.Id == "Customers_Customers_BusinessDirectory_ListView")
|
||||
{
|
||||
Frame.GetController<SISBusiness.Module.BusinessDirectory_VC>().aBusinessDirectory_SetRoleEnabled.Active.SetItemValue("", false);
|
||||
Frame.GetController<SISBusiness.Module.BusinessDirectory_VC>().aBusinessDirectory_SetRoleDisabled.Active.SetItemValue("", false);
|
||||
Frame.GetController<SISBusiness.Module.BusinessDirectory_VC>().aBusinessDirectory_NewDashboard.Active.SetItemValue("", false);
|
||||
Frame.GetController<SISBusiness.Module.BusinessDirectory_VC>().aBusinessDirectory_OpenDashboardWithDesigner.Active.SetItemValue("", false);
|
||||
Frame.GetController<SISBusiness.Module.BusinessDirectory_VC>().aBusinessDirectory_OpenDashboardWithViewer.Active.SetItemValue("", false);
|
||||
}
|
||||
}
|
||||
protected override void OnViewControlsCreated()
|
||||
{
|
||||
base.OnViewControlsCreated();
|
||||
|
||||
}
|
||||
protected override void OnDeactivated()
|
||||
{
|
||||
if (View.Id.Contains("BusinessDirectory"))
|
||||
{
|
||||
Frame.GetController<ZoomListViewVC>().aZoomListView.Active.SetItemValue("", false);
|
||||
|
||||
}
|
||||
if (View.Id == "DBV_OfferOutRows_ListView")
|
||||
{
|
||||
Frame.GetController<ZoomListViewVC>().aZoomListView.Active.SetItemValue("", false);
|
||||
}
|
||||
if (View.Id == "DBV_OrderInRows_ListView")
|
||||
{
|
||||
Frame.GetController<ZoomListViewVC>().aZoomListView.Active.SetItemValue("", false);
|
||||
}
|
||||
base.OnDeactivated();
|
||||
}
|
||||
|
||||
private void aZoomListView_Execute(object sender, SimpleActionExecuteEventArgs e)
|
||||
{
|
||||
XPObjectSpace _ocur = (XPObjectSpace)View.ObjectSpace;
|
||||
XPObjectSpace _onew = (XPObjectSpace)_ocur.CreateNestedObjectSpace();
|
||||
CollectionSource _CollectionSource=new CollectionSource(_onew,typeof(BusinessDirectory));
|
||||
string _ListViewID = "BusinessDirectory_ListView_Zoom";
|
||||
_CollectionSource.BeginUpdateCriteria();
|
||||
_CollectionSource.Criteria.Add("Clear",CriteriaOperator.Parse("1=2"));
|
||||
_CollectionSource.EndUpdateCriteria();
|
||||
|
||||
CollectionSourceBase _CollectionSourceOriginal=null;
|
||||
if (View.Id.Contains("BusinessDirectory"))
|
||||
{
|
||||
_CollectionSourceOriginal = ((ListView)View).CollectionSource;
|
||||
if (_CollectionSourceOriginal.List!=null)
|
||||
{
|
||||
foreach (var item in _CollectionSourceOriginal.List)
|
||||
{
|
||||
_CollectionSource.Add(_onew.GetObject(item));
|
||||
}
|
||||
}
|
||||
}
|
||||
if (View.Id == "DBV_OfferOutRows_ListView") {
|
||||
if (View.SelectedObjects.Count > 0)
|
||||
{
|
||||
_ListViewID = "OfferOutRows_ListView_Zoom";
|
||||
_CollectionSource = new CollectionSource(_onew, typeof(OfferOutRows));
|
||||
_CollectionSource.BeginUpdateCriteria();
|
||||
_CollectionSource.Criteria.Add("Clear", CriteriaOperator.Parse("1=2"));
|
||||
_CollectionSource.EndUpdateCriteria();
|
||||
_CollectionSourceOriginal = ((ListView)View).CollectionSource;
|
||||
if (_CollectionSourceOriginal.List != null)
|
||||
{
|
||||
for (int i = 0; i < _CollectionSourceOriginal.List.Count; i++)
|
||||
{
|
||||
_CollectionSource.Add(_onew.GetObject(_CollectionSourceOriginal.List[i]));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if (View.Id == "DBV_OrderInRows_ListView")
|
||||
{
|
||||
if (View.SelectedObjects.Count > 0)
|
||||
{
|
||||
_ListViewID = "OrderInRows_ListView_Zoom";
|
||||
_CollectionSource = new CollectionSource(_onew, typeof(OrderInRows));
|
||||
_CollectionSource.BeginUpdateCriteria();
|
||||
_CollectionSource.Criteria.Add("Clear", CriteriaOperator.Parse("1=2"));
|
||||
_CollectionSource.EndUpdateCriteria();
|
||||
_CollectionSourceOriginal = ((ListView)View).CollectionSource;
|
||||
if (_CollectionSourceOriginal.List != null)
|
||||
{
|
||||
for (int i = 0; i < _CollectionSourceOriginal.List.Count; i++)
|
||||
{
|
||||
_CollectionSource.Add(_onew.GetObject(_CollectionSourceOriginal.List[i]));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ShowViewParameters _ShowViewParameters=new ShowViewParameters();
|
||||
ShowViewSource _ShowViewSource = new ShowViewSource(Frame, null);
|
||||
|
||||
_ShowViewParameters.CreatedView = Application.CreateListView(_ListViewID, _CollectionSource, false);
|
||||
_ShowViewParameters.NewWindowTarget = NewWindowTarget.Separate;
|
||||
_ShowViewParameters.TargetWindow = TargetWindow.NewModalWindow;
|
||||
|
||||
Application.ShowViewStrategy.ShowView(_ShowViewParameters, _ShowViewSource);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,126 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="aZoomListView.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
<metadata name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
</root>
|
||||
@@ -0,0 +1,20 @@
|
||||
Folder Description
|
||||
|
||||
The "DatabaseUpdate" project folder is intended for storing code that supplies
|
||||
initial data (default User objects, embedded Reports, etc) and handles a database
|
||||
update when the application version changes.
|
||||
|
||||
|
||||
Relevant Documentation
|
||||
|
||||
Supply Initial Data
|
||||
http://help.devexpress.com/#Xaf/CustomDocument2788
|
||||
|
||||
Distribute the Created Reports with the Application
|
||||
http://help.devexpress.com/#Xaf/CustomDocument2786
|
||||
|
||||
How to: Update the Database Structure after the Persistent Class or Property Was Renamed or Removed
|
||||
http://help.devexpress.com/#Xaf/CustomDocument3254
|
||||
|
||||
ModuleUpdater Class
|
||||
http://help.devexpress.com/#Xaf/clsDevExpressExpressAppUpdatingModuleUpdatertopic
|
||||
@@ -0,0 +1,48 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using DevExpress.Xpo;
|
||||
using DevExpress.ExpressApp;
|
||||
using DevExpress.Data.Filtering;
|
||||
using DevExpress.ExpressApp.Xpo;
|
||||
using DevExpress.Persistent.Base;
|
||||
using DevExpress.ExpressApp.Updating;
|
||||
using DevExpress.Persistent.BaseImpl;
|
||||
using DevExpress.ExpressApp.Security;
|
||||
//using DevExpress.ExpressApp.Reports;
|
||||
//using DevExpress.ExpressApp.PivotChart;
|
||||
//using DevExpress.ExpressApp.Security.Strategy;
|
||||
//using SISBusiness.Module.CSharp.Module.BusinessObjects;
|
||||
|
||||
namespace SISBusiness.Module.CSharp.DatabaseUpdate
|
||||
{
|
||||
// For more typical usage scenarios, be sure to check out http://documentation.devexpress.com/#Xaf/clsDevExpressExpressAppUpdatingModuleUpdatertopic
|
||||
public class Updater : ModuleUpdater
|
||||
{
|
||||
public Updater(IObjectSpace objectSpace, Version currentDBVersion) :
|
||||
base(objectSpace, currentDBVersion)
|
||||
{
|
||||
}
|
||||
public override void UpdateDatabaseAfterUpdateSchema()
|
||||
{
|
||||
base.UpdateDatabaseAfterUpdateSchema();
|
||||
//string name = "MyName";
|
||||
//DomainObject1 theObject = ObjectSpace.FindObject<DomainObject1>(CriteriaOperator.Parse("Name=?", name));
|
||||
//if(theObject == null) {
|
||||
// theObject = ObjectSpace.CreateObject<DomainObject1>();
|
||||
// theObject.Name = name;
|
||||
//}
|
||||
//NAVInvoiceReport _NAVInvoiceReport = ObjectSpace.FindObject<NAVInvoiceReport>(CriteriaOperator.Parse("1=1"));
|
||||
//if (_NAVInvoiceReport == null)
|
||||
// _NAVInvoiceReportObjectSpace.CreateObject<DomainObject1>();
|
||||
//{
|
||||
//}
|
||||
}
|
||||
public override void UpdateDatabaseBeforeUpdateSchema()
|
||||
{
|
||||
base.UpdateDatabaseBeforeUpdateSchema();
|
||||
//if(CurrentDBVersion < new Version("1.1.0.0") && CurrentDBVersion > new Version("0.0.0.0")) {
|
||||
// RenameColumn("DomainObject1Table", "OldColumnName", "NewColumnName");
|
||||
//}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using DevExpress.ExpressApp.Win.Editors;
|
||||
using DevExpress.ExpressApp.Model;
|
||||
using DevExpress.ExpressApp.Editors;
|
||||
using System.Windows.Forms;
|
||||
using DevExpress.XtraEditors;
|
||||
using DevExpress.XtraEditors.Repository;
|
||||
|
||||
namespace MM.Module.Win.Editors
|
||||
{
|
||||
[PropertyEditor(typeof(string), "FolderBrowseEditor", false)]
|
||||
public class FolderBrowseEditor : DXPropertyEditor
|
||||
{
|
||||
public FolderBrowseEditor(Type objectType, IModelMemberViewItem model)
|
||||
: base(objectType, model) { }
|
||||
private void buttonEdit_ButtonClick(object sender, DevExpress.XtraEditors.Controls.ButtonPressedEventArgs e)
|
||||
{
|
||||
using (FolderBrowserDialog dialog = new FolderBrowserDialog())
|
||||
{
|
||||
dialog.Description = "Select folder...";
|
||||
if (dialog.ShowDialog() != DialogResult.Cancel)
|
||||
{
|
||||
((ButtonEdit)sender).Text = dialog.SelectedPath;
|
||||
}
|
||||
}
|
||||
}
|
||||
protected override object CreateControlCore()
|
||||
{
|
||||
return new ButtonEdit();
|
||||
}
|
||||
protected override RepositoryItem CreateRepositoryItem()
|
||||
{
|
||||
return new RepositoryItemButtonEdit();
|
||||
}
|
||||
protected override void SetupRepositoryItem(RepositoryItem item)
|
||||
{
|
||||
base.SetupRepositoryItem(item);
|
||||
((RepositoryItemButtonEdit)item).ButtonClick += buttonEdit_ButtonClick;
|
||||
}
|
||||
protected override void SetRepositoryItemReadOnly(RepositoryItem item, bool readOnly)
|
||||
{
|
||||
base.SetRepositoryItemReadOnly(item, readOnly);
|
||||
((RepositoryItemButtonEdit)item).Buttons[0].Enabled = !readOnly;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Application />
|
||||
@@ -0,0 +1,70 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Application>
|
||||
<ActionDesign>
|
||||
<Actions>
|
||||
<Action Id="aOpenWindowsExplorer" Caption="Windows Intéző megnyitása" />
|
||||
<Action Id="aCreateNAVInvoiceReportXML" Caption="Lekérdezés futtatása" ConfirmationMessage="Niztosan lefuttatja a lekérdezést ?" />
|
||||
<Action Id="aRecreateCustomersOrderDocuments" Caption="Beszállítói dokumentum paraméter generálása" />
|
||||
<Action Id="aZoomListView" Caption="Zoom" />
|
||||
</Actions>
|
||||
</ActionDesign>
|
||||
<BOModel>
|
||||
<Class Name="SISBusiness.Module.NAVInvoiceReport" Caption="Adóhatósági ellenőrzési adatszolgáltatás">
|
||||
<OwnMembers>
|
||||
<Member Name="DocumentNumberBegin" Caption="Számlatömb előtag" />
|
||||
<Member Name="DocumentNumberFrom" Caption="Számlaszámtól" />
|
||||
<Member Name="DocumentNumberTo" Caption="Számlaszámig" />
|
||||
<Member Name="FromDate" Caption="Dátumtól" />
|
||||
<Member Name="OutputPath" Caption="Export fájl" />
|
||||
<Member Name="ToDate" Caption="Dátumig" />
|
||||
</OwnMembers>
|
||||
</Class>
|
||||
</BOModel>
|
||||
<NavigationItems>
|
||||
<Items>
|
||||
<Item Id="Reports">
|
||||
<Items>
|
||||
<Item Id="NAVInvoiceReport_ListView" Caption="Adóhatósági ellenőrzési adatszolgáltatás" />
|
||||
</Items>
|
||||
</Item>
|
||||
</Items>
|
||||
</NavigationItems>
|
||||
<Views>
|
||||
<DetailView Id="CustomersOrder_DetailView">
|
||||
<Layout>
|
||||
<LayoutGroup Id="Main">
|
||||
<LayoutGroup Id="SimpleEditors">
|
||||
<LayoutGroup Id="Organization_col1">
|
||||
<LayoutGroup Id="Autoec2ab4ee-a1ef-4bba-8050-c3286bbf24ed" Caption="Autoec2ab4ee-a1ef-4bba-8050-c3286bbf24ed(4)" />
|
||||
<LayoutGroup Id="Auto7dbdec5f-352a-46f3-a1a4-88ea0e89b003" Caption="Auto7dbdec5f-352a-46f3-a1a4-88ea0e89b003(12)" />
|
||||
</LayoutGroup>
|
||||
</LayoutGroup>
|
||||
</LayoutGroup>
|
||||
</Layout>
|
||||
</DetailView>
|
||||
<DetailView Id="NAVInvoiceReport_DetailView">
|
||||
<Items>
|
||||
<ActionContainerViewItem Id="@NAVReport" Caption="@NAVReport(13)" />
|
||||
<StaticText Id="@NAVStaticText" Text="<b>MIRE SZOLGÁL EZ A FUNKCIÓ</b>

2016.01.01-től kizárólag olyan számlázó programot szabad használni, ami tartalmazza ezt a funkciót.

Ezt az ablakot Önnek csak akkor kell használnia, ha a NAV erre külön felszólítja!
Ez a funkció a programmal kiállított számlák adatait menti ki a jogszabály által előírt XML formátumba.
A fájl kizárólag csak a számlák adatait tárolja, semmilyen más információt nem tartalmaz!
" />
|
||||
</Items>
|
||||
<Layout>
|
||||
<LayoutGroup Id="Main">
|
||||
<LayoutGroup Id="SimpleEditors">
|
||||
<LayoutGroup Id="Autod7c6db4a-fdf6-428e-9543-d10af064795f" Caption="Autod7c6db4a-fdf6-428e-9543-d10af064795f(3)" />
|
||||
<LayoutGroup Id="NAVInvoiceReport_col1">
|
||||
<LayoutGroup Id="Auto4154fa62-fe15-45a0-9548-091448de0976" Caption="Auto4154fa62-fe15-45a0-9548-091448de0976(4)">
|
||||
<LayoutGroup Id="Autoe1c310b4-784e-4a51-b569-012abe689a08" Caption="Autoe1c310b4-784e-4a51-b569-012abe689a08(5)">
|
||||
<LayoutGroup Id="Item2" Caption="Szűrőfeltételek">
|
||||
<LayoutGroup Id="Auto7fdaee2c-bc46-4ac2-84cd-eb6c4f1452cf" Caption="" />
|
||||
<LayoutGroup Id="Auto0ba4a5d7-10ee-4d9b-b4d2-bee53ca8df81" Caption="" />
|
||||
</LayoutGroup>
|
||||
</LayoutGroup>
|
||||
</LayoutGroup>
|
||||
</LayoutGroup>
|
||||
</LayoutGroup>
|
||||
<LayoutGroup Id="SizeableEditors" Caption="Export fájl" />
|
||||
</LayoutGroup>
|
||||
</Layout>
|
||||
</DetailView>
|
||||
</Views>
|
||||
</Application>
|
||||
@@ -0,0 +1,301 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Application>
|
||||
<ActionDesign>
|
||||
<Actions>
|
||||
<Action Id="aOpenWindowsExplorer" ImageName="console" Index="0" />
|
||||
<Action Id="aCreateNAVInvoiceReportXML" ImageName="Action_Export_ToXML" />
|
||||
<Action Id="aCustomer_SyncBusinessDirectory" ImageName="server_document" />
|
||||
<Action Id="aZoomListView" ImageName="zoom_in" />
|
||||
</Actions>
|
||||
<ActionToContainerMapping>
|
||||
<ActionContainer Id="@NAVReport" IsNewNode="True">
|
||||
<ActionLink ActionId="aCreateNAVInvoiceReportXML" IsNewNode="True" />
|
||||
</ActionContainer>
|
||||
</ActionToContainerMapping>
|
||||
</ActionDesign>
|
||||
<BOModel>
|
||||
<Class Name="SISBusiness.Module.Customers">
|
||||
<OwnMembers>
|
||||
<Member Name="DocumentPath" PropertyEditorType="MM.Module.Win.Editors.FolderBrowseEditor" />
|
||||
</OwnMembers>
|
||||
</Class>
|
||||
<Class Name="SISBusiness.Module.NAVInvoiceReport" ImageName="BO_Customer" />
|
||||
<Class Name="SISBusiness.Module.OfferOutHeader">
|
||||
<OwnMembers>
|
||||
<Member Name="DocumentPath" PropertyEditorType="MM.Module.Win.Editors.FolderBrowseEditor" />
|
||||
</OwnMembers>
|
||||
</Class>
|
||||
<Class Name="SISBusiness.Module.ProductsGroups">
|
||||
<OwnMembers>
|
||||
<Member Name="DocumentPath" PropertyEditorType="MM.Module.Win.Editors.FolderBrowseEditor" />
|
||||
</OwnMembers>
|
||||
</Class>
|
||||
</BOModel>
|
||||
<NavigationItems GenerateRelatedViewVariantsGroup="True">
|
||||
<Items>
|
||||
<Item Id="Reports">
|
||||
<Items>
|
||||
<Item Id="NAVInvoiceReport_ListView" ImageName="BO_Customer" ViewId="NAVInvoiceReport_DetailView" />
|
||||
</Items>
|
||||
</Item>
|
||||
</Items>
|
||||
</NavigationItems>
|
||||
<Options EnableHtmlFormatting="True" />
|
||||
<SchemaModules>
|
||||
<SchemaModule Name="CloneObjectModule" Version="15.2.5.0" IsNewNode="True" />
|
||||
<SchemaModule Name="SchedulerModuleBase" Version="15.2.5.0" IsNewNode="True" />
|
||||
<SchemaModule Name="SchedulerWindowsFormsModule" Version="15.2.5.0" IsNewNode="True" />
|
||||
<SchemaModule Name="SystemModule" Version="15.2.5.0" IsNewNode="True" />
|
||||
<SchemaModule Name="SystemWindowsFormsModule" Version="15.2.5.0" IsNewNode="True" />
|
||||
</SchemaModules>
|
||||
<Views>
|
||||
<ListView Id="BusinessDirectory_ListView_Zoom" ClassName="SISBusiness.Module.BusinessDirectory" IsNewNode="True">
|
||||
<Columns IsNewNode="True">
|
||||
<ColumnInfo Id="DashBoard_Database" PropertyName="DashBoard_Database" Width="122" Index="-1" IsNewNode="True" />
|
||||
<ColumnInfo Id="DashBoard_Password" PropertyName="DashBoard_Password" Width="122" Index="-1" IsNewNode="True" />
|
||||
<ColumnInfo Id="DashBoard_Server" PropertyName="DashBoard_Server" Width="108" Index="-1" IsNewNode="True" />
|
||||
<ColumnInfo Id="DashBoard_UserName" PropertyName="DashBoard_UserName" Width="125" Index="-1" IsNewNode="True" />
|
||||
<ColumnInfo Id="Email_Copy" PropertyName="Email_Copy" Width="70" Index="-1" IsNewNode="True" />
|
||||
<ColumnInfo Id="EMail_Sender" PropertyName="EMail_Sender" Width="82" Index="-1" IsNewNode="True" />
|
||||
<ColumnInfo Id="IsDashBoard" PropertyName="IsDashBoard" Width="88" Index="-1" IsNewNode="True" />
|
||||
<ColumnInfo Id="SQLType" PropertyName="SQLType" Width="114" Index="-1" IsNewNode="True" />
|
||||
<ColumnInfo Id="TaskDescription" PropertyName="TaskDescription" Index="-1" View="" Width="70" InLineEditAutoCommit="True" InLineEdit="True" IsNewNode="True" />
|
||||
<ColumnInfo Id="ShortName" PropertyName="ShortName" Index="0" View="" Width="93" SortIndex="0" SortOrder="Ascending" InLineEditAutoCommit="True" InLineEdit="True" IsNewNode="True" />
|
||||
<ColumnInfo Id="FileData" PropertyName="FileData" Width="62" Index="2" IsNewNode="True" />
|
||||
<ColumnInfo Id="FileCreated" PropertyName="FileCreated" Width="91" Index="3" IsNewNode="True" />
|
||||
<ColumnInfo Id="FileModified" PropertyName="FileModified" Width="89" Index="4" IsNewNode="True" />
|
||||
<ColumnInfo Id="Completed" PropertyName="Completed" Index="5" View="" Width="49" InLineEdit="True" InLineEditAutoCommit="True" IsNewNode="True" />
|
||||
</Columns>
|
||||
</ListView>
|
||||
<ListView Id="Customers_Customers_BusinessDirectory_ListView">
|
||||
<Columns>
|
||||
<ColumnInfo Id="BusinessDirectory_Parent" Index="-1" />
|
||||
<ColumnInfo Id="DashBoard_Database" Index="-1" />
|
||||
<ColumnInfo Id="DashBoard_Password" Index="-1" />
|
||||
<ColumnInfo Id="DashBoard_Server" Index="-1" />
|
||||
<ColumnInfo Id="DashBoard_UserName" Index="-1" />
|
||||
<ColumnInfo Id="EMail_Sender" Index="-1" />
|
||||
<ColumnInfo Id="IsDashBoard" Index="-1" />
|
||||
<ColumnInfo Id="Parent" Index="-1" />
|
||||
<ColumnInfo Id="SQLType" Index="-1" />
|
||||
<ColumnInfo Id="ShortName" Width="93" />
|
||||
<ColumnInfo Id="FileData" Index="1" Width="62" />
|
||||
<ColumnInfo Id="FileCreated" Index="2" Width="91" />
|
||||
<ColumnInfo Id="FileModified" Index="3" Width="89" />
|
||||
<ColumnInfo Id="Completed" Index="4" Width="49" />
|
||||
</Columns>
|
||||
</ListView>
|
||||
<DetailView Id="CustomersOrder_DetailView">
|
||||
<Layout>
|
||||
<LayoutGroup Id="Main">
|
||||
<LayoutGroup Id="SimpleEditors" RelativeSize="32.733812949640289">
|
||||
<LayoutGroup Id="Organization_col1">
|
||||
<LayoutGroup Id="Autoec2ab4ee-a1ef-4bba-8050-c3286bbf24ed" RelativeSize="42.43353783231084">
|
||||
<LayoutItem Id="CustomerNumber" RelativeSize="17.582417582417584" />
|
||||
<LayoutItem Id="Name" RelativeSize="13.186813186813186" />
|
||||
<LayoutItem Id="FullName" RelativeSize="13.186813186813186" />
|
||||
<LayoutItem Id="Profile" RelativeSize="13.186813186813186" />
|
||||
<LayoutItem Id="Address1" RelativeSize="13.186813186813186" />
|
||||
<LayoutItem Id="Address2" RelativeSize="13.186813186813186" />
|
||||
<LayoutItem Id="Description" RelativeSize="16.483516483516482" />
|
||||
</LayoutGroup>
|
||||
<LayoutGroup Id="Auto7dbdec5f-352a-46f3-a1a4-88ea0e89b003" RelativeSize="57.56646216768916">
|
||||
<LayoutItem Id="VATNumber" RelativeSize="17.582417582417584" />
|
||||
<LayoutItem Id="VATNumberEU" RelativeSize="13.186813186813186" />
|
||||
<LayoutItem Id="WebSite" RelativeSize="13.186813186813186" />
|
||||
<LayoutItem Id="Email" RelativeSize="13.186813186813186" />
|
||||
<LayoutItem Id="CustomersGLParameters" RelativeSize="13.186813186813186" />
|
||||
<LayoutItem Id="SupplierMarkInfo" RelativeSize="13.186813186813186" />
|
||||
<LayoutItem Id="PricingIn" RelativeSize="16.483516483516482" />
|
||||
</LayoutGroup>
|
||||
</LayoutGroup>
|
||||
</LayoutGroup>
|
||||
<TabbedGroup Id="Tabs" RelativeSize="67.266187050359719">
|
||||
<LayoutGroup Id="CustomersOrderDocuments" TextAlignMode="AlignWithChildren">
|
||||
<LayoutItem Id="CustomersOrderDocuments" TextAlignMode="AutoSize" />
|
||||
</LayoutGroup>
|
||||
<LayoutGroup Id="PhoneNumbers" TextAlignMode="AlignWithChildren">
|
||||
<LayoutItem Id="PhoneNumbers" TextAlignMode="AutoSize" />
|
||||
</LayoutGroup>
|
||||
<LayoutGroup Id="CustomerBankAccounts" TextAlignMode="AlignWithChildren">
|
||||
<LayoutItem Id="CustomerBankAccounts" TextAlignMode="AutoSize" />
|
||||
</LayoutGroup>
|
||||
<LayoutGroup Id="Contacts" TextAlignMode="AlignWithChildren">
|
||||
<LayoutItem Id="Contacts" TextAlignMode="AutoSize" />
|
||||
</LayoutGroup>
|
||||
<LayoutGroup Id="CustomersFileAttachment" TextAlignMode="UseParentOptions">
|
||||
<LayoutItem Id="DocumentPath" ViewItem="DocumentPath" Index="0" RelativeSize="15.105740181268882" CaptionLocation="Top" IsNewNode="True" />
|
||||
<LayoutItem Id="CustomersFileAttachment" TextAlignMode="AutoSize" Index="1" RelativeSize="84.894259818731115" ShowCaption="True" CaptionLocation="Top" />
|
||||
</LayoutGroup>
|
||||
<LayoutGroup Id="Customers_BusinessDirectory" TextAlignMode="AlignWithChildren" Index="5" RelativeSize="100">
|
||||
<LayoutItem Id="Customers_BusinessDirectory" TextAlignMode="AutoSize" RelativeSize="100" />
|
||||
</LayoutGroup>
|
||||
<LayoutGroup Id="OfferOutRows" TextAlignMode="AlignWithChildren" Index="6" RelativeSize="100" Removed="True">
|
||||
<LayoutItem Id="OfferOutRows" TextAlignMode="AutoSize" RelativeSize="100" />
|
||||
</LayoutGroup>
|
||||
<LayoutGroup Id="CustomersCCustomers" Removed="True" />
|
||||
</TabbedGroup>
|
||||
</LayoutGroup>
|
||||
</Layout>
|
||||
</DetailView>
|
||||
<ListView Id="DBV_Customers_ListView" DataAccessMode="Client">
|
||||
<Columns>
|
||||
<ColumnInfo Id="DocumentPath" PropertyName="DocumentPath" Index="5" InLineEdit="True" InLineEditAutoCommit="True" PropertyEditorType="MM.Module.Win.Editors.FolderBrowseEditor" IsNewNode="True" />
|
||||
</Columns>
|
||||
</ListView>
|
||||
<ListView Id="DBV_CustomersOrder_ListView" DataAccessMode="Client">
|
||||
<Columns>
|
||||
<ColumnInfo Id="DocumentPath" PropertyName="DocumentPath" Index="6" InLineEdit="True" InLineEditAutoCommit="True" PropertyEditorType="MM.Module.Win.Editors.FolderBrowseEditor" IsNewNode="True" />
|
||||
</Columns>
|
||||
</ListView>
|
||||
<DetailView Id="NAVInvoiceReport_DetailView">
|
||||
<Items>
|
||||
<ActionContainerViewItem Id="@NAVReport" ActionContainer="@NAVReport" IsNewNode="True" />
|
||||
<StaticText Id="@NAVStaticText" IsNewNode="True" />
|
||||
<PropertyEditor Id="OutputPath" PropertyEditorType="MM.Module.Win.Editors.FolderBrowseEditor" />
|
||||
</Items>
|
||||
<Layout>
|
||||
<LayoutGroup Id="Main" RelativeSize="100" Direction="Vertical">
|
||||
<LayoutGroup Id="SimpleEditors" ShowCaption="False" Index="0" RelativeSize="100" IsNewNode="True" Removed="True">
|
||||
<LayoutGroup Id="Autod7c6db4a-fdf6-428e-9543-d10af064795f" ShowCaption="False" Direction="Horizontal" Index="0" RelativeSize="4.4524669073405532" TextAlignMode="AlignWithChildren" IsNewNode="True">
|
||||
<LayoutItem Id="@NAVStaticText" ViewItem="@NAVStaticText" SizeConstraintsType="Default" Index="0" RelativeSize="86.99186991869918" IsNewNode="True" />
|
||||
<LayoutItem Id="@NAVReport" ViewItem="@NAVReport" SizeConstraintsType="Default" Index="1" RelativeSize="13.008130081300813" IsNewNode="True" />
|
||||
</LayoutGroup>
|
||||
<LayoutGroup Id="NAVInvoiceReport_col1" ShowCaption="False" Direction="Vertical" Index="1" RelativeSize="95.547533092659449" IsNewNode="True">
|
||||
<LayoutGroup Id="Auto4154fa62-fe15-45a0-9548-091448de0976" ShowCaption="False" Direction="Vertical" Index="0" RelativeSize="15.743073047858943" IsNewNode="True">
|
||||
<LayoutGroup Id="Autoe1c310b4-784e-4a51-b569-012abe689a08" ShowCaption="False" Index="0" RelativeSize="100" IsNewNode="True">
|
||||
<LayoutGroup Id="Item2" ShowCaption="True" CaptionLocation="Top" Index="0" RelativeSize="100" Direction="Horizontal" IsNewNode="True">
|
||||
<LayoutGroup Id="Auto7fdaee2c-bc46-4ac2-84cd-eb6c4f1452cf" ShowCaption="False" Index="0" RelativeSize="50" IsNewNode="True">
|
||||
<LayoutItem Id="FromDate" ViewItem="FromDate" SizeConstraintsType="Default" Index="0" RelativeSize="36.363636363636367" IsNewNode="True" />
|
||||
<LayoutItem Id="DocumentNumberFrom" ViewItem="DocumentNumberFrom" SizeConstraintsType="Default" Index="1" RelativeSize="27.272727272727273" IsNewNode="True" />
|
||||
<LayoutItem Id="DocumentNumberBegin" ViewItem="DocumentNumberBegin" SizeConstraintsType="Default" Index="2" RelativeSize="36.363636363636367" IsNewNode="True" />
|
||||
</LayoutGroup>
|
||||
<LayoutGroup Id="Auto0ba4a5d7-10ee-4d9b-b4d2-bee53ca8df81" ShowCaption="False" Index="1" RelativeSize="50" IsNewNode="True">
|
||||
<LayoutItem Id="ToDate" ViewItem="ToDate" SizeConstraintsType="Default" Index="0" RelativeSize="36.363636363636367" IsNewNode="True" />
|
||||
<LayoutItem Id="DocumentNumberTo" ViewItem="DocumentNumberTo" SizeConstraintsType="Default" Index="1" RelativeSize="63.636363636363633" IsNewNode="True" />
|
||||
</LayoutGroup>
|
||||
</LayoutGroup>
|
||||
</LayoutGroup>
|
||||
</LayoutGroup>
|
||||
<LayoutItem Id="OutputPath" ViewItem="OutputPath" SizeConstraintsType="Default" Index="1" RelativeSize="84.256926952141058" CaptionLocation="Top" IsNewNode="True" />
|
||||
</LayoutGroup>
|
||||
</LayoutGroup>
|
||||
<LayoutGroup Id="SizeableEditors" RelativeSize="86.762936221419977" Direction="Horizontal" Removed="True">
|
||||
<LayoutItem Id="OutputPath" Removed="True" />
|
||||
</LayoutGroup>
|
||||
</LayoutGroup>
|
||||
</Layout>
|
||||
</DetailView>
|
||||
<ListView Id="OfferOutRows_ListView_Zoom" ClassName="SISBusiness.Module.OfferOutRows" IsGroupPanelVisible="False" IsListViewProcess="False" AllowDelete="False" AllowLink="False" AllowNew="False" AutoExpandAllGroups="True" DataAccessMode="Client" IsNewNode="True">
|
||||
<Columns IsNewNode="True">
|
||||
<ColumnInfo Id="RowIndex" PropertyName="RowIndex" Width="72" Index="0" IsNewNode="True" />
|
||||
<ColumnInfo Id="ShortName" PropertyName="ShortName" Width="89" SortIndex="0" SortOrder="Ascending" Index="1" IsNewNode="True" />
|
||||
<ColumnInfo Id="QTT" PropertyName="QTT" Index="2" View="" Width="40" HideValueIfZero="True" IsNewNode="True" />
|
||||
<ColumnInfo Id="Units" PropertyName="Units" Width="44" Index="3" IsNewNode="True" />
|
||||
<ColumnInfo Id="FinalPriceHUF" PropertyName="FinalPriceHUF" Width="91" Index="4" IsNewNode="True" />
|
||||
<ColumnInfo Id="FinalPriceDEV" PropertyName="FinalPriceDEV" Width="90" Index="5" IsNewNode="True" />
|
||||
<ColumnInfo Id="VAT" PropertyName="VAT" Width="39" Index="6" IsNewNode="True" />
|
||||
<ColumnInfo Id="SumPriceHUF" PropertyName="SumPriceHUF" Width="89" Index="7" IsNewNode="True" />
|
||||
<ColumnInfo Id="SumPriceDEV" PropertyName="SumPriceDEV" Width="88" Index="8" IsNewNode="True" />
|
||||
</Columns>
|
||||
</ListView>
|
||||
<ListView Id="OrderInRows_ListView_Zoom" ClassName="SISBusiness.Module.OrderInRows" AutoExpandAllGroups="True" Criteria="isnull(OrderInHeader.GCRecord)=True" AllowNew="False" AllowDelete="False" IsListViewProcess="False" DataAccessMode="Client" IsNewNode="True">
|
||||
<Columns IsNewNode="True">
|
||||
<ColumnInfo Id="APCSheetByProducts" PropertyName="APCSheetByProducts" Index="-1" View="" Width="128" IsNewNode="True" />
|
||||
<ColumnInfo Id="Description" PropertyName="Description" Index="-1" View="" Width="70" InLineEdit="True" IsNewNode="True" />
|
||||
<ColumnInfo Id="DescriptionPrivate" PropertyName="DescriptionPrivate" Index="-1" View="" Width="70" InLineEdit="True" IsNewNode="True" />
|
||||
<ColumnInfo Id="DiscountPercent" PropertyName="DiscountPercent" Width="101" Index="-1" IsNewNode="True" />
|
||||
<ColumnInfo Id="DiscountPriceDEV" PropertyName="DiscountPriceDEV" Index="-1" View="" Width="109" HideValueIfZero="True" IsNewNode="True" />
|
||||
<ColumnInfo Id="DiscountPriceHUF" PropertyName="DiscountPriceHUF" Index="-1" View="" Width="110" HideValueIfZero="True" IsNewNode="True" />
|
||||
<ColumnInfo Id="DisplayName" PropertyName="DisplayName" Width="400" Index="-1" IsNewNode="True" />
|
||||
<ColumnInfo Id="FinalPriceDEV" PropertyName="FinalPriceDEV" Index="-1" View="" Width="90" HideValueIfZero="True" IsNewNode="True" />
|
||||
<ColumnInfo Id="FinalPriceHUF" PropertyName="FinalPriceHUF" Index="-1" View="" Width="91" HideValueIfZero="True" IsNewNode="True" />
|
||||
<ColumnInfo Id="ListPriceOriginalHUF" PropertyName="ListPriceOriginalHUF" Index="-1" View="" Width="124" HideValueIfZero="True" IsNewNode="True" />
|
||||
<ColumnInfo Id="OrderInHeader.Customers" PropertyName="OrderInHeader.Customers" Index="-1" Width="71" IsNewNode="True" />
|
||||
<ColumnInfo Id="OrderInHeader.CustomersFrom" PropertyName="OrderInHeader.CustomersFrom" Index="-1" Width="98" IsNewNode="True" />
|
||||
<ColumnInfo Id="OrderInHeader.DateExecution" PropertyName="OrderInHeader.DateExecution" Index="-1" Width="93" IsNewNode="True" />
|
||||
<ColumnInfo Id="OrderInHeader.DocumentNumber" PropertyName="OrderInHeader.DocumentNumber" Index="-1" Width="180" IsNewNode="True" />
|
||||
<ColumnInfo Id="QTT_Storaged_Will" PropertyName="QTT_Storaged_Will" Index="-1" View="" Width="125" HideValueIfZero="True" SortIndex="-1" SortOrder="None" IsNewNode="True" />
|
||||
<ColumnInfo Id="QualityOption" PropertyName="QualityOption" Index="-1" View="" Width="89" IsNewNode="True" />
|
||||
<ColumnInfo Id="RowGroup1" PropertyName="RowGroup1" Index="-1" View="" Width="82" IsNewNode="True" />
|
||||
<ColumnInfo Id="RowGroup2" PropertyName="RowGroup2" Index="-1" View="" Width="82" IsNewNode="True" />
|
||||
<ColumnInfo Id="SumPriceBruttoDEV" PropertyName="SumPriceBruttoDEV" Index="-1" View="" Width="121" HideValueIfZero="True" IsNewNode="True" />
|
||||
<ColumnInfo Id="SumPriceBruttoHUF" PropertyName="SumPriceBruttoHUF" Index="-1" View="" Width="122" HideValueIfZero="True" IsNewNode="True" />
|
||||
<ColumnInfo Id="SumPriceVATDEV" PropertyName="SumPriceVATDEV" Index="-1" View="" Width="107" HideValueIfZero="True" IsNewNode="True" />
|
||||
<ColumnInfo Id="SumPriceVATHUF" PropertyName="SumPriceVATHUF" Index="-1" View="" Width="108" HideValueIfZero="True" IsNewNode="True" />
|
||||
<ColumnInfo Id="RowIndex" PropertyName="RowIndex" Index="0" View="" Width="72" SortIndex="0" SortOrder="Ascending" IsNewNode="True" />
|
||||
<ColumnInfo Id="Products" PropertyName="Products" Index="1" View="" Width="62" IsNewNode="True" />
|
||||
<ColumnInfo Id="QTT" PropertyName="QTT" Index="2" View="" Width="40" HideValueIfZero="True" IsNewNode="True" />
|
||||
<ColumnInfo Id="QTT_To" PropertyName="QTT_To" Index="3" View="" Width="58" HideValueIfZero="True" IsNewNode="True" />
|
||||
<ColumnInfo Id="QTT_Storaged" PropertyName="QTT_Storaged" Index="4" View="" Width="90" HideValueIfZero="True" IsNewNode="True" />
|
||||
<ColumnInfo Id="QTT_DeliveryNoted" PropertyName="QTT_DeliveryNoted" Index="5" View="" Width="114" HideValueIfZero="True" IsNewNode="True" />
|
||||
<ColumnInfo Id="QTT_Invoiced" PropertyName="QTT_Invoiced" Index="6" View="" Width="87" HideValueIfZero="True" IsNewNode="True" />
|
||||
<ColumnInfo Id="ListPriceHUF" PropertyName="ListPriceHUF" Index="7" View="" Width="85" HideValueIfZero="True" IsNewNode="True" />
|
||||
<ColumnInfo Id="ListPriceDEV" PropertyName="ListPriceDEV" Index="8" View="" Width="84" HideValueIfZero="True" IsNewNode="True" />
|
||||
<ColumnInfo Id="VAT" PropertyName="VAT" Index="9" View="" Width="39" IsNewNode="True" />
|
||||
<ColumnInfo Id="SumPriceNettoHUF" PropertyName="SumPriceNettoHUF" Index="10" View="" Width="119" HideValueIfZero="True" IsNewNode="True" />
|
||||
<ColumnInfo Id="SumPriceNettoDEV" PropertyName="SumPriceNettoDEV" Index="11" View="" Width="118" HideValueIfZero="True" IsNewNode="True" />
|
||||
</Columns>
|
||||
</ListView>
|
||||
<ListView Id="Products_Products_BusinessDirectory_ListView">
|
||||
<Columns>
|
||||
<ColumnInfo Id="BusinessDirectory_Parent" Index="-1" />
|
||||
<ColumnInfo Id="DashBoard_Database" Index="-1" />
|
||||
<ColumnInfo Id="DashBoard_Password" Index="-1" />
|
||||
<ColumnInfo Id="DashBoard_Server" Index="-1" />
|
||||
<ColumnInfo Id="DashBoard_UserName" Index="-1" />
|
||||
<ColumnInfo Id="EMail_Sender" Index="-1" />
|
||||
<ColumnInfo Id="IsDashBoard" Index="-1" />
|
||||
<ColumnInfo Id="Parent" Index="-1" />
|
||||
<ColumnInfo Id="SQLType" Index="-1" />
|
||||
<ColumnInfo Id="ShortName" Width="117" />
|
||||
<ColumnInfo Id="FileData" Index="1" />
|
||||
<ColumnInfo Id="FileCreated" Index="2" />
|
||||
<ColumnInfo Id="FileModified" Index="3" />
|
||||
<ColumnInfo Id="Completed" Index="4" />
|
||||
</Columns>
|
||||
</ListView>
|
||||
<ListView Id="ProductsGroups_ListView">
|
||||
<Columns>
|
||||
<ColumnInfo Id="Name" Width="221" />
|
||||
<ColumnInfo Id="DocumentPath" Index="4" InLineEdit="True" InLineEditAutoCommit="True" />
|
||||
</Columns>
|
||||
</ListView>
|
||||
<ListView Id="Services_Services_BusinessDirectory_ListView">
|
||||
<Columns>
|
||||
<ColumnInfo Id="BusinessDirectory_Parent" Index="-1" />
|
||||
<ColumnInfo Id="DashBoard_Database" Index="-1" Width="122" />
|
||||
<ColumnInfo Id="DashBoard_Password" Index="-1" Width="122" />
|
||||
<ColumnInfo Id="DashBoard_Server" Index="-1" Width="108" />
|
||||
<ColumnInfo Id="DashBoard_UserName" Index="-1" Width="125" />
|
||||
<ColumnInfo Id="EMail_Sender" Index="-1" Width="82" />
|
||||
<ColumnInfo Id="IsDashBoard" Index="-1" Width="88" />
|
||||
<ColumnInfo Id="Parent" Index="-1" Width="45" />
|
||||
<ColumnInfo Id="SQLType" Index="-1" Width="114" />
|
||||
<ColumnInfo Id="ShortName" Width="93" />
|
||||
<ColumnInfo Id="FileData" Index="1" Width="62" />
|
||||
<ColumnInfo Id="FileCreated" Index="2" Width="91" />
|
||||
<ColumnInfo Id="FileModified" Index="3" Width="89" />
|
||||
<ColumnInfo Id="Completed" Index="4" Width="49" />
|
||||
</Columns>
|
||||
</ListView>
|
||||
<ListView Id="Technologies_Technologies_BusinessDirectory_ListView">
|
||||
<Columns>
|
||||
<ColumnInfo Id="BusinessDirectory_Parent" Width="82" Index="-1" />
|
||||
<ColumnInfo Id="DashBoard_Database" Width="122" Index="-1" />
|
||||
<ColumnInfo Id="DashBoard_Password" Width="122" Index="-1" />
|
||||
<ColumnInfo Id="DashBoard_Server" Width="108" Index="-1" />
|
||||
<ColumnInfo Id="DashBoard_UserName" Width="125" Index="-1" />
|
||||
<ColumnInfo Id="EMail_Sender" Width="82" Index="-1" />
|
||||
<ColumnInfo Id="IsDashBoard" Width="88" Index="-1" />
|
||||
<ColumnInfo Id="Parent" Width="45" Index="-1" />
|
||||
<ColumnInfo Id="SQLType" Width="114" Index="-1" />
|
||||
<ColumnInfo Id="ShortName" Width="93" />
|
||||
<ColumnInfo Id="FileData" Width="62" Index="1" />
|
||||
<ColumnInfo Id="FileCreated" Width="91" Index="2" />
|
||||
<ColumnInfo Id="FileModified" Width="89" Index="3" />
|
||||
<ColumnInfo Id="Completed" Width="49" Index="4" />
|
||||
</Columns>
|
||||
</ListView>
|
||||
</Views>
|
||||
</Application>
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
namespace SISBusiness.Module.CSharp
|
||||
{
|
||||
partial class CSharpModule
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Component Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
//
|
||||
// CSharpModule
|
||||
//
|
||||
this.RequiredModuleTypes.Add(typeof(DevExpress.ExpressApp.CloneObject.CloneObjectModule));
|
||||
this.RequiredModuleTypes.Add(typeof(DevExpress.ExpressApp.Validation.ValidationModule));
|
||||
this.RequiredModuleTypes.Add(typeof(DevExpress.ExpressApp.Validation.Win.ValidationWindowsFormsModule));
|
||||
this.RequiredModuleTypes.Add(typeof(DevExpress.ExpressApp.ViewVariantsModule.ViewVariantsModule));
|
||||
this.RequiredModuleTypes.Add(typeof(SISBusiness.Module.SISBusinessModule));
|
||||
this.RequiredModuleTypes.Add(typeof(SISBusiness.Module.Win.SISBusinessWindowsFormsModule));
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
using System;
|
||||
using System.Text;
|
||||
using System.Linq;
|
||||
using DevExpress.ExpressApp;
|
||||
using System.ComponentModel;
|
||||
using DevExpress.ExpressApp.DC;
|
||||
using System.Collections.Generic;
|
||||
using DevExpress.Persistent.Base;
|
||||
using DevExpress.ExpressApp.Model;
|
||||
using DevExpress.ExpressApp.Actions;
|
||||
using DevExpress.ExpressApp.Editors;
|
||||
using DevExpress.ExpressApp.Updating;
|
||||
using DevExpress.ExpressApp.Model.Core;
|
||||
using DevExpress.ExpressApp.Model.DomainLogics;
|
||||
using DevExpress.ExpressApp.Model.NodeGenerators;
|
||||
|
||||
namespace SISBusiness.Module.CSharp
|
||||
{
|
||||
// For more typical usage scenarios, be sure to check out http://documentation.devexpress.com/#Xaf/clsDevExpressExpressAppModuleBasetopic.
|
||||
public sealed partial class CSharpModule : ModuleBase
|
||||
{
|
||||
public CSharpModule()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
public override IEnumerable<ModuleUpdater> GetModuleUpdaters(IObjectSpace objectSpace, Version versionFromDB)
|
||||
{
|
||||
ModuleUpdater updater = new DatabaseUpdate.Updater(objectSpace, versionFromDB);
|
||||
return new ModuleUpdater[] { updater };
|
||||
}
|
||||
public override void Setup(XafApplication application)
|
||||
{
|
||||
base.Setup(application);
|
||||
// Manage various aspects of the application UI and behavior at the module level.
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,120 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
||||
@@ -0,0 +1,32 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("SISBusiness.Module.CSharp")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("-")]
|
||||
[assembly: AssemblyProduct("SISBusiness.Module.CSharp")]
|
||||
[assembly: AssemblyCopyright("Copyright © - 2007")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Revision and Build Numbers
|
||||
// by using the '*' as shown below:
|
||||
[assembly: AssemblyVersion("15.2.5.1001")]
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
DevExpress.ExpressApp.ModuleBase, DevExpress.ExpressApp.v15.2, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||
DevExpress.ExpressApp.ViewController, DevExpress.ExpressApp.v15.2, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||
|
||||
DevExpress.ExpressApp.SystemModule.SystemModule, DevExpress.ExpressApp.v15.2, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||
@@ -0,0 +1,27 @@
|
||||
Project Description
|
||||
|
||||
The SISBusiness.Module.CSharp project implements a Module. The root project folder contains
|
||||
the Module.cs(vb) file with the class that inherits ModuleBase. This class can be
|
||||
designed with the Module Designer that allows you to view and customize Module
|
||||
components: referenced modules, Controllers and business classes. Additionally,
|
||||
the root folder contains Application Model difference files (XAFML files) that
|
||||
keep application settings specific for the current Module. Differences files
|
||||
can be designed with the Model Editor.
|
||||
|
||||
|
||||
Relevant Documentation
|
||||
|
||||
Application Solution Components
|
||||
http://help.devexpress.com/#Xaf/CustomDocument2569
|
||||
|
||||
ModuleBase Class
|
||||
http://help.devexpress.com/#Xaf/clsDevExpressExpressAppModuleBasetopic
|
||||
|
||||
Module Designer
|
||||
http://help.devexpress.com/#Xaf/CustomDocument2828
|
||||
|
||||
Application Model
|
||||
http://help.devexpress.com/#Xaf/CustomDocument2579
|
||||
|
||||
Model Editor
|
||||
http://help.devexpress.com/#Xaf/CustomDocument2582
|
||||
@@ -0,0 +1,296 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProductVersion>9.0.30729</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<ProjectGuid>{B9EF03FF-D05B-4FD4-A8E9-F90D819CB1DC}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>SISBusiness.Module</RootNamespace>
|
||||
<AssemblyName>SISBusiness.Module.CSharp</AssemblyName>
|
||||
<FileUpgradeFlags>
|
||||
</FileUpgradeFlags>
|
||||
<OldToolsVersion>3.5</OldToolsVersion>
|
||||
<UpgradeBackupLocation>
|
||||
</UpgradeBackupLocation>
|
||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||
<TargetFrameworkProfile />
|
||||
<PublishUrl>publish\</PublishUrl>
|
||||
<Install>true</Install>
|
||||
<InstallFrom>Disk</InstallFrom>
|
||||
<UpdateEnabled>false</UpdateEnabled>
|
||||
<UpdateMode>Foreground</UpdateMode>
|
||||
<UpdateInterval>7</UpdateInterval>
|
||||
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
|
||||
<UpdatePeriodically>false</UpdatePeriodically>
|
||||
<UpdateRequired>false</UpdateRequired>
|
||||
<MapFileExtensions>true</MapFileExtensions>
|
||||
<ApplicationRevision>0</ApplicationRevision>
|
||||
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
|
||||
<IsWebBootstrapper>false</IsWebBootstrapper>
|
||||
<UseApplicationTrust>false</UseApplicationTrust>
|
||||
<BootstrapperEnabled>true</BootstrapperEnabled>
|
||||
<SccProjectName>SAK</SccProjectName>
|
||||
<SccLocalPath>SAK</SccLocalPath>
|
||||
<SccAuxPath>SAK</SccAuxPath>
|
||||
<SccProvider>SAK</SccProvider>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>none</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="DevExpress.Charts.v15.2.Core, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.DataAccess.v15.2, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.DataAccess.v15.2.UI, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.ExpressApp.AuditTrail.v15.2, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.ExpressApp.Chart.v15.2, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.ExpressApp.CloneObject.v15.2, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.ExpressApp.ConditionalAppearance.v15.2, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.ExpressApp.Demos.v15.2, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.ExpressApp.HtmlPropertyEditor.Win.v15.2, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.ExpressApp.Kpi.v15.2, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.ExpressApp.Objects.v15.2, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.ExpressApp.Reports.v15.2, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.ExpressApp.Reports.Win.v15.2, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\..\..\..\Program Files (x86)\DevExpress 15.2\Components\Bin\Framework\DevExpress.ExpressApp.Reports.Win.v15.2.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.ExpressApp.Security.v15.2, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.ExpressApp.Validation.v15.2, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.ExpressApp.Validation.Win.v15.2, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
|
||||
<Reference Include="DevExpress.ExpressApp.ViewVariantsModule.v15.2, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.ExpressApp.Win.v15.2, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.ExpressApp.Xpo.v15.2">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<Private>False</Private>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.PivotGrid.v15.2.Core, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.Printing.v15.2.Core">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.Data.v15.2">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.ExpressApp.v15.2">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.Persistent.Base.v15.2">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.Persistent.BaseImpl.v15.2">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.Sparkline.v15.2.Core, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.Utils.v15.2, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.Utils.v15.2.UI, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.Xpo.v15.2">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.XtraEditors.v15.2, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.XtraPrinting.v15.2, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||
<Reference Include="DevExpress.XtraGrid.v15.2, Version=15.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||
<Reference Include="Newtonsoft.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Newtonsoft.Json.8.0.3\lib\net40\Newtonsoft.Json.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="System">
|
||||
<Name>System</Name>
|
||||
<Private>False</Private>
|
||||
</Reference>
|
||||
<Reference Include="System.Core">
|
||||
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
||||
<Private>False</Private>
|
||||
</Reference>
|
||||
<Reference Include="System.Data">
|
||||
<Name>System.Data</Name>
|
||||
<Private>False</Private>
|
||||
</Reference>
|
||||
<Reference Include="System.Drawing" />
|
||||
<Reference Include="System.Windows.Forms">
|
||||
<Name>System.Windows.Forms</Name>
|
||||
<Private>False</Private>
|
||||
</Reference>
|
||||
<Reference Include="System.Xml">
|
||||
<Name>System.XML</Name>
|
||||
<Private>False</Private>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="BusinessObjects\NAVInvoiceReport.cs" />
|
||||
<Compile Include="Controllers\AuditTrailVCC.cs">
|
||||
<SubType>Component</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Controllers\AuditTrailVCC.Designer.cs">
|
||||
<DependentUpon>AuditTrailVCC.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Controllers\CustomersOrderVC.cs">
|
||||
<SubType>Component</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Controllers\CustomersOrderVC.Designer.cs">
|
||||
<DependentUpon>CustomersOrderVC.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Controllers\NavigationItemVCC.cs">
|
||||
<SubType>Component</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Controllers\NavigationItemVCC.Designer.cs">
|
||||
<DependentUpon>NavigationItemVCC.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Controllers\NavInvoiceReportVC.cs">
|
||||
<SubType>Component</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Controllers\NavInvoiceReportVC.Designer.cs">
|
||||
<DependentUpon>NavInvoiceReportVC.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Controllers\ZoomListViewVC.cs">
|
||||
<SubType>Component</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Controllers\ZoomListViewVC.Designer.cs">
|
||||
<DependentUpon>ZoomListViewVC.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Editors\FolderBrowseEditor.cs" />
|
||||
<Compile Include="Module.cs">
|
||||
<SubType>Component</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Module.Designer.cs">
|
||||
<DependentUpon>Module.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="DatabaseUpdate\Updater.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Controllers\AuditTrailVCC.resx">
|
||||
<DependentUpon>AuditTrailVCC.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Controllers\CustomersOrderVC.resx">
|
||||
<DependentUpon>CustomersOrderVC.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Controllers\NavInvoiceReportVC.resx">
|
||||
<DependentUpon>NavInvoiceReportVC.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Controllers\ZoomListViewVC.resx">
|
||||
<DependentUpon>ZoomListViewVC.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Module.resx">
|
||||
<DependentUpon>Module.cs</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Properties\licenses.licx" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Model.DesignedDiffs.xafml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="BusinessObjects\ReadMe.txt" />
|
||||
<None Include="Controllers\ReadMe.txt" />
|
||||
<None Include="DatabaseUpdate\ReadMe.txt" />
|
||||
<EmbeddedResource Include="Model.DesignedDiffs.Localization.hu.xafml">
|
||||
<DependentUpon>Model.DesignedDiffs.xafml</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Model.DesignedDiffs.Localization.en.xafml">
|
||||
<DependentUpon>Model.DesignedDiffs.xafml</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<None Include="packages.config" />
|
||||
<None Include="ReadMe.txt" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
|
||||
<Visible>False</Visible>
|
||||
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
|
||||
<Install>false</Install>
|
||||
</BootstrapperPackage>
|
||||
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
|
||||
<Visible>False</Visible>
|
||||
<ProductName>.NET Framework 3.5 SP1</ProductName>
|
||||
<Install>true</Install>
|
||||
</BootstrapperPackage>
|
||||
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
|
||||
<Visible>False</Visible>
|
||||
<ProductName>Windows Installer 3.1</ProductName>
|
||||
<Install>true</Install>
|
||||
</BootstrapperPackage>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\SISBusiness.Module.Win\SISBusiness.Module.Win.vbproj">
|
||||
<Project>{98539dcf-bf11-4158-aec0-4b008a404a0e}</Project>
|
||||
<Name>SISBusiness.Module.Win</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\SISBusiness.Module\SISBusiness.Module.vbproj">
|
||||
<Project>{60bf693f-7dea-4cf6-85bd-ea96829d79dd}</Project>
|
||||
<Name>SISBusiness.Module</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="UnusableNodes.xml">
|
||||
<DependentUpon>Model.DesignedDiffs.xafml</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
||||
@@ -0,0 +1,10 @@
|
||||
""
|
||||
{
|
||||
"FILE_VERSION" = "9237"
|
||||
"ENLISTMENT_CHOICE" = "NEVER"
|
||||
"PROJECT_FILE_RELATIVE_PATH" = ""
|
||||
"NUMBER_OF_EXCLUDED_FILES" = "0"
|
||||
"ORIGINAL_PROJECT_FILE_PATH" = ""
|
||||
"NUMBER_OF_NESTED_PROJECTS" = "0"
|
||||
"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER"
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Application>
|
||||
<BOModel Id="BOModel">
|
||||
<Class Name="SISBusiness.Module.CustomersOrder">
|
||||
<OwnMembers Id="OwnMembers">
|
||||
<Member Name="DocumentPath" PropertyEditorType="MM.Module.Win.Editors.FolderBrowseEditor" />
|
||||
</OwnMembers>
|
||||
</Class>
|
||||
</BOModel>
|
||||
</Application>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
+431
@@ -0,0 +1,431 @@
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\Images\iGreenArrow.png
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\Images\iOK.png
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\Images\iQuestion.png
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\Images\iRedArrow.png
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\BusinessObjects\SIS\App_Data\InitialData.accdb
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\Excels\XLSImports.xlsx
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\SISBusiness.Module.CSharp.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\SISBusiness.Module.CSharp.pdb
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\hu\SISBusiness.Module.CSharp.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\en\SISBusiness.Module.CSharp.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Charts.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Data.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.DataAccess.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.DataAccess.v15.2.UI.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.AuditTrail.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Chart.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.CloneObject.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.ConditionalAppearance.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Demos.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.HtmlPropertyEditor.Win.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Kpi.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Objects.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Reports.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Reports.Win.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Security.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Validation.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Validation.Win.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.ViewVariantsModule.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Win.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Persistent.Base.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Persistent.BaseImpl.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.PivotGrid.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Printing.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Sparkline.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Utils.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Utils.v15.2.UI.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Xpo.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraEditors.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraGrid.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraPrinting.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\SISBusiness.Module.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\SISBusiness.Module.Win.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\Gnostice.PDFOne.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.PivotGrid.Win.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraPivotGrid.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Spreadsheet.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraSpreadsheet.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraRichEdit.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\exontrol.exg2antt.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\exontrol.exprint.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\FarPoint.Win.Spread.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraBars.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.RichEdit.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Dashboard.v15.2.Win.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Scheduler.Win.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraScheduler.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.TreeListEditors.Win.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraTreeList.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\MySql.Data.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\Npgsql.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Dashboard.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraCharts.v15.2.UI.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraCharts.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraReports.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraRichEdit.v15.2.Extensions.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraScheduler.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.FileAttachment.Win.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Office.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.PivotGrid.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraLayout.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\FarPoint.Win.Spread.Design.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.PivotChart.Win.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Chart.Win.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Notifications.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Notifications.Win.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Scheduler.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\Newtonsoft.Json.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.CodeParser.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\Microsoft.mshtml.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraReports.v15.2.Extensions.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraVerticalGrid.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraNavBar.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.BonusSkins.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.ReportsV2.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\Ionic.Zlib.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraCharts.v15.2.Wizard.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Pdf.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\FarPoint.Win.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\FarPoint.CalcEngine.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\FarPoint.Excel.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\FarPoint.Win.Chart.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\FarPoint.PluginCalendar.WinForms.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\FarPoint.PDF.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Pdf.v15.2.Drawing.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraMap.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraGauges.v15.2.Win.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraGauges.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraGauges.v15.2.Presets.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Map.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.TreeListEditors.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\Mono.Security.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.PivotChart.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraCharts.v15.2.Extensions.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\SISBusiness.Module.Win.pdb
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\SISBusiness.Module.pdb
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.DataAccess.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.DataAccess.v15.2.UI.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.AuditTrail.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Chart.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.CloneObject.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.ConditionalAppearance.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.HtmlPropertyEditor.Win.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Kpi.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Reports.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Reports.Win.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Security.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Validation.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Validation.Win.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.ViewVariantsModule.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Win.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.PivotGrid.v15.2.Core.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Printing.v15.2.Core.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Data.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Persistent.Base.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Persistent.BaseImpl.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Sparkline.v15.2.Core.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Utils.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Utils.v15.2.UI.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Xpo.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraEditors.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraPrinting.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraGrid.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\Gnostice.PDFOne.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.PivotGrid.Win.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraPivotGrid.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Spreadsheet.v15.2.Core.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraSpreadsheet.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraRichEdit.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\FarPoint.Win.Spread.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraBars.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.RichEdit.v15.2.Core.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Dashboard.v15.2.Win.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Scheduler.Win.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraScheduler.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.TreeListEditors.Win.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraTreeList.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\Npgsql.pdb
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\Npgsql.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Dashboard.v15.2.Core.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraCharts.v15.2.UI.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraCharts.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraReports.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraRichEdit.v15.2.Extensions.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraScheduler.v15.2.Core.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.FileAttachment.Win.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Office.v15.2.Core.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.PivotGrid.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraLayout.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\FarPoint.Win.Spread.Design.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.PivotChart.Win.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Chart.Win.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Notifications.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.Scheduler.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\Newtonsoft.Json.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraReports.v15.2.Extensions.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraVerticalGrid.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraNavBar.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.ReportsV2.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraCharts.v15.2.Wizard.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Pdf.v15.2.Core.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\FarPoint.Win.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\FarPoint.CalcEngine.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\FarPoint.Excel.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\FarPoint.Win.Chart.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\FarPoint.PluginCalendar.WinForms.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\FarPoint.PDF.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Pdf.v15.2.Drawing.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraMap.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraGauges.v15.2.Win.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraGauges.v15.2.Core.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.XtraGauges.v15.2.Presets.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.Map.v15.2.Core.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.TreeListEditors.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\DevExpress.ExpressApp.PivotChart.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\en\SISBusiness.Module.Win.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\hu\SISBusiness.Module.Win.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\hu\SISBusiness.Module.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.DataAccess.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.DataAccess.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.DataAccess.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.DataAccess.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.DataAccess.v15.2.UI.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.DataAccess.v15.2.UI.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.DataAccess.v15.2.UI.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.DataAccess.v15.2.UI.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.ExpressApp.AuditTrail.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.ExpressApp.AuditTrail.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.ExpressApp.AuditTrail.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.ExpressApp.Chart.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.ExpressApp.Chart.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.ExpressApp.Chart.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.ExpressApp.CloneObject.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.ExpressApp.CloneObject.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.ExpressApp.CloneObject.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.ExpressApp.CloneObject.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.ExpressApp.HtmlPropertyEditor.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.ExpressApp.HtmlPropertyEditor.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.ExpressApp.HtmlPropertyEditor.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.ExpressApp.HtmlPropertyEditor.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.ExpressApp.Kpi.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.ExpressApp.Kpi.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.ExpressApp.Kpi.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.ExpressApp.Objects.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.ExpressApp.Objects.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.ExpressApp.Objects.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.ExpressApp.Objects.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.ExpressApp.Reports.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.ExpressApp.Reports.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.ExpressApp.Reports.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.ExpressApp.Reports.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.ExpressApp.Reports.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.ExpressApp.Reports.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.ExpressApp.Reports.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.ExpressApp.Reports.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.ExpressApp.Security.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.ExpressApp.Security.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.ExpressApp.Security.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.ExpressApp.Security.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.ExpressApp.Validation.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.ExpressApp.Validation.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.ExpressApp.Validation.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.ExpressApp.Validation.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.ExpressApp.Validation.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.ExpressApp.Validation.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.ExpressApp.Validation.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.ExpressApp.Validation.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.ExpressApp.ViewVariantsModule.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.ExpressApp.ViewVariantsModule.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.ExpressApp.ViewVariantsModule.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.ExpressApp.ViewVariantsModule.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.ExpressApp.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.ExpressApp.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.ExpressApp.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.ExpressApp.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.PivotGrid.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.PivotGrid.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.PivotGrid.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.PivotGrid.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.Printing.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.Printing.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.Printing.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.Printing.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.Data.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.Data.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.Data.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.Data.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.ExpressApp.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.ExpressApp.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.ExpressApp.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.ExpressApp.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.Sparkline.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.Sparkline.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.Sparkline.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.Sparkline.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.Utils.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.Utils.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.Utils.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.Utils.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.Utils.v15.2.UI.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.Utils.v15.2.UI.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.Utils.v15.2.UI.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.Utils.v15.2.UI.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.Xpo.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.Xpo.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.Xpo.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.Xpo.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.XtraEditors.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.XtraEditors.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.XtraEditors.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.XtraEditors.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.XtraPrinting.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.XtraPrinting.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.XtraPrinting.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.XtraPrinting.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.XtraGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.XtraGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.XtraGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.XtraGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.XtraPivotGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.XtraPivotGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.XtraPivotGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.XtraPivotGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.Spreadsheet.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.Spreadsheet.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.Spreadsheet.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.Spreadsheet.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.XtraSpreadsheet.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.XtraSpreadsheet.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.XtraSpreadsheet.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.XtraSpreadsheet.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.XtraRichEdit.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.XtraRichEdit.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.XtraRichEdit.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.XtraRichEdit.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.XtraBars.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.XtraBars.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.XtraBars.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.XtraBars.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.RichEdit.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.RichEdit.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.RichEdit.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.RichEdit.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.Dashboard.v15.2.Win.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.Dashboard.v15.2.Win.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.Dashboard.v15.2.Win.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.Dashboard.v15.2.Win.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.ExpressApp.Scheduler.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.ExpressApp.Scheduler.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.ExpressApp.Scheduler.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.ExpressApp.Scheduler.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.XtraScheduler.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.XtraScheduler.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.XtraScheduler.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.XtraScheduler.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.XtraTreeList.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.XtraTreeList.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.XtraTreeList.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.XtraTreeList.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\Npgsql.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\Npgsql.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\fi\Npgsql.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\fr\Npgsql.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\Npgsql.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\zh-CN\Npgsql.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.Dashboard.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.Dashboard.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.Dashboard.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.Dashboard.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.XtraCharts.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.XtraCharts.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.XtraCharts.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.XtraCharts.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.XtraReports.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.XtraReports.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.XtraReports.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.XtraReports.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.XtraRichEdit.v15.2.Extensions.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.XtraRichEdit.v15.2.Extensions.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.XtraRichEdit.v15.2.Extensions.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.XtraRichEdit.v15.2.Extensions.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.XtraScheduler.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.XtraScheduler.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.XtraScheduler.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.XtraScheduler.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.ExpressApp.FileAttachment.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.ExpressApp.FileAttachment.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.ExpressApp.FileAttachment.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.ExpressApp.FileAttachment.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.Office.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.Office.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.Office.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.Office.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.ExpressApp.PivotGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.ExpressApp.PivotGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.ExpressApp.PivotGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.XtraLayout.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.XtraLayout.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.XtraLayout.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.XtraLayout.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.ExpressApp.PivotChart.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.ExpressApp.PivotChart.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.ExpressApp.PivotChart.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.ExpressApp.PivotChart.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.ExpressApp.Scheduler.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.ExpressApp.Scheduler.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.ExpressApp.Scheduler.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.ExpressApp.Scheduler.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.XtraReports.v15.2.Extensions.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.XtraReports.v15.2.Extensions.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.XtraReports.v15.2.Extensions.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.XtraReports.v15.2.Extensions.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.XtraVerticalGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.XtraVerticalGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.XtraVerticalGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.XtraVerticalGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.XtraNavBar.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.XtraNavBar.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.XtraNavBar.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.XtraNavBar.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.ExpressApp.ReportsV2.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.ExpressApp.ReportsV2.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.ExpressApp.ReportsV2.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.ExpressApp.ReportsV2.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.XtraCharts.v15.2.Wizard.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.XtraCharts.v15.2.Wizard.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.XtraCharts.v15.2.Wizard.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.XtraCharts.v15.2.Wizard.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.Pdf.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.Pdf.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.Pdf.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.Pdf.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.XtraGauges.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.XtraGauges.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.XtraGauges.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.XtraGauges.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.XtraGauges.v15.2.Presets.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.XtraGauges.v15.2.Presets.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.XtraGauges.v15.2.Presets.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.XtraGauges.v15.2.Presets.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.Map.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.Map.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.Map.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.Map.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\de\DevExpress.ExpressApp.PivotChart.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\es\DevExpress.ExpressApp.PivotChart.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ja\DevExpress.ExpressApp.PivotChart.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Debug\ru\DevExpress.ExpressApp.PivotChart.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\obj\Debug\SISBusiness.Module.CSharp.csprojResolveAssemblyReference.cache
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\obj\Debug\SISBusiness.Module.AuditTrailVCC.resources
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\obj\Debug\SISBusiness.Module.CustomersOrderVC.resources
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\obj\Debug\SISBusiness.Module.NavInvoiceReportVC.resources
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\obj\Debug\SISBusiness.Module.Controllers.ZoomListViewVC.resources
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\obj\Debug\SISBusiness.Module.CSharp.CSharpModule.resources
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\obj\Debug\SISBusiness.Module.CSharp.csproj.GenerateResource.Cache
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\obj\Debug\SISBusiness.Module.CSharp.dll.licenses
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\obj\Debug\hu\SISBusiness.Module.CSharp.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\obj\Debug\en\SISBusiness.Module.CSharp.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\obj\Debug\SISBusiness.Module.CSharp.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\obj\Debug\SISBusiness.Module.CSharp.pdb
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
+427
@@ -0,0 +1,427 @@
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\Images\iGreenArrow.png
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\Images\iOK.png
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\Images\iQuestion.png
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\Images\iRedArrow.png
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\BusinessObjects\SIS\App_Data\InitialData.accdb
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\Excels\XLSImports.xlsx
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\SISBusiness.Module.CSharp.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\hu\SISBusiness.Module.CSharp.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\en\SISBusiness.Module.CSharp.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Charts.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Data.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.DataAccess.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.DataAccess.v15.2.UI.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.AuditTrail.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Chart.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.CloneObject.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.ConditionalAppearance.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Demos.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.HtmlPropertyEditor.Win.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Kpi.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Objects.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Reports.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Reports.Win.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Security.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Validation.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Validation.Win.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.ViewVariantsModule.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Win.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Persistent.Base.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Persistent.BaseImpl.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.PivotGrid.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Printing.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Sparkline.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Utils.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Utils.v15.2.UI.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Xpo.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraEditors.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraGrid.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraPrinting.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\Newtonsoft.Json.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\SISBusiness.Module.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\SISBusiness.Module.Win.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\Gnostice.PDFOne.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.PivotGrid.Win.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraPivotGrid.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Spreadsheet.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraSpreadsheet.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraRichEdit.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\exontrol.exg2antt.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\FarPoint.Win.Spread.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraBars.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.RichEdit.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Dashboard.v15.2.Win.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Scheduler.Win.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraScheduler.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraTreeList.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\MySql.Data.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\Npgsql.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.TreeListEditors.Win.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Dashboard.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraCharts.v15.2.UI.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraCharts.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraReports.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraRichEdit.v15.2.Extensions.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraScheduler.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.FileAttachment.Win.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\exontrol.exprint.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Office.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.PivotGrid.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraLayout.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\FarPoint.Win.Spread.Design.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.PivotChart.Win.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Chart.Win.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Notifications.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Notifications.Win.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Scheduler.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.CodeParser.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\Microsoft.mshtml.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraReports.v15.2.Extensions.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraVerticalGrid.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraNavBar.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.BonusSkins.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.ReportsV2.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\Ionic.Zlib.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraCharts.v15.2.Wizard.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Pdf.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\FarPoint.Win.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\FarPoint.CalcEngine.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\FarPoint.Excel.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\FarPoint.Win.Chart.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\FarPoint.PluginCalendar.WinForms.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\FarPoint.PDF.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Pdf.v15.2.Drawing.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraMap.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraGauges.v15.2.Win.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraGauges.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraGauges.v15.2.Presets.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Map.v15.2.Core.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\Mono.Security.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.TreeListEditors.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.PivotChart.v15.2.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraCharts.v15.2.Extensions.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.DataAccess.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.DataAccess.v15.2.UI.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.AuditTrail.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Chart.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.CloneObject.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.ConditionalAppearance.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.HtmlPropertyEditor.Win.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Kpi.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Reports.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Reports.Win.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Security.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Validation.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Validation.Win.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.ViewVariantsModule.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Win.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.PivotGrid.v15.2.Core.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Printing.v15.2.Core.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Data.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Persistent.Base.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Persistent.BaseImpl.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Sparkline.v15.2.Core.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Utils.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Utils.v15.2.UI.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Xpo.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraEditors.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraPrinting.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraGrid.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\Newtonsoft.Json.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\Gnostice.PDFOne.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.PivotGrid.Win.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraPivotGrid.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Spreadsheet.v15.2.Core.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraSpreadsheet.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraRichEdit.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\FarPoint.Win.Spread.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraBars.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.RichEdit.v15.2.Core.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Dashboard.v15.2.Win.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Scheduler.Win.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraScheduler.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraTreeList.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\Npgsql.pdb
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\Npgsql.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.TreeListEditors.Win.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Dashboard.v15.2.Core.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraCharts.v15.2.UI.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraCharts.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraReports.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraRichEdit.v15.2.Extensions.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraScheduler.v15.2.Core.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.FileAttachment.Win.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Office.v15.2.Core.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.PivotGrid.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraLayout.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\FarPoint.Win.Spread.Design.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.PivotChart.Win.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Chart.Win.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Notifications.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.Scheduler.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraReports.v15.2.Extensions.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraVerticalGrid.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraNavBar.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.ReportsV2.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraCharts.v15.2.Wizard.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Pdf.v15.2.Core.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\FarPoint.Win.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\FarPoint.CalcEngine.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\FarPoint.Excel.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\FarPoint.Win.Chart.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\FarPoint.PluginCalendar.WinForms.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\FarPoint.PDF.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Pdf.v15.2.Drawing.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraMap.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraGauges.v15.2.Win.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraGauges.v15.2.Core.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.XtraGauges.v15.2.Presets.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.Map.v15.2.Core.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.TreeListEditors.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\DevExpress.ExpressApp.PivotChart.v15.2.xml
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\en\SISBusiness.Module.Win.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\hu\SISBusiness.Module.Win.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\hu\SISBusiness.Module.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.DataAccess.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.DataAccess.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.DataAccess.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.DataAccess.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.DataAccess.v15.2.UI.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.DataAccess.v15.2.UI.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.DataAccess.v15.2.UI.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.DataAccess.v15.2.UI.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.ExpressApp.AuditTrail.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.ExpressApp.AuditTrail.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.ExpressApp.AuditTrail.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.ExpressApp.Chart.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.ExpressApp.Chart.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.ExpressApp.Chart.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.ExpressApp.CloneObject.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.ExpressApp.CloneObject.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.ExpressApp.CloneObject.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.ExpressApp.CloneObject.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.ExpressApp.HtmlPropertyEditor.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.ExpressApp.HtmlPropertyEditor.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.ExpressApp.HtmlPropertyEditor.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.ExpressApp.HtmlPropertyEditor.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.ExpressApp.Kpi.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.ExpressApp.Kpi.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.ExpressApp.Kpi.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.ExpressApp.Objects.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.ExpressApp.Objects.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.ExpressApp.Objects.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.ExpressApp.Objects.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.ExpressApp.Reports.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.ExpressApp.Reports.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.ExpressApp.Reports.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.ExpressApp.Reports.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.ExpressApp.Reports.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.ExpressApp.Reports.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.ExpressApp.Reports.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.ExpressApp.Reports.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.ExpressApp.Security.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.ExpressApp.Security.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.ExpressApp.Security.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.ExpressApp.Security.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.ExpressApp.Validation.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.ExpressApp.Validation.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.ExpressApp.Validation.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.ExpressApp.Validation.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.ExpressApp.Validation.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.ExpressApp.Validation.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.ExpressApp.Validation.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.ExpressApp.Validation.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.ExpressApp.ViewVariantsModule.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.ExpressApp.ViewVariantsModule.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.ExpressApp.ViewVariantsModule.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.ExpressApp.ViewVariantsModule.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.ExpressApp.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.ExpressApp.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.ExpressApp.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.ExpressApp.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.PivotGrid.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.PivotGrid.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.PivotGrid.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.PivotGrid.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.Printing.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.Printing.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.Printing.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.Printing.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.Data.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.Data.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.Data.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.Data.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.ExpressApp.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.ExpressApp.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.ExpressApp.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.ExpressApp.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.Sparkline.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.Sparkline.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.Sparkline.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.Sparkline.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.Utils.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.Utils.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.Utils.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.Utils.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.Utils.v15.2.UI.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.Utils.v15.2.UI.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.Utils.v15.2.UI.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.Utils.v15.2.UI.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.Xpo.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.Xpo.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.Xpo.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.Xpo.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.XtraEditors.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.XtraEditors.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.XtraEditors.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.XtraEditors.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.XtraPrinting.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.XtraPrinting.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.XtraPrinting.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.XtraPrinting.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.XtraGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.XtraGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.XtraGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.XtraGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.XtraPivotGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.XtraPivotGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.XtraPivotGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.XtraPivotGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.Spreadsheet.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.Spreadsheet.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.Spreadsheet.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.Spreadsheet.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.XtraSpreadsheet.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.XtraSpreadsheet.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.XtraSpreadsheet.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.XtraSpreadsheet.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.XtraRichEdit.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.XtraRichEdit.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.XtraRichEdit.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.XtraRichEdit.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.XtraBars.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.XtraBars.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.XtraBars.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.XtraBars.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.RichEdit.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.RichEdit.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.RichEdit.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.RichEdit.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.Dashboard.v15.2.Win.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.Dashboard.v15.2.Win.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.Dashboard.v15.2.Win.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.Dashboard.v15.2.Win.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.ExpressApp.Scheduler.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.ExpressApp.Scheduler.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.ExpressApp.Scheduler.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.ExpressApp.Scheduler.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.XtraScheduler.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.XtraScheduler.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.XtraScheduler.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.XtraScheduler.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.XtraTreeList.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.XtraTreeList.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.XtraTreeList.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.XtraTreeList.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\Npgsql.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\Npgsql.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\fi\Npgsql.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\fr\Npgsql.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\Npgsql.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\zh-CN\Npgsql.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.Dashboard.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.Dashboard.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.Dashboard.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.Dashboard.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.XtraCharts.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.XtraCharts.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.XtraCharts.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.XtraCharts.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.XtraReports.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.XtraReports.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.XtraReports.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.XtraReports.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.XtraRichEdit.v15.2.Extensions.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.XtraRichEdit.v15.2.Extensions.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.XtraRichEdit.v15.2.Extensions.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.XtraRichEdit.v15.2.Extensions.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.XtraScheduler.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.XtraScheduler.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.XtraScheduler.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.XtraScheduler.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.ExpressApp.FileAttachment.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.ExpressApp.FileAttachment.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.ExpressApp.FileAttachment.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.ExpressApp.FileAttachment.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.Office.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.Office.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.Office.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.Office.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.ExpressApp.PivotGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.ExpressApp.PivotGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.ExpressApp.PivotGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.XtraLayout.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.XtraLayout.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.XtraLayout.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.XtraLayout.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.ExpressApp.PivotChart.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.ExpressApp.PivotChart.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.ExpressApp.PivotChart.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.ExpressApp.PivotChart.Win.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.ExpressApp.Scheduler.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.ExpressApp.Scheduler.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.ExpressApp.Scheduler.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.ExpressApp.Scheduler.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.XtraReports.v15.2.Extensions.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.XtraReports.v15.2.Extensions.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.XtraReports.v15.2.Extensions.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.XtraReports.v15.2.Extensions.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.XtraVerticalGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.XtraVerticalGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.XtraVerticalGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.XtraVerticalGrid.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.XtraNavBar.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.XtraNavBar.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.XtraNavBar.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.XtraNavBar.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.ExpressApp.ReportsV2.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.ExpressApp.ReportsV2.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.ExpressApp.ReportsV2.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.ExpressApp.ReportsV2.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.XtraCharts.v15.2.Wizard.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.XtraCharts.v15.2.Wizard.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.XtraCharts.v15.2.Wizard.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.XtraCharts.v15.2.Wizard.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.Pdf.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.Pdf.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.Pdf.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.Pdf.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.XtraGauges.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.XtraGauges.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.XtraGauges.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.XtraGauges.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.XtraGauges.v15.2.Presets.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.XtraGauges.v15.2.Presets.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.XtraGauges.v15.2.Presets.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.XtraGauges.v15.2.Presets.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.Map.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.Map.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.Map.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.Map.v15.2.Core.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\de\DevExpress.ExpressApp.PivotChart.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\es\DevExpress.ExpressApp.PivotChart.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ja\DevExpress.ExpressApp.PivotChart.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\bin\Release\ru\DevExpress.ExpressApp.PivotChart.v15.2.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\obj\Release\SISBusiness.Module.CSharp.csprojResolveAssemblyReference.cache
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\obj\Release\SISBusiness.Module.AuditTrailVCC.resources
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\obj\Release\SISBusiness.Module.CustomersOrderVC.resources
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\obj\Release\SISBusiness.Module.NavInvoiceReportVC.resources
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\obj\Release\SISBusiness.Module.Controllers.ZoomListViewVC.resources
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\obj\Release\SISBusiness.Module.CSharp.CSharpModule.resources
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\obj\Release\SISBusiness.Module.CSharp.csproj.GenerateResource.Cache
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\obj\Release\SISBusiness.Module.CSharp.dll.licenses
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\obj\Release\hu\SISBusiness.Module.CSharp.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\obj\Release\en\SISBusiness.Module.CSharp.resources.dll
|
||||
C:\SISBusiness\v_15_2_5\SISBusiness.Module.CSharp\obj\Release\SISBusiness.Module.CSharp.dll
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Newtonsoft.Json" version="8.0.3" targetFramework="net40" />
|
||||
</packages>
|
||||
Reference in New Issue
Block a user