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>
|
||||||
@@ -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,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,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,22 @@
|
|||||||
|
Imports System
|
||||||
|
Imports System.Security.Principal
|
||||||
|
|
||||||
|
Imports DevExpress.Persistent.BaseImpl
|
||||||
|
Imports DevExpress.ExpressApp
|
||||||
|
Imports DevExpress.ExpressApp.Objects
|
||||||
|
Imports DevExpress.ExpressApp.Updating
|
||||||
|
Imports DevExpress.Data.Filtering
|
||||||
|
Imports DevExpress.Xpo
|
||||||
|
|
||||||
|
|
||||||
|
Public Class Updater
|
||||||
|
Inherits ModuleUpdater
|
||||||
|
|
||||||
|
Public Sub New(ByVal objectSpace As IObjectSpace, ByVal currentDBVersion As Version)
|
||||||
|
MyBase.New(objectSpace, currentDBVersion)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Public Overrides Sub UpdateDatabaseAfterUpdateSchema()
|
||||||
|
MyBase.UpdateDatabaseAfterUpdateSchema()
|
||||||
|
End Sub
|
||||||
|
End Class
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
Folder Description
|
||||||
|
|
||||||
|
The "Images" project folder is intended for storing custom image files.
|
||||||
|
|
||||||
|
|
||||||
|
Relevant Documentation
|
||||||
|
|
||||||
|
Add and Override Images
|
||||||
|
http://help.devexpress.com/#Xaf/CustomDocument2792
|
||||||
|
|
||||||
|
Assign a Custom Image
|
||||||
|
http://help.devexpress.com/#Xaf/CustomDocument2744
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<Application Title="SISBusiness.Module.Web.SubcontractorModule" Subtitle="Powered by eXpressApp Framework" Company="Developer Express Inc" Logo="ExpressAppLogo" />
|
||||||
@@ -0,0 +1,31 @@
|
|||||||
|
Imports Microsoft.VisualBasic
|
||||||
|
Imports System
|
||||||
|
|
||||||
|
Partial Public Class SubcontractorModule
|
||||||
|
''' <summary>
|
||||||
|
''' Required designer variable.
|
||||||
|
''' </summary>
|
||||||
|
Private components As System.ComponentModel.IContainer = Nothing
|
||||||
|
|
||||||
|
''' <summary>
|
||||||
|
''' Clean up any resources being used.
|
||||||
|
''' </summary>
|
||||||
|
''' <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||||
|
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||||
|
If disposing AndAlso (Not components Is Nothing) Then
|
||||||
|
components.Dispose()
|
||||||
|
End If
|
||||||
|
MyBase.Dispose(disposing)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
#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 Sub InitializeComponent()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
#End Region
|
||||||
|
End Class
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
Imports System
|
||||||
|
Imports System.Reflection
|
||||||
|
Imports System.Collections.Generic
|
||||||
|
|
||||||
|
Imports DevExpress.ExpressApp
|
||||||
|
|
||||||
|
Public NotInheritable Class [SubcontractorModule]
|
||||||
|
Inherits ModuleBase
|
||||||
|
Public Sub New()
|
||||||
|
InitializeComponent()
|
||||||
|
End Sub
|
||||||
|
End Class
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
'------------------------------------------------------------------------------
|
||||||
|
' <auto-generated>
|
||||||
|
' This code was generated by a tool.
|
||||||
|
' Runtime Version:2.0.50727.3603
|
||||||
|
'
|
||||||
|
' Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
' the code is regenerated.
|
||||||
|
' </auto-generated>
|
||||||
|
'------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Option Strict On
|
||||||
|
Option Explicit On
|
||||||
|
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<MyApplicationData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||||
|
<MySubMain>false</MySubMain>
|
||||||
|
<SingleInstance>false</SingleInstance>
|
||||||
|
<ShutdownMode>0</ShutdownMode>
|
||||||
|
<EnableVisualStyles>true</EnableVisualStyles>
|
||||||
|
<AuthenticationMode>0</AuthenticationMode>
|
||||||
|
<ApplicationType>1</ApplicationType>
|
||||||
|
<SaveMySettingsOnExit>true</SaveMySettingsOnExit>
|
||||||
|
</MyApplicationData>
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
Imports System
|
||||||
|
Imports System.Reflection
|
||||||
|
Imports 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.
|
||||||
|
|
||||||
|
' Review the values of the assembly attributes
|
||||||
|
|
||||||
|
<Assembly: AssemblyTitle("SISBusiness.Module.Web.Subcontractor")>
|
||||||
|
<Assembly: AssemblyDescription("")>
|
||||||
|
<Assembly: AssemblyCompany("-")>
|
||||||
|
<Assembly: AssemblyProduct("SISBusiness.Module.Web.Subcontractor")>
|
||||||
|
<Assembly: AssemblyCopyright("Copyright © - 2007")>
|
||||||
|
<Assembly: AssemblyTrademark("")>
|
||||||
|
|
||||||
|
<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 Build and Revision Numbers
|
||||||
|
' by using the '*' as shown below:
|
||||||
|
' <Assembly: AssemblyVersion("1.0.*")>
|
||||||
|
|
||||||
|
<Assembly: AssemblyVersion("12.2.8.1001")>
|
||||||
|
|
||||||
@@ -0,0 +1,63 @@
|
|||||||
|
'------------------------------------------------------------------------------
|
||||||
|
' <auto-generated>
|
||||||
|
' This code was generated by a tool.
|
||||||
|
' Runtime Version:2.0.50727.3603
|
||||||
|
'
|
||||||
|
' Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
' the code is regenerated.
|
||||||
|
' </auto-generated>
|
||||||
|
'------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Option Strict On
|
||||||
|
Option Explicit On
|
||||||
|
|
||||||
|
Imports System
|
||||||
|
|
||||||
|
Namespace My.Resources
|
||||||
|
|
||||||
|
'This class was auto-generated by the StronglyTypedResourceBuilder
|
||||||
|
'class via a tool like ResGen or Visual Studio.
|
||||||
|
'To add or remove a member, edit your .ResX file then rerun ResGen
|
||||||
|
'with the /str option, or rebuild your VS project.
|
||||||
|
'''<summary>
|
||||||
|
''' A strongly-typed resource class, for looking up localized strings, etc.
|
||||||
|
'''</summary>
|
||||||
|
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0"), _
|
||||||
|
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||||
|
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
|
||||||
|
Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
|
||||||
|
Friend Module Resources
|
||||||
|
|
||||||
|
Private resourceMan As Global.System.Resources.ResourceManager
|
||||||
|
|
||||||
|
Private resourceCulture As Global.System.Globalization.CultureInfo
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Returns the cached ResourceManager instance used by this class.
|
||||||
|
'''</summary>
|
||||||
|
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||||
|
Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager
|
||||||
|
Get
|
||||||
|
If Object.ReferenceEquals(resourceMan, Nothing) Then
|
||||||
|
Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("SISBusiness.Module.Web.Subcontractor.Resources", GetType(Resources).Assembly)
|
||||||
|
resourceMan = temp
|
||||||
|
End If
|
||||||
|
Return resourceMan
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Overrides the current thread's CurrentUICulture property for all
|
||||||
|
''' resource lookups using this strongly typed resource class.
|
||||||
|
'''</summary>
|
||||||
|
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||||
|
Friend Property Culture() As Global.System.Globalization.CultureInfo
|
||||||
|
Get
|
||||||
|
Return resourceCulture
|
||||||
|
End Get
|
||||||
|
Set
|
||||||
|
resourceCulture = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
End Module
|
||||||
|
End Namespace
|
||||||
@@ -0,0 +1,117 @@
|
|||||||
|
<?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.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: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:element>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"></xsd:attribute>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"></xsd:attribute>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"></xsd:attribute>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"></xsd:attribute>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"></xsd:attribute>
|
||||||
|
</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>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"></xsd:element>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1"></xsd:attribute>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"></xsd:attribute>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"></xsd:attribute>
|
||||||
|
</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:element>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"></xsd:attribute>
|
||||||
|
</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=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
</root>
|
||||||
@@ -0,0 +1,73 @@
|
|||||||
|
'------------------------------------------------------------------------------
|
||||||
|
' <auto-generated>
|
||||||
|
' This code was generated by a tool.
|
||||||
|
' Runtime Version:2.0.50727.3603
|
||||||
|
'
|
||||||
|
' Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
' the code is regenerated.
|
||||||
|
' </auto-generated>
|
||||||
|
'------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Option Strict On
|
||||||
|
Option Explicit On
|
||||||
|
|
||||||
|
|
||||||
|
Namespace My
|
||||||
|
|
||||||
|
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
|
||||||
|
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "9.0.0.0"), _
|
||||||
|
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||||
|
Partial Friend NotInheritable Class MySettings
|
||||||
|
Inherits Global.System.Configuration.ApplicationSettingsBase
|
||||||
|
|
||||||
|
Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings),MySettings)
|
||||||
|
|
||||||
|
#Region "My.Settings Auto-Save Functionality"
|
||||||
|
#If _MyType = "WindowsForms" Then
|
||||||
|
Private Shared addedHandler As Boolean
|
||||||
|
|
||||||
|
Private Shared addedHandlerLockObject As New Object
|
||||||
|
|
||||||
|
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||||
|
Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs)
|
||||||
|
If My.Application.SaveMySettingsOnExit Then
|
||||||
|
My.Settings.Save()
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
#End If
|
||||||
|
#End Region
|
||||||
|
|
||||||
|
Public Shared ReadOnly Property [Default]() As MySettings
|
||||||
|
Get
|
||||||
|
|
||||||
|
#If _MyType = "WindowsForms" Then
|
||||||
|
If Not addedHandler Then
|
||||||
|
SyncLock addedHandlerLockObject
|
||||||
|
If Not addedHandler Then
|
||||||
|
AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings
|
||||||
|
addedHandler = True
|
||||||
|
End If
|
||||||
|
End SyncLock
|
||||||
|
End If
|
||||||
|
#End If
|
||||||
|
Return defaultInstance
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
End Class
|
||||||
|
End Namespace
|
||||||
|
|
||||||
|
Namespace My
|
||||||
|
|
||||||
|
<Global.Microsoft.VisualBasic.HideModuleNameAttribute(), _
|
||||||
|
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||||
|
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute()> _
|
||||||
|
Friend Module MySettingsProperty
|
||||||
|
|
||||||
|
<Global.System.ComponentModel.Design.HelpKeywordAttribute("My.Settings")> _
|
||||||
|
Friend ReadOnly Property Settings() As Global.SISBusiness.Module.Web.Subcontractor.My.MySettings
|
||||||
|
Get
|
||||||
|
Return Global.SISBusiness.Module.Web.Subcontractor.My.MySettings.Default
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
End Module
|
||||||
|
End Namespace
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" UseMySettingsClassName="true">
|
||||||
|
<Profiles>
|
||||||
|
<Profile Name="(Default)" />
|
||||||
|
</Profiles>
|
||||||
|
<Settings />
|
||||||
|
</SettingsFile>
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
Project Description
|
||||||
|
|
||||||
|
The SISBusiness.Module.Web.Subcontractor 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,177 @@
|
|||||||
|
<?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>{DD721391-766C-47EA-A0BF-E4438DB788EF}</ProjectGuid>
|
||||||
|
<OutputType>Library</OutputType>
|
||||||
|
<RootNamespace>SISBusiness.Module.Web.Subcontractor</RootNamespace>
|
||||||
|
<AssemblyName>NewModule</AssemblyName>
|
||||||
|
<MyType>Windows</MyType>
|
||||||
|
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||||
|
<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>
|
||||||
|
<DefineDebug>true</DefineDebug>
|
||||||
|
<DefineTrace>true</DefineTrace>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DocumentationFile>NewModule.xml</DocumentationFile>
|
||||||
|
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<DefineDebug>false</DefineDebug>
|
||||||
|
<DefineTrace>true</DefineTrace>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DocumentationFile>NewModule.xml</DocumentationFile>
|
||||||
|
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<OptionExplicit>On</OptionExplicit>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<OptionCompare>Binary</OptionCompare>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<OptionStrict>Off</OptionStrict>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<OptionInfer>On</OptionInfer>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'R64|AnyCPU'">
|
||||||
|
<DefineTrace>true</DefineTrace>
|
||||||
|
<OutputPath>bin\R64\</OutputPath>
|
||||||
|
<DocumentationFile>NewModule.xml</DocumentationFile>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<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.Xpo.v15.2">
|
||||||
|
<SpecificVersion>False</SpecificVersion>
|
||||||
|
<Private>False</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="DevExpress.ExpressApp.v15.2">
|
||||||
|
<SpecificVersion>False</SpecificVersion>
|
||||||
|
<Private>False</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="DevExpress.ExpressApp.Objects.v15.2">
|
||||||
|
<SpecificVersion>False</SpecificVersion>
|
||||||
|
<Private>False</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="DevExpress.ExpressApp.Validation.v15.2">
|
||||||
|
<SpecificVersion>False</SpecificVersion>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="DevExpress.Persistent.Base.v15.2">
|
||||||
|
<SpecificVersion>False</SpecificVersion>
|
||||||
|
<Private>False</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="DevExpress.Persistent.BaseImpl.v15.2">
|
||||||
|
<SpecificVersion>False</SpecificVersion>
|
||||||
|
<Private>False</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="DevExpress.Xpo.v15.2">
|
||||||
|
<SpecificVersion>False</SpecificVersion>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
|
||||||
|
<SpecificVersion>False</SpecificVersion>
|
||||||
|
<Private>False</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.Core">
|
||||||
|
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
||||||
|
<Private>False</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.Data">
|
||||||
|
<Private>False</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.Xml">
|
||||||
|
<Private>False</Private>
|
||||||
|
</Reference>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Import Include="Microsoft.VisualBasic" />
|
||||||
|
<Import Include="System" />
|
||||||
|
<Import Include="System.Collections" />
|
||||||
|
<Import Include="System.Collections.Generic" />
|
||||||
|
<Import Include="System.Data" />
|
||||||
|
<Import Include="System.Diagnostics" />
|
||||||
|
<Import Include="System.Linq" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="Module.Designer.vb">
|
||||||
|
<DependentUpon>Module.vb</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Module.vb">
|
||||||
|
<SubType>Component</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="My Project\AssemblyInfo.vb" />
|
||||||
|
<Compile Include="My Project\Application.Designer.vb">
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DependentUpon>Application.myapp</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="My Project\Resources.Designer.vb">
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DesignTime>True</DesignTime>
|
||||||
|
<DependentUpon>Resources.resx</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="My Project\Settings.Designer.vb">
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DependentUpon>Settings.settings</DependentUpon>
|
||||||
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="DatabaseUpdate\Updater.vb" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="My Project\licenses.licx" />
|
||||||
|
<EmbeddedResource Include="My Project\Resources.resx">
|
||||||
|
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
|
||||||
|
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
|
||||||
|
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</EmbeddedResource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="Model.DesignedDiffs.xafml" />
|
||||||
|
<None Include="My Project\Application.myapp">
|
||||||
|
<Generator>MyApplicationCodeGenerator</Generator>
|
||||||
|
<LastGenOutput>Application.Designer.vb</LastGenOutput>
|
||||||
|
</None>
|
||||||
|
<None Include="My Project\Settings.settings">
|
||||||
|
<Generator>SettingsSingleFileGenerator</Generator>
|
||||||
|
<CustomToolNamespace>My</CustomToolNamespace>
|
||||||
|
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
|
||||||
|
</None>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="BusinessObjects\ReadMe.txt" />
|
||||||
|
<None Include="Controllers\ReadMe.txt" />
|
||||||
|
<None Include="DatabaseUpdate\ReadMe.txt" />
|
||||||
|
<None Include="Images\ReadMe.txt" />
|
||||||
|
<None Include="ReadMe.txt" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildBinPath)\Microsoft.VisualBasic.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>
|
||||||
+10
@@ -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,32 @@
|
|||||||
|
Partial Class DocumentsVC
|
||||||
|
|
||||||
|
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||||
|
Public Sub New(ByVal Container As System.ComponentModel.IContainer)
|
||||||
|
MyClass.New()
|
||||||
|
|
||||||
|
'Required for Windows.Forms Class Composition Designer support
|
||||||
|
Container.Add(Me)
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
'Component overrides dispose to clean up the component list.
|
||||||
|
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||||
|
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||||
|
If disposing AndAlso components IsNot Nothing Then
|
||||||
|
components.Dispose()
|
||||||
|
End If
|
||||||
|
MyBase.Dispose(disposing)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
'Required by the Component Designer
|
||||||
|
Private components As System.ComponentModel.IContainer
|
||||||
|
|
||||||
|
'NOTE: The following procedure is required by the Component Designer
|
||||||
|
'It can be modified using the Component Designer.
|
||||||
|
'Do not modify it using the code editor.
|
||||||
|
<System.Diagnostics.DebuggerStepThrough()> _
|
||||||
|
Private Sub InitializeComponent()
|
||||||
|
components = New System.ComponentModel.Container()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
End Class
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
Imports System
|
||||||
|
Imports System.ComponentModel
|
||||||
|
Imports System.Collections.Generic
|
||||||
|
Imports System.Diagnostics
|
||||||
|
Imports System.Text
|
||||||
|
|
||||||
|
Imports DevExpress.ExpressApp
|
||||||
|
Imports DevExpress.ExpressApp.Actions
|
||||||
|
Imports DevExpress.Persistent.Base
|
||||||
|
Imports DevExpress.ExpressApp.SystemModule
|
||||||
|
Imports DevExpress.ExpressApp.Web.SystemModule
|
||||||
|
|
||||||
|
Public Class DocumentsVC
|
||||||
|
Inherits DevExpress.ExpressApp.ViewController
|
||||||
|
|
||||||
|
Public Sub New()
|
||||||
|
MyBase.New()
|
||||||
|
|
||||||
|
'This call is required by the Component Designer.
|
||||||
|
InitializeComponent()
|
||||||
|
RegisterActions(components)
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
Protected Overrides Sub OnActivated()
|
||||||
|
MyBase.OnActivated()
|
||||||
|
|
||||||
|
If View.Id = "Installation_InstallationDocumentations_ListView_Support" Then
|
||||||
|
Frame.GetController(Of NewObjectViewController).Active.SetItemValue("", False)
|
||||||
|
Frame.GetController(Of DeleteObjectsViewController).Active.SetItemValue("", False)
|
||||||
|
Frame.GetController(Of ListViewProcessCurrentObjectController).Active.SetItemValue("", False)
|
||||||
|
Frame.GetController(Of DetailViewEditorActionController).Active.SetItemValue("", False)
|
||||||
|
Frame.GetController(Of ListViewController).EditAction.Active.SetItemValue("", False)
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
End Class
|
||||||
|
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
Partial Class InstallationVC
|
||||||
|
|
||||||
|
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||||
|
Public Sub New(ByVal Container As System.ComponentModel.IContainer)
|
||||||
|
MyClass.New()
|
||||||
|
|
||||||
|
'Required for Windows.Forms Class Composition Designer support
|
||||||
|
Container.Add(Me)
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
'Component overrides dispose to clean up the component list.
|
||||||
|
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||||
|
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||||
|
If disposing AndAlso components IsNot Nothing Then
|
||||||
|
components.Dispose()
|
||||||
|
End If
|
||||||
|
MyBase.Dispose(disposing)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
'Required by the Component Designer
|
||||||
|
Private components As System.ComponentModel.IContainer
|
||||||
|
|
||||||
|
'NOTE: The following procedure is required by the Component Designer
|
||||||
|
'It can be modified using the Component Designer.
|
||||||
|
'Do not modify it using the code editor.
|
||||||
|
<System.Diagnostics.DebuggerStepThrough()> _
|
||||||
|
Private Sub InitializeComponent()
|
||||||
|
components = New System.ComponentModel.Container()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
End Class
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
Imports System
|
||||||
|
Imports System.ComponentModel
|
||||||
|
Imports System.Collections.Generic
|
||||||
|
Imports System.Diagnostics
|
||||||
|
Imports System.Text
|
||||||
|
|
||||||
|
Imports DevExpress.ExpressApp
|
||||||
|
Imports DevExpress.ExpressApp.Actions
|
||||||
|
Imports DevExpress.Persistent.Base
|
||||||
|
|
||||||
|
Imports DevExpress.ExpressApp.CloneObject
|
||||||
|
Public Class InstallationVC
|
||||||
|
Inherits DevExpress.ExpressApp.ViewController
|
||||||
|
|
||||||
|
Public Sub New()
|
||||||
|
MyBase.New()
|
||||||
|
|
||||||
|
'This call is required by the Component Designer.
|
||||||
|
InitializeComponent()
|
||||||
|
RegisterActions(components)
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
Protected Overrides Sub OnActivated()
|
||||||
|
MyBase.OnActivated()
|
||||||
|
If View.Id = "Installation_InstallationDocumentations_ListView_Support" Then
|
||||||
|
Frame.GetController(Of CloneObjectViewController).Active.SetItemValue("", False)
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
Protected Overrides Sub OnDeactivated()
|
||||||
|
MyBase.OnDeactivated()
|
||||||
|
If View.Id = "Installation_InstallationDocumentations_ListView_Support" Then
|
||||||
|
Frame.GetController(Of CloneObjectViewController).Active.SetItemValue("", True)
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
End Class
|
||||||
@@ -0,0 +1,50 @@
|
|||||||
|
Partial Class PCIGroupVC
|
||||||
|
|
||||||
|
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||||
|
Public Sub New(ByVal Container As System.ComponentModel.IContainer)
|
||||||
|
MyClass.New()
|
||||||
|
|
||||||
|
'Required for Windows.Forms Class Composition Designer support
|
||||||
|
Container.Add(Me)
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
'Component overrides dispose to clean up the component list.
|
||||||
|
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||||
|
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||||
|
If disposing AndAlso components IsNot Nothing Then
|
||||||
|
components.Dispose()
|
||||||
|
End If
|
||||||
|
MyBase.Dispose(disposing)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
'Required by the Component Designer
|
||||||
|
Private components As System.ComponentModel.IContainer
|
||||||
|
|
||||||
|
'NOTE: The following procedure is required by the Component Designer
|
||||||
|
'It can be modified using the Component Designer.
|
||||||
|
'Do not modify it using the code editor.
|
||||||
|
<System.Diagnostics.DebuggerStepThrough()> _
|
||||||
|
Private Sub InitializeComponent()
|
||||||
|
Me.components = New System.ComponentModel.Container()
|
||||||
|
Me.aViewBill = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||||
|
'
|
||||||
|
'aViewBill
|
||||||
|
'
|
||||||
|
Me.aViewBill.Caption = "aView Bill"
|
||||||
|
Me.aViewBill.ConfirmationMessage = Nothing
|
||||||
|
Me.aViewBill.Id = "aViewBill"
|
||||||
|
Me.aViewBill.ImageName = Nothing
|
||||||
|
Me.aViewBill.SelectionDependencyType = DevExpress.ExpressApp.Actions.SelectionDependencyType.RequireSingleObject
|
||||||
|
Me.aViewBill.Shortcut = Nothing
|
||||||
|
Me.aViewBill.Tag = Nothing
|
||||||
|
Me.aViewBill.TargetObjectsCriteria = Nothing
|
||||||
|
Me.aViewBill.TargetObjectType = GetType(SISBusiness.[Module].PCIGroup)
|
||||||
|
Me.aViewBill.TargetViewId = Nothing
|
||||||
|
Me.aViewBill.ToolTip = Nothing
|
||||||
|
Me.aViewBill.TypeOfView = Nothing
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
Friend WithEvents aViewBill As DevExpress.ExpressApp.Actions.SimpleAction
|
||||||
|
|
||||||
|
End Class
|
||||||
@@ -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="aViewBill.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,81 @@
|
|||||||
|
Imports System
|
||||||
|
Imports System.ComponentModel
|
||||||
|
Imports System.Collections.Generic
|
||||||
|
Imports System.Diagnostics
|
||||||
|
Imports System.Text
|
||||||
|
|
||||||
|
Imports DevExpress.ExpressApp
|
||||||
|
Imports DevExpress.ExpressApp.Actions
|
||||||
|
Imports DevExpress.Persistent.Base
|
||||||
|
Imports DevExpress.ExpressApp.Web.SystemModule
|
||||||
|
Imports System.IO
|
||||||
|
Imports DevExpress.Data.Filtering
|
||||||
|
Imports DevExpress.Web.Internal
|
||||||
|
|
||||||
|
Imports System.Web
|
||||||
|
Imports System.Net
|
||||||
|
|
||||||
|
Imports DevExpress.ExpressApp.Web
|
||||||
|
|
||||||
|
Public Class PCIGroupVC
|
||||||
|
Inherits DevExpress.ExpressApp.ViewController
|
||||||
|
|
||||||
|
Public Sub New()
|
||||||
|
MyBase.New()
|
||||||
|
|
||||||
|
'This call is required by the Component Designer.
|
||||||
|
InitializeComponent()
|
||||||
|
RegisterActions(components)
|
||||||
|
Me.TargetObjectType = GetType(SISBusiness.Module.PCIGroup)
|
||||||
|
End Sub
|
||||||
|
Protected Overrides Sub OnActivated()
|
||||||
|
MyBase.OnActivated()
|
||||||
|
Frame.GetController(Of ListViewController).EditAction.Active.SetItemValue("", False)
|
||||||
|
Frame.GetController(Of PCIGroupVC).aViewBill.Active.SetItemValue("", False)
|
||||||
|
If View.Id = "PCIGroup_ListView_Support" Then
|
||||||
|
Frame.GetController(Of PCIGroupVC).aViewBill.Active.SetItemValue("", True)
|
||||||
|
End If
|
||||||
|
If View.Id = "PCIGroup_ListView_Subcontractor" Then
|
||||||
|
Frame.GetController(Of PCIGroupVC).aViewBill.Active.SetItemValue("", True)
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
Protected Overrides Sub OnDeactivated()
|
||||||
|
MyBase.OnDeactivated()
|
||||||
|
Frame.GetController(Of ListViewController).EditAction.Active.SetItemValue("", True)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub aViewBill_Execute(sender As System.Object, e As DevExpress.ExpressApp.Actions.SimpleActionExecuteEventArgs) Handles aViewBill.Execute
|
||||||
|
Dim _ocur As Xpo.XPObjectSpace = TryCast(View.ObjectSpace, Xpo.XPObjectSpace)
|
||||||
|
Dim _PCIGroup As PCIGroup = TryCast(View.SelectedObjects(0), PCIGroup)
|
||||||
|
|
||||||
|
If _PCIGroup IsNot Nothing Then
|
||||||
|
If _PCIGroup.PartnerType = ePartnerType.eReceivables Then
|
||||||
|
Dim _InvoiceHeader As InvoiceHeader = _ocur.FindObject(Of InvoiceHeader)(CriteriaOperator.Parse("CustomersFrom.Oid=? and Customers.Oid=? and DocumentNumber=?", _PCIGroup.CustomersFrom.Oid, _PCIGroup.Customers.Oid, _PCIGroup.DocumentNumber))
|
||||||
|
If _InvoiceHeader IsNot Nothing Then
|
||||||
|
|
||||||
|
If _InvoiceHeader.PDF_Copy IsNot Nothing Then
|
||||||
|
Dim _FileStream As New MemoryStream
|
||||||
|
_InvoiceHeader.PDF_Copy.SaveToStream(_FileStream)
|
||||||
|
|
||||||
|
WebApplication.Redirect("GetAttachments.ashx?id=" & _InvoiceHeader.PDF_Copy.Oid.ToString)
|
||||||
|
|
||||||
|
End If
|
||||||
|
|
||||||
|
End If
|
||||||
|
|
||||||
|
|
||||||
|
ElseIf _PCIGroup.PartnerType = ePartnerType.ePayabels Then
|
||||||
|
Dim _RegistryHeader As RegistryHeader = _ocur.FindObject(Of RegistryHeader)(CriteriaOperator.Parse("CustomersFrom.Oid=? and Customers.Oid=? and DocumentNumber=?", _PCIGroup.CustomersFrom.Oid, _PCIGroup.Customers.Oid, _PCIGroup.DocumentNumber))
|
||||||
|
If _RegistryHeader IsNot Nothing Then
|
||||||
|
If _RegistryHeader.DocumentFile IsNot Nothing Then
|
||||||
|
Dim _FileStream As New MemoryStream
|
||||||
|
_RegistryHeader.DocumentFile.SaveToStream(_FileStream)
|
||||||
|
|
||||||
|
WebApplication.Redirect("GetAttachments.ashx?id=" & _RegistryHeader.DocumentFile.Oid.ToString)
|
||||||
|
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
End Class
|
||||||
+31
@@ -0,0 +1,31 @@
|
|||||||
|
Partial Class AboutInfoCustomizationVC
|
||||||
|
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||||
|
Public Sub New(ByVal Container As System.ComponentModel.IContainer)
|
||||||
|
MyClass.New()
|
||||||
|
|
||||||
|
'Required for Windows.Forms Class Composition Designer support
|
||||||
|
Container.Add(Me)
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
'Component overrides dispose to clean up the component list.
|
||||||
|
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||||
|
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||||
|
If disposing AndAlso components IsNot Nothing Then
|
||||||
|
components.Dispose()
|
||||||
|
End If
|
||||||
|
MyBase.Dispose(disposing)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
'Required by the Component Designer
|
||||||
|
Private components As System.ComponentModel.IContainer
|
||||||
|
|
||||||
|
'NOTE: The following procedure is required by the Component Designer
|
||||||
|
'It can be modified using the Component Designer.
|
||||||
|
'Do not modify it using the code editor.
|
||||||
|
<System.Diagnostics.DebuggerStepThrough()> _
|
||||||
|
Private Sub InitializeComponent()
|
||||||
|
components = New System.ComponentModel.Container()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
End Class
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
Imports System
|
||||||
|
Imports System.ComponentModel
|
||||||
|
Imports System.Collections.Generic
|
||||||
|
Imports System.Diagnostics
|
||||||
|
Imports System.Text
|
||||||
|
|
||||||
|
Imports DevExpress.ExpressApp
|
||||||
|
Imports DevExpress.ExpressApp.Actions
|
||||||
|
Imports DevExpress.Persistent.Base
|
||||||
|
Imports DevExpress.ExpressApp.SystemModule
|
||||||
|
Imports DevExpress.Persistent.BaseImpl
|
||||||
|
Imports DevExpress.Data.Filtering
|
||||||
|
|
||||||
|
Public Class AboutInfoCustomizationVC
|
||||||
|
Inherits DevExpress.ExpressApp.WindowController
|
||||||
|
|
||||||
|
Public Sub New()
|
||||||
|
MyBase.New()
|
||||||
|
|
||||||
|
'This call is required by the Component Designer.
|
||||||
|
InitializeComponent()
|
||||||
|
RegisterActions(components)
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
Protected Overrides Sub OnActivated()
|
||||||
|
MyBase.OnActivated()
|
||||||
|
AboutInfo.Instance.AboutInfoString = GetCustomAboutString()
|
||||||
|
End Sub
|
||||||
|
Function GetCustomAboutString() As String
|
||||||
|
Dim _CustomAboutString As String = ""
|
||||||
|
Dim _User As User
|
||||||
|
Dim _Contacts As Contacts
|
||||||
|
Dim _onew As Xpo.XPObjectSpace = Application.CreateObjectSpace
|
||||||
|
Dim _PartnerInfo As String = ""
|
||||||
|
|
||||||
|
_User = _onew.GetObject(TryCast(SecuritySystem.CurrentUser, User))
|
||||||
|
|
||||||
|
If _User IsNot Nothing Then
|
||||||
|
_Contacts = _onew.FindObject(Of Contacts)(CriteriaOperator.Parse("User=?", _User))
|
||||||
|
If _Contacts IsNot Nothing Then
|
||||||
|
_PartnerInfo = _Contacts.Customers.FullName
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
|
_CustomAboutString = TryCast(SecuritySystem.CurrentUser, User).FullName & "<br>"
|
||||||
|
_CustomAboutString += "<b>" & _PartnerInfo & "</b><br><br>"
|
||||||
|
_CustomAboutString += Application.Model.Application.Description & "<br>"
|
||||||
|
_CustomAboutString += "Version: " & System.Reflection.Assembly.GetExecutingAssembly.GetName.Version.ToString & "<br>"
|
||||||
|
_CustomAboutString += "Copyright (C) " & Application.Model.Copyright
|
||||||
|
|
||||||
|
Return _CustomAboutString
|
||||||
|
End Function
|
||||||
|
|
||||||
|
End Class
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
Partial Class HTMLEditorUserVC
|
||||||
|
|
||||||
|
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||||
|
Public Sub New(ByVal Container As System.ComponentModel.IContainer)
|
||||||
|
MyClass.New()
|
||||||
|
|
||||||
|
'Required for Windows.Forms Class Composition Designer support
|
||||||
|
Container.Add(Me)
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
'Component overrides dispose to clean up the component list.
|
||||||
|
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||||
|
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||||
|
If disposing AndAlso components IsNot Nothing Then
|
||||||
|
components.Dispose()
|
||||||
|
End If
|
||||||
|
MyBase.Dispose(disposing)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
'Required by the Component Designer
|
||||||
|
Private components As System.ComponentModel.IContainer
|
||||||
|
|
||||||
|
'NOTE: The following procedure is required by the Component Designer
|
||||||
|
'It can be modified using the Component Designer.
|
||||||
|
'Do not modify it using the code editor.
|
||||||
|
<System.Diagnostics.DebuggerStepThrough()> _
|
||||||
|
Private Sub InitializeComponent()
|
||||||
|
components = New System.ComponentModel.Container()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
End Class
|
||||||
@@ -0,0 +1,76 @@
|
|||||||
|
Imports System
|
||||||
|
Imports System.ComponentModel
|
||||||
|
Imports System.Collections.Generic
|
||||||
|
Imports System.Diagnostics
|
||||||
|
Imports System.Text
|
||||||
|
|
||||||
|
Imports DevExpress.ExpressApp
|
||||||
|
Imports DevExpress.ExpressApp.Actions
|
||||||
|
Imports DevExpress.Persistent.Base
|
||||||
|
Imports DevExpress.Web.ASPxHtmlEditor
|
||||||
|
Imports DevExpress.ExpressApp.HtmlPropertyEditor.Web
|
||||||
|
Imports System.Web.UI.WebControls
|
||||||
|
Imports System.Web.UI
|
||||||
|
Imports DevExpress.ExpressApp.Editors
|
||||||
|
|
||||||
|
Public Class HTMLEditorUserVC
|
||||||
|
Inherits DevExpress.ExpressApp.ViewController(Of DetailView)
|
||||||
|
Private htmlEditors As ArrayList
|
||||||
|
|
||||||
|
Public Sub New()
|
||||||
|
MyBase.New()
|
||||||
|
htmlEditors = New ArrayList
|
||||||
|
htmlEditors.Clear()
|
||||||
|
'This call is required by the Component Designer.
|
||||||
|
InitializeComponent()
|
||||||
|
RegisterActions(components)
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
Protected Overrides Sub OnActivated()
|
||||||
|
MyBase.OnActivated()
|
||||||
|
Dim fView As DetailView = TryCast(View, DetailView)
|
||||||
|
If (Not fView Is Nothing) AndAlso (fView.ViewEditMode = ViewEditMode.View) Then
|
||||||
|
fView.ViewEditMode = ViewEditMode.Edit
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
Protected Overrides Sub OnViewControlsCreated()
|
||||||
|
MyBase.OnViewControlsCreated()
|
||||||
|
Dim editor As ASPxHtmlPropertyEditor
|
||||||
|
Dim htmlEditor As ASPxHtmlEditor
|
||||||
|
If View.ViewEditMode = Editors.ViewEditMode.Edit Then
|
||||||
|
For Each editor In View.GetItems(Of ASPxHtmlPropertyEditor)()
|
||||||
|
If editor.Control IsNot Nothing Then
|
||||||
|
htmlEditor = TryCast(editor.Control, Table).Rows(0).Cells(1).Controls(0)
|
||||||
|
If htmlEditor IsNot Nothing Then
|
||||||
|
htmlEditors.Add(htmlEditor)
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
AddHandler TryCast(View.Control, Control).PreRender, AddressOf ChangeHtmlEditorWidthController_PreRender
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
Sub ChangeHtmlEditorWidthController_PreRender(sender As Object, e As EventArgs)
|
||||||
|
Dim htmlEditor As ASPxHtmlEditor
|
||||||
|
Dim _Toolbar As DevExpress.Web.ASPxHtmlEditor.HtmlEditorToolbar
|
||||||
|
Dim _ToolbarItem As DevExpress.Web.ASPxHtmlEditor.HtmlEditorToolbarItem
|
||||||
|
For Each htmlEditor In htmlEditors
|
||||||
|
htmlEditor.Width = Unit.Percentage(100)
|
||||||
|
|
||||||
|
'-- InsertImage tiltása.
|
||||||
|
For Each _Toolbar In htmlEditor.Toolbars
|
||||||
|
For Each _ToolbarItem In _Toolbar.Items
|
||||||
|
If TryCast(_ToolbarItem, ToolbarInsertImageDialogButton) IsNot Nothing Then
|
||||||
|
_ToolbarItem.Visible = False
|
||||||
|
End If
|
||||||
|
If TryCast(_ToolbarItem, ToolbarInsertLinkDialogButton) IsNot Nothing Then
|
||||||
|
_ToolbarItem.Visible = False
|
||||||
|
End If
|
||||||
|
If TryCast(_ToolbarItem, ToolbarUnlinkButton) IsNot Nothing Then
|
||||||
|
_ToolbarItem.Visible = False
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
Next
|
||||||
|
Next
|
||||||
|
htmlEditors.Clear()
|
||||||
|
End Sub
|
||||||
|
End Class
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
Partial Class CustomersMeeting_VC
|
||||||
|
|
||||||
|
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||||
|
Public Sub New(ByVal Container As System.ComponentModel.IContainer)
|
||||||
|
MyClass.New()
|
||||||
|
|
||||||
|
'Required for Windows.Forms Class Composition Designer support
|
||||||
|
Container.Add(Me)
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
'Component overrides dispose to clean up the component list.
|
||||||
|
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||||
|
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||||
|
If disposing AndAlso components IsNot Nothing Then
|
||||||
|
components.Dispose()
|
||||||
|
End If
|
||||||
|
MyBase.Dispose(disposing)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
'Required by the Component Designer
|
||||||
|
Private components As System.ComponentModel.IContainer
|
||||||
|
|
||||||
|
'NOTE: The following procedure is required by the Component Designer
|
||||||
|
'It can be modified using the Component Designer.
|
||||||
|
'Do not modify it using the code editor.
|
||||||
|
<System.Diagnostics.DebuggerStepThrough()> _
|
||||||
|
Private Sub InitializeComponent()
|
||||||
|
components = New System.ComponentModel.Container()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
End Class
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
Imports System
|
||||||
|
Imports System.ComponentModel
|
||||||
|
Imports System.Collections.Generic
|
||||||
|
Imports System.Diagnostics
|
||||||
|
Imports System.Text
|
||||||
|
|
||||||
|
Imports DevExpress.ExpressApp
|
||||||
|
Imports DevExpress.ExpressApp.Actions
|
||||||
|
Imports DevExpress.Persistent.Base
|
||||||
|
Imports DevExpress.ExpressApp.SystemModule
|
||||||
|
|
||||||
|
Public Class CustomersMeeting_VC
|
||||||
|
Inherits DevExpress.ExpressApp.ViewController
|
||||||
|
|
||||||
|
Public Sub New()
|
||||||
|
MyBase.New()
|
||||||
|
InitializeComponent()
|
||||||
|
RegisterActions(components)
|
||||||
|
End Sub
|
||||||
|
Protected Overrides Sub OnActivated()
|
||||||
|
MyBase.OnActivated()
|
||||||
|
If View.Id = "CustomersMeeting_DetailView_Support" Then
|
||||||
|
Frame.GetController(Of DetailViewController).SaveAction.Active.SetItemValue("", False)
|
||||||
|
Frame.GetController(Of DetailViewController).SaveAndCloseAction.Active.SetItemValue("", False)
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
Protected Overrides Sub OnDeactivated()
|
||||||
|
MyBase.OnDeactivated()
|
||||||
|
If View.Id = "CustomersMeeting_DetailView_Support" Then
|
||||||
|
Frame.GetController(Of DetailViewController).SaveAction.Active.SetItemValue("", True)
|
||||||
|
Frame.GetController(Of DetailViewController).SaveAndCloseAction.Active.SetItemValue("", True)
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
End Class
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Application>
|
||||||
|
<ActionDesign>
|
||||||
|
<Actions>
|
||||||
|
<Action Id="aSupportNavigationDisable" Caption="Tiltás" />
|
||||||
|
<Action Id="aSupportNavigationEnable" Caption="Engedélyezés" />
|
||||||
|
<Action Id="Logoff" Caption="Kijelentkezés" />
|
||||||
|
</Actions>
|
||||||
|
</ActionDesign>
|
||||||
|
<Views>
|
||||||
|
<DetailView Id="ChangePasswordOnLogonParameters_DetailView" Caption="Jelszó módosítása az első bejelentkezéskor">
|
||||||
|
<Items>
|
||||||
|
<StaticText Id="ChangePasswordText" Text="Biztonsági okokból most meg kell adnia a saját jelszavát. Kérjük adja meg új jelszavát az alábbi két szöveges mezőben, és győződjön meg arról, hogy nem használta ezt már korábban." />
|
||||||
|
</Items>
|
||||||
|
</DetailView>
|
||||||
|
<DetailView Id="Reply_DetailView">
|
||||||
|
<Layout>
|
||||||
|
<LayoutGroup Id="Main" Caption="Main">
|
||||||
|
<LayoutGroup Id="SimpleEditors" Caption="SimpleEditors">
|
||||||
|
<LayoutGroup Id="Reply" Caption="Reply" />
|
||||||
|
</LayoutGroup>
|
||||||
|
</LayoutGroup>
|
||||||
|
</Layout>
|
||||||
|
</DetailView>
|
||||||
|
</Views>
|
||||||
|
</Application>
|
||||||
@@ -0,0 +1,207 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Application Title="SISBusiness.Module.Web.SupportModule" Subtitle="Powered by eXpressApp Framework" Company="Developer Express Inc" Logo="ExpressAppLogo">
|
||||||
|
<ActionDesign>
|
||||||
|
<Actions>
|
||||||
|
<Action Id="aSupportNavigationDisable" ImageName="Action_Deny" />
|
||||||
|
<Action Id="aSupportNavigationEnable" ImageName="Action_Grant" />
|
||||||
|
<Action Id="aViewBill" ImageName="text_find" Caption="Számla PDF" />
|
||||||
|
</Actions>
|
||||||
|
</ActionDesign>
|
||||||
|
<BOModel>
|
||||||
|
<Class Name="DevExpress.Persistent.BaseImpl.User" IsClonable="False" />
|
||||||
|
<Class Name="SISBusiness.Module.Contracts">
|
||||||
|
<OwnMembers>
|
||||||
|
<Member Name="CurrencyName" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<Member Name="CurrencyName_Invoice" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<Member Name="CustomersFrom" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
</OwnMembers>
|
||||||
|
</Class>
|
||||||
|
<Class Name="SISBusiness.Module.CRM_Opportunities">
|
||||||
|
<OwnMembers>
|
||||||
|
<Member Name="CustomersFrom" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
</OwnMembers>
|
||||||
|
</Class>
|
||||||
|
<Class Name="SISBusiness.Module.InstallationDocumentations">
|
||||||
|
<OwnMembers>
|
||||||
|
<Member Name="Installation" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<Member Name="RowGroup1" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<Member Name="RowGroup2" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<Member Name="Status" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
</OwnMembers>
|
||||||
|
</Class>
|
||||||
|
<Class Name="SISBusiness.Module.OfferOutHeader">
|
||||||
|
<OwnMembers>
|
||||||
|
<Member Name="Contact" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<Member Name="CurrencyName" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<Member Name="Customers" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<Member Name="CustomersFrom" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<Member Name="PaymentOption" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<Member Name="QualityOption" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<Member Name="ShipmentOption" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<Member Name="UserCreated" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
</OwnMembers>
|
||||||
|
</Class>
|
||||||
|
<Class Name="SISBusiness.Module.PCIGroup">
|
||||||
|
<OwnMembers>
|
||||||
|
<Member Name="CurrencyName" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<Member Name="CurrencyName_Account" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<Member Name="Customers" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<Member Name="CustomersFrom" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
</OwnMembers>
|
||||||
|
</Class>
|
||||||
|
<Class Name="SISBusiness.Module.Question">
|
||||||
|
<OwnMembers>
|
||||||
|
<Member Name="Subject" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
</OwnMembers>
|
||||||
|
</Class>
|
||||||
|
<Class Name="SISBusiness.Module.WorkSheet_Header">
|
||||||
|
<OwnMembers>
|
||||||
|
<Member Name="CurrencyName" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<Member Name="Customers" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<Member Name="CustomersFrom" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
</OwnMembers>
|
||||||
|
</Class>
|
||||||
|
</BOModel>
|
||||||
|
<SchemaModules>
|
||||||
|
<SchemaModule Name="SchedulerAspNetModule" Version="12.1.8.0" IsNewNode="True" />
|
||||||
|
<SchemaModule Name="SchedulerModuleBase" Version="12.1.8.0" IsNewNode="True" />
|
||||||
|
<SchemaModule Name="SystemModule" Version="12.1.8.0" IsNewNode="True" />
|
||||||
|
</SchemaModules>
|
||||||
|
<Views>
|
||||||
|
<DetailView Id="CustomersMeeting_DetailView_Support" AllowEdit="False">
|
||||||
|
<Items>
|
||||||
|
<PropertyEditor Id="Customers" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<PropertyEditor Id="CustomersMeetingDocuments" AllowEdit="True" />
|
||||||
|
<PropertyEditor Id="DateExecution" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<PropertyEditor Id="Description" PropertyEditorType="DevExpress.ExpressApp.HtmlPropertyEditor.Web.ASPxHtmlPropertyEditor" AllowEdit="False" />
|
||||||
|
<PropertyEditor Id="DocumentNumber" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" AllowEdit="False" />
|
||||||
|
<PropertyEditor Id="MeetPlace" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<PropertyEditor Id="ObjectCreated" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<PropertyEditor Id="ShortName" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<PropertyEditor Id="UserCreated" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
</Items>
|
||||||
|
<Layout>
|
||||||
|
<TabbedGroup Id="Item1">
|
||||||
|
<LayoutGroup Id="Main" ImageName="">
|
||||||
|
<LayoutGroup Id="SimpleEditors" RelativeSize="15" ImageName="" />
|
||||||
|
<LayoutGroup Id="SizeableEditors" RelativeSize="84" ImageName="">
|
||||||
|
<LayoutItem Id="Description" ShowCaption="False" />
|
||||||
|
</LayoutGroup>
|
||||||
|
</LayoutGroup>
|
||||||
|
</TabbedGroup>
|
||||||
|
</Layout>
|
||||||
|
</DetailView>
|
||||||
|
<ListView Id="CustomersMeeting_ListView_Support" DetailViewID="CustomersMeeting_DetailView_Support" AllowEdit="False" IsListViewProcess="True">
|
||||||
|
<Columns>
|
||||||
|
<ColumnInfo Id="Customers" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<ColumnInfo Id="UserCreated" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
</Columns>
|
||||||
|
</ListView>
|
||||||
|
<ListView Id="Installation_InstallationDocumentations_ListView_Support">
|
||||||
|
<Columns>
|
||||||
|
<ColumnInfo Id="Installation" GroupIndex="0" Index="0" />
|
||||||
|
<ColumnInfo Id="File" Index="1" />
|
||||||
|
</Columns>
|
||||||
|
</ListView>
|
||||||
|
<ListView Id="OfferOutHeader_ListView_Support" AllowDelete="False" AllowNew="False" AutoExpandAllGroups="False">
|
||||||
|
<Columns>
|
||||||
|
<ColumnInfo Id="CustomersFrom" Index="0" GroupIndex="0" />
|
||||||
|
<ColumnInfo Id="DocumentNumber" Index="1" />
|
||||||
|
<ColumnInfo Id="DateCreated" Index="2" />
|
||||||
|
<ColumnInfo Id="Description" Index="3" />
|
||||||
|
<ColumnInfo Id="OfferOutState" Index="3" Removed="True" />
|
||||||
|
<ColumnInfo Id="OfferLOSTReason" Index="4" Removed="True" />
|
||||||
|
<ColumnInfo Id="PaymentOption" Index="4" />
|
||||||
|
<ColumnInfo Id="Customers" Index="5" Removed="True" />
|
||||||
|
<ColumnInfo Id="ShipmentOption" Index="5" />
|
||||||
|
<ColumnInfo Id="Contact" Index="6" Removed="True" />
|
||||||
|
<ColumnInfo Id="QualityOption" Index="6" />
|
||||||
|
<ColumnInfo Id="SumPriceHUF" Index="7" />
|
||||||
|
<ColumnInfo Id="CurrencyName" Index="8" />
|
||||||
|
<ColumnInfo Id="DateExecution" Index="8" Removed="True" />
|
||||||
|
<ColumnInfo Id="DatePayment" Index="9" Removed="True" />
|
||||||
|
<ColumnInfo Id="SumPriceDEV" Index="9" />
|
||||||
|
<ColumnInfo Id="ObjectCreated" Index="16" Removed="True" />
|
||||||
|
<ColumnInfo Id="@92b15479-2ea2-40ee-9008-47dc734041ad" PropertyName="PDF_Original" IsNewNode="True" />
|
||||||
|
<ColumnInfo Id="DocumentOutNumber" Removed="True" />
|
||||||
|
<ColumnInfo Id="OfferLOSTReasonDescription" Removed="True" />
|
||||||
|
<ColumnInfo Id="OfferOutParameters" Removed="True" />
|
||||||
|
</Columns>
|
||||||
|
</ListView>
|
||||||
|
<DetailView Id="Question_DetailView_User">
|
||||||
|
<Items>
|
||||||
|
<PropertyEditor Id="Subject" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxStringPropertyEditor" />
|
||||||
|
</Items>
|
||||||
|
</DetailView>
|
||||||
|
<ListView Id="Question_ListView_Customers">
|
||||||
|
<Columns>
|
||||||
|
<ColumnInfo Id="User" GroupIndex="0" />
|
||||||
|
</Columns>
|
||||||
|
</ListView>
|
||||||
|
<DetailView Id="Reply_DetailView">
|
||||||
|
<Items>
|
||||||
|
<PropertyEditor Id="Description" PropertyEditorType="DevExpress.ExpressApp.HtmlPropertyEditor.Web.ASPxHtmlPropertyEditor" />
|
||||||
|
</Items>
|
||||||
|
<Layout>
|
||||||
|
<LayoutGroup Id="Main" RelativeSize="100" ImageName="" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default">
|
||||||
|
<LayoutGroup Id="SimpleEditors" RelativeSize="5" ImageName="" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default">
|
||||||
|
<LayoutGroup Id="Reply" RelativeSize="100" ImageName="" Direction="Vertical" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default">
|
||||||
|
<LayoutItem Id="Question" ViewItem="Question" Index="0" RelativeSize="100" IsNewNode="True" Removed="True" />
|
||||||
|
<LayoutItem Id="ObjectCreated" Index="1" RelativeSize="48" ViewItem="ObjectCreated" Removed="True" />
|
||||||
|
<LayoutItem Id="UserCreated" ViewItem="UserCreated" Index="1" RelativeSize="50" Removed="True" />
|
||||||
|
</LayoutGroup>
|
||||||
|
</LayoutGroup>
|
||||||
|
</LayoutGroup>
|
||||||
|
</Layout>
|
||||||
|
</DetailView>
|
||||||
|
<DetailView Id="User_DetailView" AllowDelete="False" AllowNew="False">
|
||||||
|
<Items>
|
||||||
|
<PropertyEditor Id="ChangePasswordOnFirstLogon" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<PropertyEditor Id="IsActive" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
<PropertyEditor Id="Permissions" Removed="True" />
|
||||||
|
<PropertyEditor Id="Roles" Removed="True" />
|
||||||
|
<PropertyEditor Id="UserName" PropertyEditorType="DevExpress.ExpressApp.Web.Editors.ASPx.ASPxDefaultPropertyEditor" />
|
||||||
|
</Items>
|
||||||
|
<Layout>
|
||||||
|
<LayoutGroup Id="Main" Caption="Main" ImageName="" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default" RelativeSize="100">
|
||||||
|
<LayoutGroup Id="SimpleEditors" RelativeSize="37" ImageName="">
|
||||||
|
<LayoutGroup Id="User" RelativeSize="28" ImageName="">
|
||||||
|
<LayoutItem Id="UserName" SizeConstraintsType="Default" RelativeSize="37" />
|
||||||
|
<LayoutItem Id="ChangePasswordOnFirstLogon" SizeConstraintsType="Default" RelativeSize="27" />
|
||||||
|
<LayoutItem Id="IsActive" SizeConstraintsType="Default" RelativeSize="34" />
|
||||||
|
</LayoutGroup>
|
||||||
|
<LayoutGroup Id="Person" RelativeSize="36" ImageName="">
|
||||||
|
<LayoutGroup Id="Person_col1" RelativeSize="48" ImageName="">
|
||||||
|
<LayoutItem Id="FirstName" SizeConstraintsType="Default" RelativeSize="36" />
|
||||||
|
<LayoutItem Id="LastName" SizeConstraintsType="Default" RelativeSize="27" />
|
||||||
|
<LayoutItem Id="MiddleName" SizeConstraintsType="Default" RelativeSize="36" />
|
||||||
|
</LayoutGroup>
|
||||||
|
<LayoutGroup Id="Person_col2" RelativeSize="48" ImageName="">
|
||||||
|
<LayoutItem Id="Birthday" SizeConstraintsType="Default" RelativeSize="36" />
|
||||||
|
<LayoutItem Id="FullName" SizeConstraintsType="Default" RelativeSize="27" />
|
||||||
|
<LayoutItem Id="Email" SizeConstraintsType="Default" RelativeSize="36" />
|
||||||
|
</LayoutGroup>
|
||||||
|
</LayoutGroup>
|
||||||
|
<LayoutGroup Id="Party" RelativeSize="35" ImageName="">
|
||||||
|
<LayoutItem Id="Photo" SizeConstraintsType="Default" RelativeSize="27" />
|
||||||
|
<LayoutItem Id="Address1" SizeConstraintsType="Default" RelativeSize="22" />
|
||||||
|
<LayoutItem Id="Address2" SizeConstraintsType="Default" RelativeSize="22" />
|
||||||
|
<LayoutItem Id="DisplayName" SizeConstraintsType="Default" RelativeSize="27" />
|
||||||
|
</LayoutGroup>
|
||||||
|
</LayoutGroup>
|
||||||
|
<TabbedGroup Id="Tabs" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default" Index="1" RelativeSize="62">
|
||||||
|
<LayoutGroup Id="Permissions" Index="0" RelativeSize="100" Removed="True">
|
||||||
|
<LayoutItem Id="Permissions" ViewItem="" SizeConstraintsType="Default" RelativeSize="100" />
|
||||||
|
</LayoutGroup>
|
||||||
|
<LayoutGroup Id="PhoneNumbers" Index="0" RelativeSize="100" ImageName="telephone">
|
||||||
|
<LayoutItem Id="PhoneNumbers" SizeConstraintsType="Default" RelativeSize="100" />
|
||||||
|
</LayoutGroup>
|
||||||
|
<LayoutGroup Id="Roles" ShowCaption="True" Index="0" RelativeSize="100" Removed="True">
|
||||||
|
<LayoutItem Id="Roles" ShowCaption="False" ViewItem="" SizeConstraintsType="Default" Index="0" RelativeSize="100" IsNewNode="True" />
|
||||||
|
</LayoutGroup>
|
||||||
|
</TabbedGroup>
|
||||||
|
</LayoutGroup>
|
||||||
|
</Layout>
|
||||||
|
</DetailView>
|
||||||
|
</Views>
|
||||||
|
</Application>
|
||||||
+50
@@ -0,0 +1,50 @@
|
|||||||
|
Imports Microsoft.VisualBasic
|
||||||
|
Imports System
|
||||||
|
|
||||||
|
Partial Public Class SupportModule
|
||||||
|
''' <summary>
|
||||||
|
''' Required designer variable.
|
||||||
|
''' </summary>
|
||||||
|
Private components As System.ComponentModel.IContainer = Nothing
|
||||||
|
|
||||||
|
''' <summary>
|
||||||
|
''' Clean up any resources being used.
|
||||||
|
''' </summary>
|
||||||
|
''' <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||||
|
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||||
|
If disposing AndAlso (Not components Is Nothing) Then
|
||||||
|
components.Dispose()
|
||||||
|
End If
|
||||||
|
MyBase.Dispose(disposing)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
#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 Sub InitializeComponent()
|
||||||
|
'
|
||||||
|
'SupportModule
|
||||||
|
'
|
||||||
|
Me.RequiredModuleTypes.Add(GetType(SISBusiness.[Module].SISBusinessModule))
|
||||||
|
Me.RequiredModuleTypes.Add(GetType(DevExpress.ExpressApp.AuditTrail.AuditTrailModule))
|
||||||
|
Me.RequiredModuleTypes.Add(GetType(DevExpress.ExpressApp.Validation.ValidationModule))
|
||||||
|
Me.RequiredModuleTypes.Add(GetType(DevExpress.ExpressApp.ViewVariantsModule.ViewVariantsModule))
|
||||||
|
Me.RequiredModuleTypes.Add(GetType(DevExpress.ExpressApp.HtmlPropertyEditor.Web.HtmlPropertyEditorAspNetModule))
|
||||||
|
Me.RequiredModuleTypes.Add(GetType(DevExpress.ExpressApp.Objects.BusinessClassLibraryCustomizationModule))
|
||||||
|
Me.RequiredModuleTypes.Add(GetType(DevExpress.ExpressApp.Chart.Web.ChartAspNetModule))
|
||||||
|
Me.RequiredModuleTypes.Add(GetType(DevExpress.ExpressApp.CloneObject.CloneObjectModule))
|
||||||
|
Me.RequiredModuleTypes.Add(GetType(DevExpress.ExpressApp.ConditionalAppearance.ConditionalAppearanceModule))
|
||||||
|
Me.RequiredModuleTypes.Add(GetType(DevExpress.ExpressApp.FileAttachments.Web.FileAttachmentsAspNetModule))
|
||||||
|
Me.RequiredModuleTypes.Add(GetType(DevExpress.ExpressApp.Kpi.KpiModule))
|
||||||
|
Me.RequiredModuleTypes.Add(GetType(DevExpress.ExpressApp.PivotGrid.Web.PivotGridAspNetModule))
|
||||||
|
Me.RequiredModuleTypes.Add(GetType(DevExpress.ExpressApp.Reports.Web.ReportsAspNetModule))
|
||||||
|
Me.RequiredModuleTypes.Add(GetType(DevExpress.ExpressApp.Scheduler.Web.SchedulerAspNetModule))
|
||||||
|
Me.RequiredModuleTypes.Add(GetType(DevExpress.ExpressApp.TreeListEditors.Web.TreeListEditorsAspNetModule))
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
#End Region
|
||||||
|
End Class
|
||||||
@@ -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,13 @@
|
|||||||
|
Imports System
|
||||||
|
Imports System.Reflection
|
||||||
|
Imports System.Collections.Generic
|
||||||
|
|
||||||
|
Imports DevExpress.ExpressApp
|
||||||
|
|
||||||
|
Public NotInheritable Class [SupportModule]
|
||||||
|
Inherits ModuleBase
|
||||||
|
Public Sub New()
|
||||||
|
ModelDifferenceResourceName = "SISBusiness.Module.Web.Support.Model.DesignedDiffs"
|
||||||
|
InitializeComponent()
|
||||||
|
End Sub
|
||||||
|
End Class
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
'------------------------------------------------------------------------------
|
||||||
|
' <auto-generated>
|
||||||
|
' This code was generated by a tool.
|
||||||
|
' Runtime Version:4.0.30319.239
|
||||||
|
'
|
||||||
|
' Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
' the code is regenerated.
|
||||||
|
' </auto-generated>
|
||||||
|
'------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Option Strict On
|
||||||
|
Option Explicit On
|
||||||
|
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<MyApplicationData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||||
|
<MySubMain>false</MySubMain>
|
||||||
|
<SingleInstance>false</SingleInstance>
|
||||||
|
<ShutdownMode>0</ShutdownMode>
|
||||||
|
<EnableVisualStyles>true</EnableVisualStyles>
|
||||||
|
<AuthenticationMode>0</AuthenticationMode>
|
||||||
|
<ApplicationType>1</ApplicationType>
|
||||||
|
<SaveMySettingsOnExit>true</SaveMySettingsOnExit>
|
||||||
|
</MyApplicationData>
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user