Compare commits
6
Commits
1599b29e28
...
525cf78939
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
525cf78939 | ||
|
|
42147da6b7 | ||
|
|
b1c2db4f35 | ||
|
|
621f9a02ce | ||
|
|
301091c4e1 | ||
|
|
cfee10542b |
@@ -0,0 +1,87 @@
|
|||||||
|
using System;
|
||||||
|
using DevExpress.Xpo;
|
||||||
|
using DevExpress.Data.Filtering;
|
||||||
|
using DevExpress.Persistent.Base;
|
||||||
|
using DevExpress.Persistent.BaseImpl;
|
||||||
|
|
||||||
|
namespace Nuvolar.Module.BusinessObjects.Financial
|
||||||
|
{
|
||||||
|
[DefaultClassOptions, NavigationItem(false), CreatableItem(false), NonPersistent]
|
||||||
|
|
||||||
|
public class PCIEdit : BaseObject
|
||||||
|
{
|
||||||
|
public PCIEdit(Session session)
|
||||||
|
: base(session)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
public override void AfterConstruction()
|
||||||
|
{
|
||||||
|
base.AfterConstruction();
|
||||||
|
|
||||||
|
}
|
||||||
|
private LiquidAssets _LiquidAssets;
|
||||||
|
private PCIGroup _PCIGroup;
|
||||||
|
private string _DocumentNumber;
|
||||||
|
private DateTime _DateExecution;
|
||||||
|
private double _CurrencyRate;
|
||||||
|
|
||||||
|
[ImmediatePostData]
|
||||||
|
public LiquidAssets LiquidAssets
|
||||||
|
{
|
||||||
|
get { return _LiquidAssets; }
|
||||||
|
set
|
||||||
|
{
|
||||||
|
SetPropertyValue("LiquidAssets", ref _LiquidAssets, value);
|
||||||
|
//GLRows.Load();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public PCIGroup PCIGroup
|
||||||
|
{
|
||||||
|
get { return _PCIGroup; }
|
||||||
|
set { SetPropertyValue("PCIGroup", ref _PCIGroup, value); }
|
||||||
|
}
|
||||||
|
public DateTime DateExecution
|
||||||
|
{
|
||||||
|
get { return _DateExecution; }
|
||||||
|
set { SetPropertyValue("DateExecution", ref _DateExecution, value); }
|
||||||
|
}
|
||||||
|
|
||||||
|
[ImmediatePostData]
|
||||||
|
public string DocumentNumber
|
||||||
|
{
|
||||||
|
get { return _DocumentNumber; }
|
||||||
|
set { SetPropertyValue("DocumentNumber", ref _DocumentNumber, value); }
|
||||||
|
}
|
||||||
|
|
||||||
|
public XPCollection<GLRows> GLRows
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
XPCollection<GLRows> _GRLRows_Nothing = new XPCollection<GLRows>(Session, CriteriaOperator.Parse("1=2"));
|
||||||
|
if (this.LiquidAssets == null)
|
||||||
|
{
|
||||||
|
return _GRLRows_Nothing;
|
||||||
|
}
|
||||||
|
if (this.LiquidAssets.LiquidAssetsType == eLiquidAssetsType.NormalBank)
|
||||||
|
|
||||||
|
{
|
||||||
|
GLBank _GLBank = Session.FindObject<GLBank>(CriteriaOperator.Parse("IsEditable=True AND LiquidAssets_Main.Oid= ? AND DocumentNumber=?",
|
||||||
|
this.LiquidAssets.Oid, this.DocumentNumber));
|
||||||
|
if (_GLBank != null)
|
||||||
|
{
|
||||||
|
return _GLBank.GLRows;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return _GRLRows_Nothing;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return _GRLRows_Nothing;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
+87
@@ -0,0 +1,87 @@
|
|||||||
|
namespace Nuvolar.Module.BusinessObjects.Financial
|
||||||
|
{
|
||||||
|
partial class PCIEdit_VC
|
||||||
|
{
|
||||||
|
/// <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.aPCIEdit = new DevExpress.ExpressApp.Actions.SimpleAction(this.components);
|
||||||
|
this.aToTable_PCIEdit = new DevExpress.ExpressApp.Actions.SimpleAction(this.components);
|
||||||
|
this.aToTableD_PCIEdit = new DevExpress.ExpressApp.Actions.SimpleAction(this.components);
|
||||||
|
//
|
||||||
|
// aPCIEdit
|
||||||
|
//
|
||||||
|
this.aPCIEdit.Caption = "aPCIEdit";
|
||||||
|
this.aPCIEdit.ConfirmationMessage = null;
|
||||||
|
this.aPCIEdit.Id = "aPCIEdit";
|
||||||
|
this.aPCIEdit.TargetObjectType = typeof(Nuvolar.Module.PCIGroup);
|
||||||
|
this.aPCIEdit.TargetViewNesting = DevExpress.ExpressApp.Nesting.Root;
|
||||||
|
this.aPCIEdit.TargetViewType = DevExpress.ExpressApp.ViewType.ListView;
|
||||||
|
this.aPCIEdit.ToolTip = null;
|
||||||
|
this.aPCIEdit.TypeOfView = typeof(DevExpress.ExpressApp.ListView);
|
||||||
|
this.aPCIEdit.Execute += new DevExpress.ExpressApp.Actions.SimpleActionExecuteEventHandler(this.aPCIEdit_Execute);
|
||||||
|
//
|
||||||
|
// aToTable_PCIEdit
|
||||||
|
//
|
||||||
|
this.aToTable_PCIEdit.Caption = "aToTable_PCIEdit";
|
||||||
|
this.aToTable_PCIEdit.Category = "aToTable_PCIEdit";
|
||||||
|
this.aToTable_PCIEdit.ConfirmationMessage = null;
|
||||||
|
this.aToTable_PCIEdit.Id = "aToTable_PCIEdit";
|
||||||
|
this.aToTable_PCIEdit.TargetObjectType = typeof(Nuvolar.Module.BusinessObjects.Financial.PCIEdit);
|
||||||
|
this.aToTable_PCIEdit.TargetViewNesting = DevExpress.ExpressApp.Nesting.Root;
|
||||||
|
this.aToTable_PCIEdit.TargetViewType = DevExpress.ExpressApp.ViewType.DetailView;
|
||||||
|
this.aToTable_PCIEdit.ToolTip = null;
|
||||||
|
this.aToTable_PCIEdit.TypeOfView = typeof(DevExpress.ExpressApp.DetailView);
|
||||||
|
this.aToTable_PCIEdit.Execute += new DevExpress.ExpressApp.Actions.SimpleActionExecuteEventHandler(this.aToTable_PCIEdit_Execute);
|
||||||
|
//
|
||||||
|
// aToTableD_PCIEdit
|
||||||
|
//
|
||||||
|
this.aToTableD_PCIEdit.Caption = "aToTableD_PCIEdit";
|
||||||
|
this.aToTableD_PCIEdit.Category = "aToTableD_PCIEdit";
|
||||||
|
this.aToTableD_PCIEdit.ConfirmationMessage = null;
|
||||||
|
this.aToTableD_PCIEdit.Id = "aToTableD_PCIEdit";
|
||||||
|
this.aToTableD_PCIEdit.TargetObjectType = typeof(Nuvolar.Module.BusinessObjects.Financial.PCIEdit);
|
||||||
|
this.aToTableD_PCIEdit.TargetViewNesting = DevExpress.ExpressApp.Nesting.Root;
|
||||||
|
this.aToTableD_PCIEdit.TargetViewType = DevExpress.ExpressApp.ViewType.DetailView;
|
||||||
|
this.aToTableD_PCIEdit.ToolTip = null;
|
||||||
|
this.aToTableD_PCIEdit.TypeOfView = typeof(DevExpress.ExpressApp.DetailView);
|
||||||
|
//
|
||||||
|
// PCIEdit_VC
|
||||||
|
//
|
||||||
|
this.Actions.Add(this.aPCIEdit);
|
||||||
|
this.Actions.Add(this.aToTable_PCIEdit);
|
||||||
|
this.Actions.Add(this.aToTableD_PCIEdit);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
private DevExpress.ExpressApp.Actions.SimpleAction aPCIEdit;
|
||||||
|
private DevExpress.ExpressApp.Actions.SimpleAction aToTable_PCIEdit;
|
||||||
|
private DevExpress.ExpressApp.Actions.SimpleAction aToTableD_PCIEdit;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,63 @@
|
|||||||
|
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.ExpressApp.Xpo;
|
||||||
|
using DevExpress.Persistent.Base;
|
||||||
|
using DevExpress.Persistent.Validation;
|
||||||
|
|
||||||
|
namespace Nuvolar.Module.BusinessObjects.Financial
|
||||||
|
{
|
||||||
|
// For more typical usage scenarios, be sure to check out https://documentation.devexpress.com/eXpressAppFramework/clsDevExpressExpressAppViewControllertopic.aspx.
|
||||||
|
public partial class PCIEdit_VC : ViewController
|
||||||
|
{
|
||||||
|
public PCIEdit_VC()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
// 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 aPCIEdit_Execute(object sender, SimpleActionExecuteEventArgs e)
|
||||||
|
{
|
||||||
|
XPObjectSpace _onew = Application.CreateObjectSpace() as XPObjectSpace;
|
||||||
|
PCIEdit _PCIEdit = _onew.CreateObject<PCIEdit>();
|
||||||
|
ShowViewParameters _ShowViewParameters=new ShowViewParameters();
|
||||||
|
ShowViewSource _ShowViewSource = new ShowViewSource(Frame, null);
|
||||||
|
|
||||||
|
_ShowViewParameters.CreatedView = Application.CreateDetailView(_onew, "PCIEdit_DetailView", true, _PCIEdit);
|
||||||
|
_ShowViewParameters.NewWindowTarget = NewWindowTarget.MdiChild;
|
||||||
|
_ShowViewParameters.TargetWindow = TargetWindow.NewWindow;
|
||||||
|
Application.ShowViewStrategy.ShowView(_ShowViewParameters, _ShowViewSource);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void aToTable_PCIEdit_Execute(object sender, SimpleActionExecuteEventArgs e)
|
||||||
|
{
|
||||||
|
XPObjectSpace _ocur = View.ObjectSpace as XPObjectSpace;
|
||||||
|
PCIEdit _PCIEdit = View.SelectedObjects[0] as PCIEdit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,132 @@
|
|||||||
|
<?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="aPCIEdit.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>315, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="aToTable_PCIEdit.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>17, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="aToTableD_PCIEdit.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>162, 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,50 @@
|
|||||||
|
using System;
|
||||||
|
using DevExpress.Xpo;
|
||||||
|
using DevExpress.Persistent.Base;
|
||||||
|
using DevExpress.Persistent.BaseImpl;
|
||||||
|
|
||||||
|
namespace Nuvolar.Module.BusinessObjects.Migration
|
||||||
|
{
|
||||||
|
[DefaultClassOptions,NavigationItem(false),CreatableItem(false)]
|
||||||
|
|
||||||
|
public class MigrationLog : BaseObject
|
||||||
|
{
|
||||||
|
public MigrationLog(Session session)
|
||||||
|
: base(session)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
public override void AfterConstruction()
|
||||||
|
{
|
||||||
|
base.AfterConstruction();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private DateTime _DateCreated;
|
||||||
|
private User _UserCreated;
|
||||||
|
private string _ShortName;
|
||||||
|
private string _Description;
|
||||||
|
|
||||||
|
public DateTime DateCreated
|
||||||
|
{
|
||||||
|
get { return _DateCreated; }
|
||||||
|
set { SetPropertyValue(nameof(DateCreated), ref _DateCreated, value); }
|
||||||
|
}
|
||||||
|
public User UserCreated
|
||||||
|
{
|
||||||
|
get { return _UserCreated; }
|
||||||
|
set { SetPropertyValue(nameof(UserCreated), ref _UserCreated, value); }
|
||||||
|
}
|
||||||
|
public string ShortName
|
||||||
|
{
|
||||||
|
get { return _ShortName; }
|
||||||
|
set { SetPropertyValue(nameof(ShortName), ref _ShortName, value); }
|
||||||
|
}
|
||||||
|
[Size(-1)]
|
||||||
|
public string Description
|
||||||
|
{
|
||||||
|
get { return _Description; }
|
||||||
|
set { SetPropertyValue(nameof(Description), ref _Description, value); }
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,83 @@
|
|||||||
|
using System;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using DevExpress.Xpo;
|
||||||
|
using DevExpress.ExpressApp;
|
||||||
|
using System.ComponentModel;
|
||||||
|
using DevExpress.ExpressApp.DC;
|
||||||
|
using DevExpress.Data.Filtering;
|
||||||
|
using DevExpress.Persistent.Base;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using DevExpress.ExpressApp.Model;
|
||||||
|
using DevExpress.Persistent.BaseImpl;
|
||||||
|
using DevExpress.Persistent.Validation;
|
||||||
|
|
||||||
|
namespace Nuvolar.Module.BusinessObjects.Migration
|
||||||
|
{
|
||||||
|
[DefaultClassOptions,NavigationItem(false),CreatableItem(false)]
|
||||||
|
|
||||||
|
public class MigrationParameters : BaseObject
|
||||||
|
{ // Inherit from a different class to provide a custom primary key, concurrency and deletion behavior, etc. (https://documentation.devexpress.com/eXpressAppFramework/CustomDocument113146.aspx).
|
||||||
|
public MigrationParameters(Session session)
|
||||||
|
: base(session)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
public override void AfterConstruction()
|
||||||
|
{
|
||||||
|
base.AfterConstruction();
|
||||||
|
// Place your initialization code here (https://documentation.devexpress.com/eXpressAppFramework/CustomDocument112834.aspx).
|
||||||
|
}
|
||||||
|
private string _SQLServer;
|
||||||
|
private eSQLType _SQLType;
|
||||||
|
private string _SQLPort;
|
||||||
|
private string _SQLUser;
|
||||||
|
private string _SQLPassword;
|
||||||
|
private string _SQLDatabase;
|
||||||
|
|
||||||
|
private DateTime _DateFrom;
|
||||||
|
private DateTime _DateTo;
|
||||||
|
|
||||||
|
public string SQLServer
|
||||||
|
{
|
||||||
|
get { return _SQLServer; }
|
||||||
|
set { SetPropertyValue(nameof(SQLServer), ref _SQLServer, value); }
|
||||||
|
}
|
||||||
|
public eSQLType SQLType
|
||||||
|
{
|
||||||
|
get { return _SQLType; }
|
||||||
|
set { SetPropertyValue(nameof(SQLType), ref _SQLType, value); }
|
||||||
|
}
|
||||||
|
public string SQLPort
|
||||||
|
{
|
||||||
|
get { return _SQLPort; }
|
||||||
|
set { SetPropertyValue(nameof(SQLPort), ref _SQLPort, value); }
|
||||||
|
}
|
||||||
|
public string SQLUser
|
||||||
|
{
|
||||||
|
get { return _SQLUser; }
|
||||||
|
set { SetPropertyValue(nameof(SQLUser), ref _SQLUser, value); }
|
||||||
|
}
|
||||||
|
public string SQLPassword
|
||||||
|
{
|
||||||
|
get { return _SQLPassword; }
|
||||||
|
set { SetPropertyValue(nameof(SQLPassword), ref _SQLPassword, value); }
|
||||||
|
}
|
||||||
|
public string SQLDatabase
|
||||||
|
{
|
||||||
|
get { return _SQLDatabase; }
|
||||||
|
set { SetPropertyValue(nameof(SQLDatabase), ref _SQLDatabase, value); }
|
||||||
|
}
|
||||||
|
|
||||||
|
public DateTime DateFrom
|
||||||
|
{
|
||||||
|
get { return _DateFrom; }
|
||||||
|
set { SetPropertyValue(nameof(DateFrom), ref _DateFrom, value); }
|
||||||
|
}
|
||||||
|
public DateTime DateTo
|
||||||
|
{
|
||||||
|
get { return _DateTo; }
|
||||||
|
set { SetPropertyValue(nameof(DateTo), ref _DateTo, value); }
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,86 @@
|
|||||||
|
namespace Nuvolar.Module.BusinessObjects.Migration
|
||||||
|
{
|
||||||
|
partial class Migration_VC
|
||||||
|
{
|
||||||
|
/// <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.aMigrateBaseObjects = new DevExpress.ExpressApp.Actions.SimpleAction(this.components);
|
||||||
|
this.aMigrateInvoiceOut = new DevExpress.ExpressApp.Actions.SimpleAction(this.components);
|
||||||
|
this.aMigrateInvoiceIn = new DevExpress.ExpressApp.Actions.SimpleAction(this.components);
|
||||||
|
//
|
||||||
|
// aMigrateBaseObjects
|
||||||
|
//
|
||||||
|
this.aMigrateBaseObjects.Caption = "aMigrate Base Objects";
|
||||||
|
this.aMigrateBaseObjects.ConfirmationMessage = null;
|
||||||
|
this.aMigrateBaseObjects.Id = "aMigrateBaseObjects";
|
||||||
|
this.aMigrateBaseObjects.TargetObjectType = typeof(Nuvolar.Module.BusinessObjects.Migration.MigrationParameters);
|
||||||
|
this.aMigrateBaseObjects.TargetViewNesting = DevExpress.ExpressApp.Nesting.Root;
|
||||||
|
this.aMigrateBaseObjects.TargetViewType = DevExpress.ExpressApp.ViewType.DetailView;
|
||||||
|
this.aMigrateBaseObjects.ToolTip = null;
|
||||||
|
this.aMigrateBaseObjects.TypeOfView = typeof(DevExpress.ExpressApp.DetailView);
|
||||||
|
this.aMigrateBaseObjects.Execute += new DevExpress.ExpressApp.Actions.SimpleActionExecuteEventHandler(this.aMigrateBaseObjects_Execute);
|
||||||
|
//
|
||||||
|
// aMigrateInvoiceOut
|
||||||
|
//
|
||||||
|
this.aMigrateInvoiceOut.Caption = "aMigrate Invoice Out";
|
||||||
|
this.aMigrateInvoiceOut.ConfirmationMessage = null;
|
||||||
|
this.aMigrateInvoiceOut.Id = "aMigrateInvoiceOut";
|
||||||
|
this.aMigrateInvoiceOut.TargetObjectType = typeof(Nuvolar.Module.BusinessObjects.Migration.MigrationParameters);
|
||||||
|
this.aMigrateInvoiceOut.TargetViewNesting = DevExpress.ExpressApp.Nesting.Root;
|
||||||
|
this.aMigrateInvoiceOut.TargetViewType = DevExpress.ExpressApp.ViewType.DetailView;
|
||||||
|
this.aMigrateInvoiceOut.ToolTip = null;
|
||||||
|
this.aMigrateInvoiceOut.TypeOfView = typeof(DevExpress.ExpressApp.DetailView);
|
||||||
|
this.aMigrateInvoiceOut.Execute += new DevExpress.ExpressApp.Actions.SimpleActionExecuteEventHandler(this.aMigrateInvoiceOut_Execute);
|
||||||
|
//
|
||||||
|
// aMigrateInvoiceIn
|
||||||
|
//
|
||||||
|
this.aMigrateInvoiceIn.Caption = "aMigrate Invoice In";
|
||||||
|
this.aMigrateInvoiceIn.ConfirmationMessage = null;
|
||||||
|
this.aMigrateInvoiceIn.Id = "aMigrateInvoiceIn";
|
||||||
|
this.aMigrateInvoiceIn.TargetObjectType = typeof(Nuvolar.Module.BusinessObjects.Migration.MigrationParameters);
|
||||||
|
this.aMigrateInvoiceIn.TargetViewNesting = DevExpress.ExpressApp.Nesting.Root;
|
||||||
|
this.aMigrateInvoiceIn.TargetViewType = DevExpress.ExpressApp.ViewType.DetailView;
|
||||||
|
this.aMigrateInvoiceIn.ToolTip = null;
|
||||||
|
this.aMigrateInvoiceIn.TypeOfView = typeof(DevExpress.ExpressApp.DetailView);
|
||||||
|
this.aMigrateInvoiceIn.Execute += new DevExpress.ExpressApp.Actions.SimpleActionExecuteEventHandler(this.aMigrateInvoiceIn_Execute);
|
||||||
|
//
|
||||||
|
// Migration_VC
|
||||||
|
//
|
||||||
|
this.Actions.Add(this.aMigrateBaseObjects);
|
||||||
|
this.Actions.Add(this.aMigrateInvoiceOut);
|
||||||
|
this.Actions.Add(this.aMigrateInvoiceIn);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
private DevExpress.ExpressApp.Actions.SimpleAction aMigrateBaseObjects;
|
||||||
|
private DevExpress.ExpressApp.Actions.SimpleAction aMigrateInvoiceOut;
|
||||||
|
private DevExpress.ExpressApp.Actions.SimpleAction aMigrateInvoiceIn;
|
||||||
|
}
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,132 @@
|
|||||||
|
<?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="aMigrateBaseObjects.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>17, 56</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="aMigrateInvoiceOut.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>17, 95</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="aMigrateInvoiceIn.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>343, 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>
|
||||||
@@ -4,6 +4,9 @@
|
|||||||
<Actions>
|
<Actions>
|
||||||
<Action Id="aCreateDeliveryNoteOutfromStorageOut" Caption="Raktárközi szállítólevél készítése" />
|
<Action Id="aCreateDeliveryNoteOutfromStorageOut" Caption="Raktárközi szállítólevél készítése" />
|
||||||
<Action Id="aCreateNAVInvoiceReportXML" Caption="Lekérdezés futtatása" ConfirmationMessage="Niztosan lefuttatja a lekérdezést ?" />
|
<Action Id="aCreateNAVInvoiceReportXML" Caption="Lekérdezés futtatása" ConfirmationMessage="Niztosan lefuttatja a lekérdezést ?" />
|
||||||
|
<Action Id="aMigrateBaseObjects" Caption="Törzsadatok" />
|
||||||
|
<Action Id="aMigrateInvoiceIn" Caption="Bejövő számla" />
|
||||||
|
<Action Id="aMigrateInvoiceOut" Caption="Kimenő számla" />
|
||||||
<Action Id="aMoveOrderIn" Caption="Átvitel másik rendelésre" />
|
<Action Id="aMoveOrderIn" Caption="Átvitel másik rendelésre" />
|
||||||
<Action Id="aOpenWindowsExplorer" Caption="Windows Intéző megnyitása" />
|
<Action Id="aOpenWindowsExplorer" Caption="Windows Intéző megnyitása" />
|
||||||
<Action Id="aOrderInStorageOut" Caption="Kitárolás" />
|
<Action Id="aOrderInStorageOut" Caption="Kitárolás" />
|
||||||
@@ -12,10 +15,24 @@
|
|||||||
<Action Id="aPrintLastInvoice" Caption="Utolsó számla" />
|
<Action Id="aPrintLastInvoice" Caption="Utolsó számla" />
|
||||||
<Action Id="aRecreateCustomersOrderDocuments" Caption="Beszállítói dokumentum paraméter generálása" />
|
<Action Id="aRecreateCustomersOrderDocuments" Caption="Beszállítói dokumentum paraméter generálása" />
|
||||||
<Action Id="aStornoDeliveryNoteOutfromStorageOut" Caption="Szállítólevél stornírozása" />
|
<Action Id="aStornoDeliveryNoteOutfromStorageOut" Caption="Szállítólevél stornírozása" />
|
||||||
|
<Action Id="aToTable_PCIEdit" Caption="Sor rögzítése" />
|
||||||
|
<Action Id="aToTableD_PCIEdit" Caption="Sor törlése" />
|
||||||
</Actions>
|
</Actions>
|
||||||
</ActionDesign>
|
</ActionDesign>
|
||||||
<BOModel>
|
<BOModel>
|
||||||
<Class Name="DevExpress.Persistent.BaseImpl.ReportDataV2" Caption="Report V2" />
|
<Class Name="DevExpress.Persistent.BaseImpl.ReportDataV2" Caption="Report V2" />
|
||||||
|
<Class Name="Nuvolar.Module.BusinessObjects.Migration.MigrationParameters" Caption="Migrációs paraméter">
|
||||||
|
<OwnMembers>
|
||||||
|
<Member Name="DateFrom" Caption="Dátumtól" />
|
||||||
|
<Member Name="DateTo" Caption="Dátumig" />
|
||||||
|
<Member Name="SQLDatabase" Caption="Adatbázis" />
|
||||||
|
<Member Name="SQLPassword" Caption="Jelszó" />
|
||||||
|
<Member Name="SQLPort" Caption="Port" />
|
||||||
|
<Member Name="SQLServer" Caption="Szerver" />
|
||||||
|
<Member Name="SQLType" Caption="Tipus" />
|
||||||
|
<Member Name="SQLUser" Caption="Felhasználó" />
|
||||||
|
</OwnMembers>
|
||||||
|
</Class>
|
||||||
<Class Name="Nuvolar.Module.BusinessObjects.NewCustomersFrom" Caption="Saját cég + DEMO adatok" />
|
<Class Name="Nuvolar.Module.BusinessObjects.NewCustomersFrom" Caption="Saját cég + DEMO adatok" />
|
||||||
<Class Name="Nuvolar.Module.BusinessObjects.PCIGroupAdvance" Caption="Pontozási infó (előleg)">
|
<Class Name="Nuvolar.Module.BusinessObjects.PCIGroupAdvance" Caption="Pontozási infó (előleg)">
|
||||||
<OwnMembers>
|
<OwnMembers>
|
||||||
@@ -47,6 +64,28 @@
|
|||||||
<Member Name="Products" Caption="Termék" />
|
<Member Name="Products" Caption="Termék" />
|
||||||
</OwnMembers>
|
</OwnMembers>
|
||||||
</Class>
|
</Class>
|
||||||
|
<Class Name="Nuvolar.Module.CustomersGLParameters">
|
||||||
|
<OwnMembers>
|
||||||
|
<Member Name="DefaultforBusiness" Caption="Alapértelmezett" />
|
||||||
|
</OwnMembers>
|
||||||
|
</Class>
|
||||||
|
<Class Name="Nuvolar.Module.CustomersGLParametersYear">
|
||||||
|
<OwnMembers>
|
||||||
|
<Member Name="ChartOfAccountsAdvanceIn" Caption="Szállítói előleg fk. számla" />
|
||||||
|
<Member Name="ChartOfAccountsAdvanceOut" Caption="Vevői előleg fk. számla" />
|
||||||
|
</OwnMembers>
|
||||||
|
</Class>
|
||||||
|
<Class Name="Nuvolar.Module.LiquidAssets">
|
||||||
|
<OwnMembers>
|
||||||
|
<Member Name="LiquidAssetsRate" Caption="Év elejei árfolyam állapot" />
|
||||||
|
<Member Name="LiquidAssetsYear" Caption="Fk. számla paraméterek" />
|
||||||
|
<Member Name="NoDocumentNumber" Caption="Nincs dokumentum sorszám" />
|
||||||
|
<Member Name="NoPrint" Caption="Nincs nyomtatás" />
|
||||||
|
<Member Name="NoTimeCheck" Caption="Nincs idő ellenőrzés" />
|
||||||
|
<Member Name="ReportData" Caption="Nyomtatvány (I.)" />
|
||||||
|
<Member Name="ReportDataV2" Caption="Nyomtatvány (II.)" />
|
||||||
|
</OwnMembers>
|
||||||
|
</Class>
|
||||||
<Class Name="Nuvolar.Module.NAVInvoiceReport" Caption="Adóhatósági ellenőrzési adatszolgáltatás">
|
<Class Name="Nuvolar.Module.NAVInvoiceReport" Caption="Adóhatósági ellenőrzési adatszolgáltatás">
|
||||||
<OwnMembers>
|
<OwnMembers>
|
||||||
<Member Name="DocumentNumberBegin" Caption="Számlatömb előtag" />
|
<Member Name="DocumentNumberBegin" Caption="Számlatömb előtag" />
|
||||||
@@ -185,6 +224,7 @@
|
|||||||
<ActionContainerViewItem Id="@OrderInHeader_Transaction" Caption="@OrderInHeader_Transaction(98)" />
|
<ActionContainerViewItem Id="@OrderInHeader_Transaction" Caption="@OrderInHeader_Transaction(98)" />
|
||||||
</Items>
|
</Items>
|
||||||
</DetailView>
|
</DetailView>
|
||||||
|
<ListView Id="PCIEdit_GLRows_ListView" Caption="Pénzügyi rögzítések" />
|
||||||
<ListView Id="PCIGroupAdvance_ListView_0" Caption="Pontozási infó vevői (előleg)">
|
<ListView Id="PCIGroupAdvance_ListView_0" Caption="Pontozási infó vevői (előleg)">
|
||||||
<Filters>
|
<Filters>
|
||||||
<Filter Id="@Opened" Caption="Nyitott" />
|
<Filter Id="@Opened" Caption="Nyitott" />
|
||||||
|
|||||||
@@ -5,6 +5,9 @@
|
|||||||
<Action Id="aCreateDeliveryNoteOutfromStorageOut" ImageName="document_lock" Caption="Szállítólevél készítése" TargetObjectsCriteria="[StorageMoveType.MoveDirection] = ##Enum#Nuvolar.Module.eMoveDirection,eOutput# And [DeliveryNoteOutHeader] Is Null And [StorageMoveType.MoveType] In (##Enum#Nuvolar.Module.eMoveType,InventoryTransfer#, ##Enum#Nuvolar.Module.eMoveType,ReturnBack#)" />
|
<Action Id="aCreateDeliveryNoteOutfromStorageOut" ImageName="document_lock" Caption="Szállítólevél készítése" TargetObjectsCriteria="[StorageMoveType.MoveDirection] = ##Enum#Nuvolar.Module.eMoveDirection,eOutput# And [DeliveryNoteOutHeader] Is Null And [StorageMoveType.MoveType] In (##Enum#Nuvolar.Module.eMoveType,InventoryTransfer#, ##Enum#Nuvolar.Module.eMoveType,ReturnBack#)" />
|
||||||
<Action Id="aCreateNAVInvoiceReportXML" ImageName="Action_Export_ToXML" />
|
<Action Id="aCreateNAVInvoiceReportXML" ImageName="Action_Export_ToXML" />
|
||||||
<Action Id="aDeliveryNoteOutPrint_Divided" ImageName="MenuBar_Print" TargetObjectsCriteria="[DividedOriginal] In (2L, 1L)" />
|
<Action Id="aDeliveryNoteOutPrint_Divided" ImageName="MenuBar_Print" TargetObjectsCriteria="[DividedOriginal] In (2L, 1L)" />
|
||||||
|
<Action Id="aMigrateBaseObjects" ImageName="SolidGreenDataBar_32x32" />
|
||||||
|
<Action Id="aMigrateInvoiceIn" ImageName="CopyModelDifferences_32x32" />
|
||||||
|
<Action Id="aMigrateInvoiceOut" ImageName="CopyModelDifferences_32x32" />
|
||||||
<Action Id="aMoveOrderIn" ImageName="replace2" />
|
<Action Id="aMoveOrderIn" ImageName="replace2" />
|
||||||
<Action Id="aMoveOrderInBack" ImageName="selection_replace" TargetObjectsCriteria="[OrderInHeader.IsEditable] = True And [QTT_Invoiced] = 0.0 And [QTT_DeliveryNoted] > 0.0 And [QTT_DeliveryNoted] = [QTT_Storaged] And [DividedOriginal] = 1L" />
|
<Action Id="aMoveOrderInBack" ImageName="selection_replace" TargetObjectsCriteria="[OrderInHeader.IsEditable] = True And [QTT_Invoiced] = 0.0 And [QTT_DeliveryNoted] > 0.0 And [QTT_DeliveryNoted] = [QTT_Storaged] And [DividedOriginal] = 1L" />
|
||||||
<Action Id="aNAV_manageInvoice" Caption="NAV számla beküldés" />
|
<Action Id="aNAV_manageInvoice" Caption="NAV számla beküldés" />
|
||||||
@@ -16,6 +19,8 @@
|
|||||||
<Action Id="aPrintLastDeliveryNoteOut" ImageName="printer_information" />
|
<Action Id="aPrintLastDeliveryNoteOut" ImageName="printer_information" />
|
||||||
<Action Id="aPrintLastInvoice" ImageName="printer_information" />
|
<Action Id="aPrintLastInvoice" ImageName="printer_information" />
|
||||||
<Action Id="aStornoDeliveryNoteOutfromStorageOut" ImageName="document_delete" TargetObjectsCriteria="[DeliveryNoteOutHeader] Is Not Null And [DeliveryNoteOutHeader.IsStorno] = False And [StorageMoveType.MoveType] In (##Enum#Nuvolar.Module.eMoveType,InventoryTransfer#, ##Enum#Nuvolar.Module.eMoveType,ReturnBack#) And [StorageMoveType.MoveDirection] = ##Enum#Nuvolar.Module.eMoveDirection,eOutput#" />
|
<Action Id="aStornoDeliveryNoteOutfromStorageOut" ImageName="document_delete" TargetObjectsCriteria="[DeliveryNoteOutHeader] Is Not Null And [DeliveryNoteOutHeader.IsStorno] = False And [StorageMoveType.MoveType] In (##Enum#Nuvolar.Module.eMoveType,InventoryTransfer#, ##Enum#Nuvolar.Module.eMoveType,ReturnBack#) And [StorageMoveType.MoveDirection] = ##Enum#Nuvolar.Module.eMoveDirection,eOutput#" />
|
||||||
|
<Action Id="aToTable_PCIEdit" ImageName="table_add" />
|
||||||
|
<Action Id="aToTableD_PCIEdit" ImageName="table_delete" />
|
||||||
<Action Id="aViewPriceFixCustomers" Caption="Ármátrix áttekintése" ImageName="money2" />
|
<Action Id="aViewPriceFixCustomers" Caption="Ármátrix áttekintése" ImageName="money2" />
|
||||||
</Actions>
|
</Actions>
|
||||||
<ActionToContainerMapping>
|
<ActionToContainerMapping>
|
||||||
@@ -36,6 +41,11 @@
|
|||||||
</ActionToContainerMapping>
|
</ActionToContainerMapping>
|
||||||
</ActionDesign>
|
</ActionDesign>
|
||||||
<BOModel>
|
<BOModel>
|
||||||
|
<Class Name="Nuvolar.Module.BusinessObjects.Migration.MigrationParameters" ImageName="ChartType_StepArea3D">
|
||||||
|
<OwnMembers>
|
||||||
|
<Member Name="SQLPassword" IsPassword="True" />
|
||||||
|
</OwnMembers>
|
||||||
|
</Class>
|
||||||
<Class Name="Nuvolar.Module.BusinessObjects.NewCustomersFrom" ImageName="BO_User" />
|
<Class Name="Nuvolar.Module.BusinessObjects.NewCustomersFrom" ImageName="BO_User" />
|
||||||
<Class Name="Nuvolar.Module.BusinessObjects.PCIGroupAdvance" ImageName="link" />
|
<Class Name="Nuvolar.Module.BusinessObjects.PCIGroupAdvance" ImageName="link" />
|
||||||
<Class Name="Nuvolar.Module.BusinessObjects.Popup.OrderInMovePopup" ImageName="selection_replace" />
|
<Class Name="Nuvolar.Module.BusinessObjects.Popup.OrderInMovePopup" ImageName="selection_replace" />
|
||||||
@@ -91,6 +101,11 @@
|
|||||||
<Item Id="NAVInvoiceReport_ListView" ImageName="BO_Customer" ViewId="NAVInvoiceReport_DetailView" />
|
<Item Id="NAVInvoiceReport_ListView" ImageName="BO_Customer" ViewId="NAVInvoiceReport_DetailView" />
|
||||||
</Items>
|
</Items>
|
||||||
</Item>
|
</Item>
|
||||||
|
<Item Id="Default">
|
||||||
|
<Items>
|
||||||
|
<Item Id="MigrationParameters_ListView" ViewId="MigrationParameters_ListView" IsNewNode="True" />
|
||||||
|
</Items>
|
||||||
|
</Item>
|
||||||
</Items>
|
</Items>
|
||||||
</NavigationItems>
|
</NavigationItems>
|
||||||
<Options EnableHtmlFormatting="True" />
|
<Options EnableHtmlFormatting="True" />
|
||||||
@@ -286,6 +301,25 @@
|
|||||||
<ColumnInfo Id="NAV_queryDate" PropertyName="NAV_queryDate" Width="97" Index="13" IsNewNode="True" />
|
<ColumnInfo Id="NAV_queryDate" PropertyName="NAV_queryDate" Width="97" Index="13" IsNewNode="True" />
|
||||||
</Columns>
|
</Columns>
|
||||||
</ListView>
|
</ListView>
|
||||||
|
<ListView Id="LiquidAssets_ListView" AutoExpandAllGroups="True" IsGroupPanelVisible="True">
|
||||||
|
<Columns>
|
||||||
|
<ColumnInfo Id="NumberGeneratorIn" Index="-1" />
|
||||||
|
<ColumnInfo Id="NumberGeneratorOut" Index="-1" />
|
||||||
|
<ColumnInfo Id="ReportData" Index="-1" />
|
||||||
|
<ColumnInfo Id="ReportData_Return" Index="-1" />
|
||||||
|
<ColumnInfo Id="ReportDataV2" Index="-1" />
|
||||||
|
<ColumnInfo Id="ShortName" SortIndex="0" GroupIndex="-1" Index="0" Width="92" />
|
||||||
|
<ColumnInfo Id="Description" Index="1" Width="181" />
|
||||||
|
<ColumnInfo Id="LiquidAssetsType" Index="2" SortOrder="Ascending" GroupIndex="1" Width="122" />
|
||||||
|
<ColumnInfo Id="Active" Index="3" />
|
||||||
|
<ColumnInfo Id="CustomerFrom" SortOrder="Ascending" GroupIndex="0" Index="4" Width="106" />
|
||||||
|
<ColumnInfo Id="CurrencyName" Index="5" Width="94" />
|
||||||
|
<ColumnInfo Id="IsRounding" Index="6" Width="77" />
|
||||||
|
<ColumnInfo Id="NoPrint" Index="7" Width="58" />
|
||||||
|
<ColumnInfo Id="NoDocumentNumber" Index="8" Width="124" />
|
||||||
|
<ColumnInfo Id="NoTimeCheck" Index="9" Width="90" />
|
||||||
|
</Columns>
|
||||||
|
</ListView>
|
||||||
<DetailView Id="NAVInvoiceReport_DetailView">
|
<DetailView Id="NAVInvoiceReport_DetailView">
|
||||||
<Items>
|
<Items>
|
||||||
<ActionContainerViewItem Id="@NAVReport" ActionContainer="@NAVReport" IsNewNode="True" />
|
<ActionContainerViewItem Id="@NAVReport" ActionContainer="@NAVReport" IsNewNode="True" />
|
||||||
@@ -661,6 +695,93 @@
|
|||||||
<ColumnInfo Id="QTT_Will" Index="6" InLineEdit="True" InLineEditAutoCommit="False" />
|
<ColumnInfo Id="QTT_Will" Index="6" InLineEdit="True" InLineEditAutoCommit="False" />
|
||||||
</Columns>
|
</Columns>
|
||||||
</ListView>
|
</ListView>
|
||||||
|
<DetailView Id="PCIEdit_DetailView">
|
||||||
|
<Items>
|
||||||
|
<ActionContainerViewItem Id="@aToTable_PCIEdit" ActionContainer="aToTable_PCIEdit" Caption="@aToTable_PCIEdit(10)" IsNewNode="True" />
|
||||||
|
<ActionContainerViewItem Id="@aToTableD_PCIEdit" ActionContainer="aToTableD_PCIEdit" Caption="@aToTableD_PCIEdit(12)" IsNewNode="True" />
|
||||||
|
</Items>
|
||||||
|
<Layout>
|
||||||
|
<LayoutGroup Id="Main" RelativeSize="100">
|
||||||
|
<LayoutGroup Id="SimpleEditors" RelativeSize="16.647398843930635">
|
||||||
|
<LayoutGroup Id="PCIEdit" RelativeSize="100">
|
||||||
|
<LayoutItem Id="LiquidAssets" RelativeSize="22.222222222222221" />
|
||||||
|
<LayoutItem Id="PCIGroup" RelativeSize="16.666666666666668" />
|
||||||
|
<LayoutItem Id="DateExecution" RelativeSize="16.666666666666668" />
|
||||||
|
<LayoutGroup Id="Autod1545e5a-c1e7-4f95-b2e6-56b34ba21865" ShowCaption="False" Caption="Autod1545e5a-c1e7-4f95-b2e6-56b34ba21865(7)" Direction="Horizontal" Index="3" RelativeSize="44.444444444444443" IsNewNode="True">
|
||||||
|
<LayoutItem Id="DocumentNumber" ViewItem="DocumentNumber" Index="0" RelativeSize="74.663677130044846" IsNewNode="True" />
|
||||||
|
<LayoutGroup Id="Auto82a73893-36f2-460d-91a5-5194566e0b98" ShowCaption="False" Caption="" Index="1" RelativeSize="25.336322869955158" IsNewNode="True">
|
||||||
|
<LayoutItem Id="@aToTable_PCIEdit" ViewItem="@aToTable_PCIEdit" Index="0" RelativeSize="50" IsNewNode="True" />
|
||||||
|
<LayoutItem Id="@aToTableD_PCIEdit" ViewItem="@aToTableD_PCIEdit" Index="1" RelativeSize="50" IsNewNode="True" />
|
||||||
|
</LayoutGroup>
|
||||||
|
</LayoutGroup>
|
||||||
|
<LayoutItem Id="DocumentNumber" Removed="True" />
|
||||||
|
</LayoutGroup>
|
||||||
|
</LayoutGroup>
|
||||||
|
<LayoutGroup Id="GLRows_Group" Direction="Vertical" RelativeSize="83.352601156069369">
|
||||||
|
<LayoutItem Id="GLRows" RelativeSize="100" />
|
||||||
|
</LayoutGroup>
|
||||||
|
</LayoutGroup>
|
||||||
|
</Layout>
|
||||||
|
</DetailView>
|
||||||
|
<ListView Id="PCIEdit_GLRows_ListView" AllowDelete="False" AllowLink="False" AllowNew="False" AutoExpandAllGroups="True">
|
||||||
|
<Columns>
|
||||||
|
<ColumnInfo Id="AmountDEV" Index="-1" Width="85" />
|
||||||
|
<ColumnInfo Id="AmountDEVFIFO" Index="-1" Width="112" />
|
||||||
|
<ColumnInfo Id="AmountHUF" Index="-1" Width="86" />
|
||||||
|
<ColumnInfo Id="BankImportHeaderSumDetail" Index="-1" Width="155" />
|
||||||
|
<ColumnInfo Id="CashType" Index="-1" Width="0" />
|
||||||
|
<ColumnInfo Id="ConnectInfoAdvanced" Index="-1" Width="126" />
|
||||||
|
<ColumnInfo Id="Controlling" Index="-1" Width="83" />
|
||||||
|
<ColumnInfo Id="CostHolder" Index="-1" Width="82" />
|
||||||
|
<ColumnInfo Id="CostPlace" Index="-1" Width="0" />
|
||||||
|
<ColumnInfo Id="CreditAmountDEV" Index="-1" Width="86" />
|
||||||
|
<ColumnInfo Id="CreditAmountHUF" Index="-1" Width="87" />
|
||||||
|
<ColumnInfo Id="CreditChartOfAccounts" Index="-1" Width="130" />
|
||||||
|
<ColumnInfo Id="CurrencyRate" Index="-1" Width="63" />
|
||||||
|
<ColumnInfo Id="CurrencyRate2" Index="-1" Width="98" />
|
||||||
|
<ColumnInfo Id="DateExecution" Index="-1" Width="0" />
|
||||||
|
<ColumnInfo Id="DateVAT" Index="-1" Width="79" />
|
||||||
|
<ColumnInfo Id="DebitAmountDEV" Index="-1" Width="88" />
|
||||||
|
<ColumnInfo Id="DebitAmountHUF" Index="-1" Width="89" />
|
||||||
|
<ColumnInfo Id="DebitChartOfAccounts" Index="-1" />
|
||||||
|
<ColumnInfo Id="GLHeader" Index="-1" />
|
||||||
|
<ColumnInfo Id="GLRowsGUID" Index="-1" Width="85" />
|
||||||
|
<ColumnInfo Id="GLRowsType" Index="-1" Width="76" />
|
||||||
|
<ColumnInfo Id="GLRowsTypeVAT" Index="-1" Width="62" />
|
||||||
|
<ColumnInfo Id="ImportID" Index="-1" Width="66" />
|
||||||
|
<ColumnInfo Id="InAmountDEV2" Index="-1" Width="0" />
|
||||||
|
<ColumnInfo Id="JobNumberObjects" Index="-1" Width="109" />
|
||||||
|
<ColumnInfo Id="LiquidAssets" Index="-1" Width="77" />
|
||||||
|
<ColumnInfo Id="OutAmountDEV2" Index="-1" Width="72" />
|
||||||
|
<ColumnInfo Id="TransactionType" Index="-1" Width="103" />
|
||||||
|
<ColumnInfo Id="UniqueObjects" Index="-1" Width="101" />
|
||||||
|
<ColumnInfo Id="VAT" Index="-1" Width="60" />
|
||||||
|
<ColumnInfo Id="RowIndex" Index="0" Width="72" />
|
||||||
|
<ColumnInfo Id="Customer" Index="1" Width="64" />
|
||||||
|
<ColumnInfo Id="ConnectInfo" Index="2" Width="115" />
|
||||||
|
<ColumnInfo Id="PartnerType" Index="3" Width="88" />
|
||||||
|
<ColumnInfo Id="OutAmountHUF" Index="4" Width="92">
|
||||||
|
<Summary>
|
||||||
|
<ColumnSummaryItem Id="Summary0" SummaryType="Sum" IsNewNode="True" />
|
||||||
|
</Summary>
|
||||||
|
</ColumnInfo>
|
||||||
|
<ColumnInfo Id="InAmountHUF" Index="5" Width="91">
|
||||||
|
<Summary>
|
||||||
|
<ColumnSummaryItem Id="Summary0" SummaryType="Sum" IsNewNode="True" />
|
||||||
|
</Summary>
|
||||||
|
</ColumnInfo>
|
||||||
|
<ColumnInfo Id="OutAmountDEV" Index="6" Width="91">
|
||||||
|
<Summary>
|
||||||
|
<ColumnSummaryItem Id="Summary0" SummaryType="Sum" IsNewNode="True" />
|
||||||
|
</Summary>
|
||||||
|
</ColumnInfo>
|
||||||
|
<ColumnInfo Id="InAmountDEV" Index="7" Width="90">
|
||||||
|
<Summary>
|
||||||
|
<ColumnSummaryItem Id="Summary0" SummaryType="Sum" IsNewNode="True" />
|
||||||
|
</Summary>
|
||||||
|
</ColumnInfo>
|
||||||
|
</Columns>
|
||||||
|
</ListView>
|
||||||
<ListView Id="PCIGroupAdvance_ListView" AllowDelete="False" AllowNew="False" AutoExpandAllGroups="True" IsGroupPanelVisible="True" IsListViewProcess="False" GridViewGroupFormat="{1}">
|
<ListView Id="PCIGroupAdvance_ListView" AllowDelete="False" AllowNew="False" AutoExpandAllGroups="True" IsGroupPanelVisible="True" IsListViewProcess="False" GridViewGroupFormat="{1}">
|
||||||
<Columns>
|
<Columns>
|
||||||
<ColumnInfo Id="ConnectInfoAdvanced" Width="189" Index="0" SortOrder="None" GroupIndex="-1" />
|
<ColumnInfo Id="ConnectInfoAdvanced" Width="189" Index="0" SortOrder="None" GroupIndex="-1" />
|
||||||
|
|||||||
@@ -241,6 +241,21 @@
|
|||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="BusinessObjects\CostPlanner.cs" />
|
<Compile Include="BusinessObjects\CostPlanner.cs" />
|
||||||
<Compile Include="BusinessObjects\CostPlannerRows.cs" />
|
<Compile Include="BusinessObjects\CostPlannerRows.cs" />
|
||||||
|
<Compile Include="BusinessObjects\Financial\Partner Connection\PCIEdit.cs" />
|
||||||
|
<Compile Include="BusinessObjects\Financial\Partner Connection\PCIEdit_VC.cs">
|
||||||
|
<SubType>Component</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="BusinessObjects\Financial\Partner Connection\PCIEdit_VC.Designer.cs">
|
||||||
|
<DependentUpon>PCIEdit_VC.cs</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="BusinessObjects\Migration\MigrationLog.cs" />
|
||||||
|
<Compile Include="BusinessObjects\Migration\MigrationParameters.cs" />
|
||||||
|
<Compile Include="BusinessObjects\Migration\Migration_VC.cs">
|
||||||
|
<SubType>Component</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="BusinessObjects\Migration\Migration_VC.Designer.cs">
|
||||||
|
<DependentUpon>Migration_VC.cs</DependentUpon>
|
||||||
|
</Compile>
|
||||||
<Compile Include="BusinessObjects\NAVInvoiceReport.cs" />
|
<Compile Include="BusinessObjects\NAVInvoiceReport.cs" />
|
||||||
<Compile Include="BusinessObjects\NewCustomersFrom.cs" />
|
<Compile Include="BusinessObjects\NewCustomersFrom.cs" />
|
||||||
<Compile Include="BusinessObjects\nopCommerce\nopCParameters.cs" />
|
<Compile Include="BusinessObjects\nopCommerce\nopCParameters.cs" />
|
||||||
@@ -355,6 +370,12 @@
|
|||||||
<EmbeddedResource Include="BusinessObjects\Business\BusinessTransactions\Orders\OrderIn\OrderIn_VC.resx">
|
<EmbeddedResource Include="BusinessObjects\Business\BusinessTransactions\Orders\OrderIn\OrderIn_VC.resx">
|
||||||
<DependentUpon>OrderIn_VC.cs</DependentUpon>
|
<DependentUpon>OrderIn_VC.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="BusinessObjects\Financial\Partner Connection\PCIEdit_VC.resx">
|
||||||
|
<DependentUpon>PCIEdit_VC.cs</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="BusinessObjects\Migration\Migration_VC.resx">
|
||||||
|
<DependentUpon>Migration_VC.cs</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="BusinessObjects\PriceFixCustomers_VC.resx">
|
<EmbeddedResource Include="BusinessObjects\PriceFixCustomers_VC.resx">
|
||||||
<DependentUpon>PriceFixCustomers_VC.cs</DependentUpon>
|
<DependentUpon>PriceFixCustomers_VC.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
@@ -468,6 +489,10 @@
|
|||||||
</BootstrapperPackage>
|
</BootstrapperPackage>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\Nuvolar.Module.Win\Nuvolar.Module.Win.vbproj">
|
||||||
|
<Project>{98539DCF-BF11-4158-AEC0-4B008A404A0E}</Project>
|
||||||
|
<Name>Nuvolar.Module.Win</Name>
|
||||||
|
</ProjectReference>
|
||||||
<ProjectReference Include="..\Nuvolar.Module\Nuvolar.Module.vbproj">
|
<ProjectReference Include="..\Nuvolar.Module\Nuvolar.Module.vbproj">
|
||||||
<Project>{60bf693f-7dea-4cf6-85bd-ea96829d79dd}</Project>
|
<Project>{60bf693f-7dea-4cf6-85bd-ea96829d79dd}</Project>
|
||||||
<Name>Nuvolar.Module</Name>
|
<Name>Nuvolar.Module</Name>
|
||||||
|
|||||||
@@ -28,5 +28,5 @@ using System.Runtime.InteropServices;
|
|||||||
//
|
//
|
||||||
// You can specify all the values or you can default the Revision and Build Numbers
|
// You can specify all the values or you can default the Revision and Build Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
[assembly: AssemblyVersion("20.1.4.1000")]
|
[assembly: AssemblyVersion("20.1.4.1005")]
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1,2 @@
|
|||||||
|
DevExpress.ExpressApp.ViewController, DevExpress.ExpressApp.v20.1, Version=20.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
DevExpress.ExpressApp.SystemModule.SystemModule, DevExpress.ExpressApp.v20.1, Version=20.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
DevExpress.ExpressApp.SystemModule.SystemModule, DevExpress.ExpressApp.v20.1, Version=20.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
@@ -0,0 +1,55 @@
|
|||||||
|
namespace Nuvolar.Module.Win.CSharp.Controllers
|
||||||
|
{
|
||||||
|
partial class VATReport_VC
|
||||||
|
{
|
||||||
|
/// <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.aVATReport_Create60XML = new DevExpress.ExpressApp.Actions.SimpleAction(this.components);
|
||||||
|
//
|
||||||
|
// aVATReport_Create60XML
|
||||||
|
//
|
||||||
|
this.aVATReport_Create60XML.Caption = "aVATReport_Create60XML";
|
||||||
|
this.aVATReport_Create60XML.ConfirmationMessage = null;
|
||||||
|
this.aVATReport_Create60XML.Id = "aVATReport_Create60XML";
|
||||||
|
this.aVATReport_Create60XML.TargetObjectType = typeof(Nuvolar.Module.VATReport);
|
||||||
|
this.aVATReport_Create60XML.TargetViewType = DevExpress.ExpressApp.ViewType.DetailView;
|
||||||
|
this.aVATReport_Create60XML.ToolTip = null;
|
||||||
|
this.aVATReport_Create60XML.TypeOfView = typeof(DevExpress.ExpressApp.DetailView);
|
||||||
|
this.aVATReport_Create60XML.Execute += new DevExpress.ExpressApp.Actions.SimpleActionExecuteEventHandler(this.aVATReport_Create60XML_Execute);
|
||||||
|
//
|
||||||
|
// VATReport_VC
|
||||||
|
//
|
||||||
|
this.Actions.Add(this.aVATReport_Create60XML);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
internal DevExpress.ExpressApp.Actions.SimpleAction aVATReport_Create60XML;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,109 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Windows.Forms;
|
||||||
|
using System.Xml;
|
||||||
|
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.ExpressApp.Xpo;
|
||||||
|
using DevExpress.Persistent.Base;
|
||||||
|
using DevExpress.Persistent.Validation;
|
||||||
|
|
||||||
|
namespace Nuvolar.Module.Win.CSharp.Controllers
|
||||||
|
{
|
||||||
|
// For more typical usage scenarios, be sure to check out https://documentation.devexpress.com/eXpressAppFramework/clsDevExpressExpressAppViewControllertopic.aspx.
|
||||||
|
public partial class VATReport_VC : ViewController
|
||||||
|
{
|
||||||
|
public VATReport_VC()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
// 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 aVATReport_Create60XML_Execute(object sender, SimpleActionExecuteEventArgs e)
|
||||||
|
{
|
||||||
|
XPObjectSpace _ocur = View.ObjectSpace as XPObjectSpace;
|
||||||
|
VATReport _VATReport = View.SelectedObjects[0] as VATReport;
|
||||||
|
string _NAVProgramPath = "";
|
||||||
|
string _FileName60 = "";
|
||||||
|
|
||||||
|
SaveFileDialog _SaveFileDialog = new SaveFileDialog();
|
||||||
|
if (_NAVProgramPath != "")
|
||||||
|
{
|
||||||
|
_FileName60 = string.Format("{0}{1}.xml", Path.GetTempPath(), _VATReport.ShortName);
|
||||||
|
Create60XML(_ocur, _FileName60, _VATReport);
|
||||||
|
string _ShellCommand = String.Format("{0} \"cmd:open.xml {1}\" ", _NAVProgramPath, _FileName60);
|
||||||
|
ProcessStartInfo _ProcessStartInfo = new ProcessStartInfo();
|
||||||
|
_ProcessStartInfo.FileName = _ShellCommand;
|
||||||
|
|
||||||
|
Process.Start(_ProcessStartInfo);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_SaveFileDialog.Filter = "XML files (*.xml)|*.xml";
|
||||||
|
_SaveFileDialog.FileName = _VATReport.ShortName;
|
||||||
|
_SaveFileDialog.DefaultExt = "xml";
|
||||||
|
_SaveFileDialog.FilterIndex = 2;
|
||||||
|
_SaveFileDialog.RestoreDirectory = true;
|
||||||
|
|
||||||
|
if (_SaveFileDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
|
||||||
|
{
|
||||||
|
_FileName60 = _SaveFileDialog.FileName;
|
||||||
|
|
||||||
|
Create60XML(_ocur, _FileName60, _VATReport);
|
||||||
|
|
||||||
|
|
||||||
|
//MsgBox(String.Format("Az XML file ""{0}"" névvel a következő helyen került elmentésre:" + vbNewLine + "{1}", System.IO.Path.GetFileName(_SaveFileDialog.FileName), IO.Path.GetFullPath(_SaveFileDialog.FileName)), _
|
||||||
|
// MsgBoxStyle.OkOnly + MsgBoxStyle.Information, "Exportálás befejeződött!")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private void Create60XML(XPObjectSpace _ocur, string _FileName60, VATReport _VATReport)
|
||||||
|
{
|
||||||
|
XmlTextWriter _XmlTextWriter = new XmlTextWriter(_FileName60, System.Text.Encoding.UTF8);
|
||||||
|
_XmlTextWriter.WriteEndElement();
|
||||||
|
/* --Itt kezdődik ... -------------------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* -- Itt végződik ... ------------------------------------------------------------------------------------*/
|
||||||
|
_XmlTextWriter.Flush();
|
||||||
|
_XmlTextWriter.Close();
|
||||||
|
|
||||||
|
}
|
||||||
|
private void UploadField(XmlTextWriter _XmlTextWriter, string _FieldID, string _ValueString)
|
||||||
|
{
|
||||||
|
_XmlTextWriter.WriteStartElement("mezo");
|
||||||
|
_XmlTextWriter.WriteAttributeString("eazon", _FieldID);
|
||||||
|
_XmlTextWriter.WriteString(_ValueString);
|
||||||
|
_XmlTextWriter.WriteEndElement();
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -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="aVATReport_Create60XML.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>
|
||||||
@@ -3,6 +3,7 @@
|
|||||||
<ActionDesign>
|
<ActionDesign>
|
||||||
<Actions>
|
<Actions>
|
||||||
<Action Id="aNewCustomersFrom" Caption="Saját cég létrehozása" />
|
<Action Id="aNewCustomersFrom" Caption="Saját cég létrehozása" />
|
||||||
|
<Action Id="aVATReport_Create60XML" Caption="ÁFA bevallás, 60-as nyomtatvány" />
|
||||||
</Actions>
|
</Actions>
|
||||||
</ActionDesign>
|
</ActionDesign>
|
||||||
</Application>
|
</Application>
|
||||||
@@ -4,6 +4,7 @@
|
|||||||
<Actions>
|
<Actions>
|
||||||
<Action Id="aGIROInfo_ImportCSV" ImageName="BO_Security_Permission_Type" Caption="GIRO import CSV" />
|
<Action Id="aGIROInfo_ImportCSV" ImageName="BO_Security_Permission_Type" Caption="GIRO import CSV" />
|
||||||
<Action Id="aNewCustomersFrom" ImageName="BO_Organization" />
|
<Action Id="aNewCustomersFrom" ImageName="BO_Organization" />
|
||||||
|
<Action Id="aVATReport_Create60XML" ImageName="document_chart" />
|
||||||
</Actions>
|
</Actions>
|
||||||
</ActionDesign>
|
</ActionDesign>
|
||||||
<SchemaModules>
|
<SchemaModules>
|
||||||
|
|||||||
@@ -197,6 +197,12 @@
|
|||||||
<Compile Include="Controllers\Transfer_VC.Designer.cs">
|
<Compile Include="Controllers\Transfer_VC.Designer.cs">
|
||||||
<DependentUpon>Transfer_VC.cs</DependentUpon>
|
<DependentUpon>Transfer_VC.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Include="Controllers\VATReport_VC.cs">
|
||||||
|
<SubType>Component</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Controllers\VATReport_VC.Designer.cs">
|
||||||
|
<DependentUpon>VATReport_VC.cs</DependentUpon>
|
||||||
|
</Compile>
|
||||||
<Compile Include="DatabaseUpdate\Updater.cs" />
|
<Compile Include="DatabaseUpdate\Updater.cs" />
|
||||||
<Compile Include="Editor\GanttListEditor.cs" />
|
<Compile Include="Editor\GanttListEditor.cs" />
|
||||||
<Compile Include="Editor\GanttUserControl.cs">
|
<Compile Include="Editor\GanttUserControl.cs">
|
||||||
@@ -220,6 +226,9 @@
|
|||||||
<EmbeddedResource Include="Controllers\NewCustomersFromVC.resx">
|
<EmbeddedResource Include="Controllers\NewCustomersFromVC.resx">
|
||||||
<DependentUpon>NewCustomersFromVC.cs</DependentUpon>
|
<DependentUpon>NewCustomersFromVC.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Controllers\VATReport_VC.resx">
|
||||||
|
<DependentUpon>VATReport_VC.cs</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Editor\GanttUserControl.resx">
|
<EmbeddedResource Include="Editor\GanttUserControl.resx">
|
||||||
<DependentUpon>GanttUserControl.cs</DependentUpon>
|
<DependentUpon>GanttUserControl.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
|||||||
@@ -1 +1,2 @@
|
|||||||
|
DevExpress.ExpressApp.ViewController, DevExpress.ExpressApp.v20.1, Version=20.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
DevExpress.ExpressApp.SystemModule.SystemModule, DevExpress.ExpressApp.v20.1, Version=20.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
DevExpress.ExpressApp.SystemModule.SystemModule, DevExpress.ExpressApp.v20.1, Version=20.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
+44
-40
@@ -15,6 +15,7 @@ Imports System.IO
|
|||||||
Imports DevExpress.ExpressApp.CloneObject
|
Imports DevExpress.ExpressApp.CloneObject
|
||||||
Imports DevExpress.ExpressApp.SystemModule
|
Imports DevExpress.ExpressApp.SystemModule
|
||||||
Imports DevExpress.XtraSplashScreen
|
Imports DevExpress.XtraSplashScreen
|
||||||
|
Imports DevExpress.ExpressApp.Xpo
|
||||||
|
|
||||||
Structure VATReportNAVCodes_Structure
|
Structure VATReportNAVCodes_Structure
|
||||||
Public VATCode As String
|
Public VATCode As String
|
||||||
@@ -138,9 +139,9 @@ Public Class VATReportVC
|
|||||||
If _SaveFileDialog.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
|
If _SaveFileDialog.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
|
||||||
_FileName65 = _SaveFileDialog.FileName
|
_FileName65 = _SaveFileDialog.FileName
|
||||||
|
|
||||||
Me.Create65XML(_ocur, _FileName65, _VATReport)
|
Me.Create1465XML(_ocur, _FileName65, _VATReport)
|
||||||
|
|
||||||
MsgBox(String.Format("Az XML file ""{0}"" névvel a következõ helyen került elmentésre:" + vbNewLine + "{1}", System.IO.Path.GetFileName(_SaveFileDialog.FileName), IO.Path.GetFullPath(_SaveFileDialog.FileName)), _
|
MsgBox(String.Format("Az XML file ""{0}"" névvel a következõ helyen került elmentésre:" + vbNewLine + "{1}", System.IO.Path.GetFileName(_SaveFileDialog.FileName), IO.Path.GetFullPath(_SaveFileDialog.FileName)),
|
||||||
MsgBoxStyle.OkOnly + MsgBoxStyle.Information, "Exportálás befejezõdött!")
|
MsgBoxStyle.OkOnly + MsgBoxStyle.Information, "Exportálás befejezõdött!")
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
@@ -249,7 +250,7 @@ Public Class VATReportVC
|
|||||||
_XmlTextWriter.WriteString(Mid(_VATReport.DateFrom.Year.ToString, 3, 2) & "65A") 'Évente változhat !!!!!!
|
_XmlTextWriter.WriteString(Mid(_VATReport.DateFrom.Year.ToString, 3, 2) & "65A") 'Évente változhat !!!!!!
|
||||||
_XmlTextWriter.WriteEndElement()
|
_XmlTextWriter.WriteEndElement()
|
||||||
_XmlTextWriter.WriteStartElement("nyomtatvanyverzio")
|
_XmlTextWriter.WriteStartElement("nyomtatvanyverzio")
|
||||||
_XmlTextWriter.WriteString("2.0")
|
_XmlTextWriter.WriteString("4.0")
|
||||||
_XmlTextWriter.WriteEndElement()
|
_XmlTextWriter.WriteEndElement()
|
||||||
_XmlTextWriter.WriteStartElement("adozo")
|
_XmlTextWriter.WriteStartElement("adozo")
|
||||||
_XmlTextWriter.WriteStartElement("nev")
|
_XmlTextWriter.WriteStartElement("nev")
|
||||||
@@ -272,9 +273,9 @@ Public Class VATReportVC
|
|||||||
_XmlTextWriter.WriteEndElement()
|
_XmlTextWriter.WriteEndElement()
|
||||||
_XmlTextWriter.WriteStartElement("mezok")
|
_XmlTextWriter.WriteStartElement("mezok")
|
||||||
UploadField(_XmlTextWriter, "0A0001E001A", _VATReport.CustomersFrom.VATNumber.Replace("-", ""))
|
UploadField(_XmlTextWriter, "0A0001E001A", _VATReport.CustomersFrom.VATNumber.Replace("-", ""))
|
||||||
UploadField(_XmlTextWriter, "0A0001E005A", _VATReport.CustomersFrom.FullName)
|
UploadField(_XmlTextWriter, "0A0001E006A", _VATReport.CustomersFrom.FullName)
|
||||||
UploadField(_XmlTextWriter, "0A0001E006A", _VATReport.CustomersFrom.AdministratorName)
|
UploadField(_XmlTextWriter, "0A0001E007A", _VATReport.CustomersFrom.AdministratorName)
|
||||||
UploadField(_XmlTextWriter, "0A0001E007A", _VATReport.CustomersFrom.AdministratorPhoneNumber)
|
UploadField(_XmlTextWriter, "0A0001E008A", _VATReport.CustomersFrom.AdministratorPhoneNumber)
|
||||||
|
|
||||||
'UploadField(_XmlTextWriter, "0A0001F004A", "O")
|
'UploadField(_XmlTextWriter, "0A0001F004A", "O")
|
||||||
UploadField(_XmlTextWriter, "0A0001F006A", "H")
|
UploadField(_XmlTextWriter, "0A0001F006A", "H")
|
||||||
@@ -408,6 +409,9 @@ Public Class VATReportVC
|
|||||||
|
|
||||||
Dim _VATReportGroup_12_Payabels_DB_Collection As New XPCollection(Of VATReportDetail)(_ocur.Session, CriteriaOperator.Parse("VATReport=? AND VAT.KeyValuePercent=12 AND PartnerType=1 AND VAT.ClaimState=True and VAT.InversState<>True and VAT.ShortName = 'Komp 12%'", _VATReport))
|
Dim _VATReportGroup_12_Payabels_DB_Collection As New XPCollection(Of VATReportDetail)(_ocur.Session, CriteriaOperator.Parse("VATReport=? AND VAT.KeyValuePercent=12 AND PartnerType=1 AND VAT.ClaimState=True and VAT.InversState<>True and VAT.ShortName = 'Komp 12%'", _VATReport))
|
||||||
|
|
||||||
|
UploadFieldByCode(_ocur, _XmlTextWriter, "0C0001C0069BA", "0C0001C0069CA", CriteriaOperator.Parse("VATReport=? AND VAT.KeyValuePercent=0 AND VAT.InversKeyValue=0.27 AND VAT.InversState=True AND PartnerType=1 AND VAT.ClaimState=True", _VATReport))
|
||||||
|
UploadFieldByCode(_ocur, _XmlTextWriter, "0B0001C0014BA", "0B0001C0014CA", CriteriaOperator.Parse("VATReport=? AND VAT.KeyValuePercent=0 AND VAT.InversKeyValue=0.27 AND VAT.InversState=True AND PartnerType=0 AND VAT.ClaimState=True", _VATReport))
|
||||||
|
|
||||||
If _VATReportGroup_5_Payabels_Collection.Count > 0 Then
|
If _VATReportGroup_5_Payabels_Collection.Count > 0 Then
|
||||||
For Each _VATReportGroup As VATReportGroup In _VATReportGroup_5_Payabels_Collection
|
For Each _VATReportGroup As VATReportGroup In _VATReportGroup_5_Payabels_Collection
|
||||||
_SumAmountVATIn += _VATReportGroup.AmountVATIn
|
_SumAmountVATIn += _VATReportGroup.AmountVATIn
|
||||||
@@ -434,8 +438,10 @@ Public Class VATReportVC
|
|||||||
|
|
||||||
If _VATReportGroup_27_Payabels_Collection.Count > 0 Then
|
If _VATReportGroup_27_Payabels_Collection.Count > 0 Then
|
||||||
For Each _VATReportGroup As VATReportGroup In _VATReportGroup_27_Payabels_Collection
|
For Each _VATReportGroup As VATReportGroup In _VATReportGroup_27_Payabels_Collection
|
||||||
|
If _VATReportGroup.VAT.XML65AFieldIDBaseValueIn = "0C0001C0066BA" Then
|
||||||
_SumAmountVATIn += _VATReportGroup.AmountVATIn
|
_SumAmountVATIn += _VATReportGroup.AmountVATIn
|
||||||
_SumAmountVATInBase += _VATReportGroup.AmountVATInBase
|
_SumAmountVATInBase += _VATReportGroup.AmountVATInBase
|
||||||
|
End If
|
||||||
Next
|
Next
|
||||||
UploadField(_XmlTextWriter, "0C0001C0066BA", Math.Round(_SumAmountVATInBase / 1000, 0, MidpointRounding.AwayFromZero))
|
UploadField(_XmlTextWriter, "0C0001C0066BA", Math.Round(_SumAmountVATInBase / 1000, 0, MidpointRounding.AwayFromZero))
|
||||||
UploadField(_XmlTextWriter, "0C0001C0066CA", Math.Round(_SumAmountVATIn / 1000, 0, MidpointRounding.AwayFromZero))
|
UploadField(_XmlTextWriter, "0C0001C0066CA", Math.Round(_SumAmountVATIn / 1000, 0, MidpointRounding.AwayFromZero))
|
||||||
@@ -446,8 +452,10 @@ Public Class VATReportVC
|
|||||||
|
|
||||||
If _VATReportGroup_0_Payabels_Collection.Count > 0 Then
|
If _VATReportGroup_0_Payabels_Collection.Count > 0 Then
|
||||||
For Each _VATReportGroup As VATReportGroup In _VATReportGroup_0_Payabels_Collection
|
For Each _VATReportGroup As VATReportGroup In _VATReportGroup_0_Payabels_Collection
|
||||||
|
If _VATReportGroup.VAT.XML65AFieldIDBaseValueIn = "0C0001C0063BA" Then
|
||||||
_SumAmountVATIn += _VATReportGroup.AmountVATIn
|
_SumAmountVATIn += _VATReportGroup.AmountVATIn
|
||||||
_SumAmountVATInBase += _VATReportGroup.AmountVATInBase
|
_SumAmountVATInBase += _VATReportGroup.AmountVATInBase
|
||||||
|
End If
|
||||||
Next
|
Next
|
||||||
UploadField(_XmlTextWriter, "0C0001C0063BA", Math.Round(_SumAmountVATInBase / 1000, 0, MidpointRounding.AwayFromZero))
|
UploadField(_XmlTextWriter, "0C0001C0063BA", Math.Round(_SumAmountVATInBase / 1000, 0, MidpointRounding.AwayFromZero))
|
||||||
End If
|
End If
|
||||||
@@ -495,7 +503,7 @@ Public Class VATReportVC
|
|||||||
UploadField(_XmlTextWriter, "0H0001B002A", _VATReport.CustomersFrom.VATNumber.Replace("-", ""))
|
UploadField(_XmlTextWriter, "0H0001B002A", _VATReport.CustomersFrom.VATNumber.Replace("-", ""))
|
||||||
UploadField(_XmlTextWriter, "0H0001B004A", _VATReport.DateFrom.Year.ToString + _VATReport.DateFrom.Month.ToString("00") + _VATReport.DateFrom.Day.ToString("00"))
|
UploadField(_XmlTextWriter, "0H0001B004A", _VATReport.DateFrom.Year.ToString + _VATReport.DateFrom.Month.ToString("00") + _VATReport.DateFrom.Day.ToString("00"))
|
||||||
UploadField(_XmlTextWriter, "0H0001B005A", _VATReport.DateTo.Year.ToString + _VATReport.DateTo.Month.ToString("00") + _VATReport.DateTo.Day.ToString("00"))
|
UploadField(_XmlTextWriter, "0H0001B005A", _VATReport.DateTo.Year.ToString + _VATReport.DateTo.Month.ToString("00") + _VATReport.DateTo.Day.ToString("00"))
|
||||||
UploadField(_XmlTextWriter, "0H0001B006A", _VATReport.CustomersFrom.FullName)
|
'UploadField(_XmlTextWriter, "0H0001B006A", _VATReport.CustomersFrom.FullName)
|
||||||
|
|
||||||
'UploadField(_XmlTextWriter, "0H0001B001A", _VATReport.CustomersFrom.VATNumber.Replace("-", "")) '_VATReport.DateFrom.Year.ToString + _VATReport.DateFrom.Month.ToString("00") + _VATReport.DateFrom.Day.ToString("00"))
|
'UploadField(_XmlTextWriter, "0H0001B001A", _VATReport.CustomersFrom.VATNumber.Replace("-", "")) '_VATReport.DateFrom.Year.ToString + _VATReport.DateFrom.Month.ToString("00") + _VATReport.DateFrom.Day.ToString("00"))
|
||||||
' UploadField(_XmlTextWriter, "0H0001B002A", _VATReport.DateTo.Year.ToString + _VATReport.DateTo.Month.ToString("00") + _VATReport.DateTo.Day.ToString("00"))
|
' UploadField(_XmlTextWriter, "0H0001B002A", _VATReport.DateTo.Year.ToString + _VATReport.DateTo.Month.ToString("00") + _VATReport.DateTo.Day.ToString("00"))
|
||||||
@@ -811,6 +819,21 @@ Public Class VATReportVC
|
|||||||
_XmlTextWriter.Flush()
|
_XmlTextWriter.Flush()
|
||||||
_XmlTextWriter.Close()
|
_XmlTextWriter.Close()
|
||||||
End Sub
|
End Sub
|
||||||
|
Private Sub UploadFieldByCode(_ocur As XPObjectSpace, _XmlTextWriter As XmlWriter, _FieldIDBase As String, _FieldID As String, _CriteriaOperator As CriteriaOperator)
|
||||||
|
Dim _SumAmountVATInBase As Double = 0
|
||||||
|
Dim _SumAmountVATIn As Double = 0
|
||||||
|
Dim _VATReportGroup_Collection As New XPCollection(Of VATReportGroup)(_ocur.Session, _CriteriaOperator)
|
||||||
|
|
||||||
|
If _VATReportGroup_Collection.Count > 0 Then
|
||||||
|
For Each _VATReportGroup As VATReportGroup In _VATReportGroup_Collection
|
||||||
|
_SumAmountVATIn += _VATReportGroup.AmountVATIn
|
||||||
|
_SumAmountVATInBase += _VATReportGroup.AmountVATInBase
|
||||||
|
Next
|
||||||
|
UploadField(_XmlTextWriter, _FieldIDBase, Math.Round(_SumAmountVATInBase / 1000, 0, MidpointRounding.AwayFromZero))
|
||||||
|
UploadField(_XmlTextWriter, _FieldID, Math.Round(_SumAmountVATIn / 1000, 0, MidpointRounding.AwayFromZero))
|
||||||
|
End If
|
||||||
|
|
||||||
|
End Sub
|
||||||
Private Sub Create1465XML(_ocur As Xpo.XPObjectSpace, _FileName65 As String, _VATReport As VATReport)
|
Private Sub Create1465XML(_ocur As Xpo.XPObjectSpace, _FileName65 As String, _VATReport As VATReport)
|
||||||
|
|
||||||
On Error Resume Next
|
On Error Resume Next
|
||||||
@@ -828,7 +851,7 @@ Public Class VATReportVC
|
|||||||
_XmlTextWriter.WriteString("96b82602300312ce6edd8ef0c784ef4419ba4186")
|
_XmlTextWriter.WriteString("96b82602300312ce6edd8ef0c784ef4419ba4186")
|
||||||
_XmlTextWriter.WriteEndElement()
|
_XmlTextWriter.WriteEndElement()
|
||||||
_XmlTextWriter.WriteStartElement("programverzio")
|
_XmlTextWriter.WriteStartElement("programverzio")
|
||||||
_XmlTextWriter.WriteString("v.2.50.0")
|
_XmlTextWriter.WriteString("v.2.70.0")
|
||||||
_XmlTextWriter.WriteEndElement()
|
_XmlTextWriter.WriteEndElement()
|
||||||
_XmlTextWriter.WriteEndElement()
|
_XmlTextWriter.WriteEndElement()
|
||||||
_XmlTextWriter.WriteStartElement("nyomtatvany")
|
_XmlTextWriter.WriteStartElement("nyomtatvany")
|
||||||
@@ -837,7 +860,7 @@ Public Class VATReportVC
|
|||||||
_XmlTextWriter.WriteString(Mid(_VATReport.DateFrom.Year.ToString, 3, 2) & "65A") 'Évente változhat !!!!!!
|
_XmlTextWriter.WriteString(Mid(_VATReport.DateFrom.Year.ToString, 3, 2) & "65A") 'Évente változhat !!!!!!
|
||||||
_XmlTextWriter.WriteEndElement()
|
_XmlTextWriter.WriteEndElement()
|
||||||
_XmlTextWriter.WriteStartElement("nyomtatvanyverzio")
|
_XmlTextWriter.WriteStartElement("nyomtatvanyverzio")
|
||||||
_XmlTextWriter.WriteString("3.0")
|
_XmlTextWriter.WriteString("4.0")
|
||||||
_XmlTextWriter.WriteEndElement()
|
_XmlTextWriter.WriteEndElement()
|
||||||
_XmlTextWriter.WriteStartElement("adozo")
|
_XmlTextWriter.WriteStartElement("adozo")
|
||||||
_XmlTextWriter.WriteStartElement("nev")
|
_XmlTextWriter.WriteStartElement("nev")
|
||||||
@@ -859,30 +882,11 @@ Public Class VATReportVC
|
|||||||
_XmlTextWriter.WriteEndElement()
|
_XmlTextWriter.WriteEndElement()
|
||||||
_XmlTextWriter.WriteEndElement()
|
_XmlTextWriter.WriteEndElement()
|
||||||
_XmlTextWriter.WriteStartElement("mezok")
|
_XmlTextWriter.WriteStartElement("mezok")
|
||||||
|
|
||||||
UploadField(_XmlTextWriter, "0A0001E001A", _VATReport.CustomersFrom.VATNumber.Replace("-", ""))
|
UploadField(_XmlTextWriter, "0A0001E001A", _VATReport.CustomersFrom.VATNumber.Replace("-", ""))
|
||||||
UploadField(_XmlTextWriter, "0A0001E008A", _VATReport.CustomersFrom.FullName)
|
UploadField(_XmlTextWriter, "0A0001E006A", _VATReport.CustomersFrom.FullName)
|
||||||
' UploadField(_XmlTextWriter, "0A0001E009A", "X")
|
UploadField(_XmlTextWriter, "0A0001E007A", _VATReport.CustomersFrom.AdministratorName)
|
||||||
UploadField(_XmlTextWriter, "0A0001E011A", _VATReport.CustomersFrom.Address1.ZipPostal)
|
UploadField(_XmlTextWriter, "0A0001E008A", _VATReport.CustomersFrom.AdministratorPhoneNumber)
|
||||||
UploadField(_XmlTextWriter, "0A0001E012A", _VATReport.CustomersFrom.Address1.City)
|
|
||||||
UploadField(_XmlTextWriter, "0A0001E013A", _VATReport.CustomersFrom.Address1.Street)
|
|
||||||
UploadField(_XmlTextWriter, "0A0001E014A", _VATReport.CustomersFrom.PublicLandAddress1)
|
|
||||||
|
|
||||||
If _VATReport.CustomersFrom.Address2 IsNot Nothing Then
|
|
||||||
' UploadField(_XmlTextWriter, "0A0001E020A", "X")
|
|
||||||
UploadField(_XmlTextWriter, "0A0001E022A", _VATReport.CustomersFrom.Address2.ZipPostal)
|
|
||||||
UploadField(_XmlTextWriter, "0A0001E023A", _VATReport.CustomersFrom.Address2.City)
|
|
||||||
UploadField(_XmlTextWriter, "0A0001E024A", _VATReport.CustomersFrom.Address2.Street)
|
|
||||||
UploadField(_XmlTextWriter, "0A0001E025A", _VATReport.CustomersFrom.PublicLandAddress2)
|
|
||||||
Else
|
|
||||||
' UploadField(_XmlTextWriter, "0A0001E020A", "X")
|
|
||||||
UploadField(_XmlTextWriter, "0A0001E022A", _VATReport.CustomersFrom.Address1.ZipPostal)
|
|
||||||
UploadField(_XmlTextWriter, "0A0001E023A", _VATReport.CustomersFrom.Address1.City)
|
|
||||||
UploadField(_XmlTextWriter, "0A0001E024A", _VATReport.CustomersFrom.Address1.Street)
|
|
||||||
UploadField(_XmlTextWriter, "0A0001E025A", _VATReport.CustomersFrom.PublicLandAddress2)
|
|
||||||
End If
|
|
||||||
|
|
||||||
UploadField(_XmlTextWriter, "0A0001E031A", _VATReport.CustomersFrom.AdministratorName)
|
|
||||||
UploadField(_XmlTextWriter, "0A0001E032A", _VATReport.CustomersFrom.AdministratorPhoneNumber)
|
|
||||||
|
|
||||||
'UploadField(_XmlTextWriter, "0A0001F004A", "O")
|
'UploadField(_XmlTextWriter, "0A0001F004A", "O")
|
||||||
UploadField(_XmlTextWriter, "0A0001F005A", "H")
|
UploadField(_XmlTextWriter, "0A0001F005A", "H")
|
||||||
@@ -1099,7 +1103,7 @@ Public Class VATReportVC
|
|||||||
|
|
||||||
For Each _VATReportGroup As VATReportGroup In _VATReport.VATReportGroup
|
For Each _VATReportGroup As VATReportGroup In _VATReport.VATReportGroup
|
||||||
For _ik = 0 To _VATReportNAVCodes_Structure_Collection.Count - 1
|
For _ik = 0 To _VATReportNAVCodes_Structure_Collection.Count - 1
|
||||||
Dim _VATReportNAVCodes_Structure As VATReportNAVCodes_Structure = _
|
Dim _VATReportNAVCodes_Structure As VATReportNAVCodes_Structure =
|
||||||
CType(_VATReportNAVCodes_Structure_Collection(_ik), VATReportNAVCodes_Structure)
|
CType(_VATReportNAVCodes_Structure_Collection(_ik), VATReportNAVCodes_Structure)
|
||||||
|
|
||||||
If _VATReportNAVCodes_Structure.VATCode = _VATReportGroup.VAT.XML65AFieldIDBaseValueIn Then
|
If _VATReportNAVCodes_Structure.VATCode = _VATReportGroup.VAT.XML65AFieldIDBaseValueIn Then
|
||||||
@@ -1111,7 +1115,7 @@ Public Class VATReportVC
|
|||||||
|
|
||||||
|
|
||||||
For _ik = 0 To _VATReportNAVCodes_Structure_Collection.Count - 1
|
For _ik = 0 To _VATReportNAVCodes_Structure_Collection.Count - 1
|
||||||
Dim _VATReportNAVCodes_Structure As VATReportNAVCodes_Structure = _
|
Dim _VATReportNAVCodes_Structure As VATReportNAVCodes_Structure =
|
||||||
CType(_VATReportNAVCodes_Structure_Collection(_ik), VATReportNAVCodes_Structure)
|
CType(_VATReportNAVCodes_Structure_Collection(_ik), VATReportNAVCodes_Structure)
|
||||||
|
|
||||||
If _VATReportNAVCodes_Structure.VATCode = _VATReportGroup.VAT.XML65AFieldIDBaseValueOut Then
|
If _VATReportNAVCodes_Structure.VATCode = _VATReportGroup.VAT.XML65AFieldIDBaseValueOut Then
|
||||||
@@ -1122,7 +1126,7 @@ Public Class VATReportVC
|
|||||||
Next
|
Next
|
||||||
|
|
||||||
For _ik = 0 To _VATReportNAVCodes_Structure_Collection.Count - 1
|
For _ik = 0 To _VATReportNAVCodes_Structure_Collection.Count - 1
|
||||||
Dim _VATReportNAVCodes_Structure As VATReportNAVCodes_Structure = _
|
Dim _VATReportNAVCodes_Structure As VATReportNAVCodes_Structure =
|
||||||
CType(_VATReportNAVCodes_Structure_Collection(_ik), VATReportNAVCodes_Structure)
|
CType(_VATReportNAVCodes_Structure_Collection(_ik), VATReportNAVCodes_Structure)
|
||||||
|
|
||||||
If _VATReportNAVCodes_Structure.VATCode = _VATReportGroup.VAT.XML65AFieldIDValueIn Then
|
If _VATReportNAVCodes_Structure.VATCode = _VATReportGroup.VAT.XML65AFieldIDValueIn Then
|
||||||
@@ -1133,7 +1137,7 @@ Public Class VATReportVC
|
|||||||
Next
|
Next
|
||||||
|
|
||||||
For _ik = 0 To _VATReportNAVCodes_Structure_Collection.Count - 1
|
For _ik = 0 To _VATReportNAVCodes_Structure_Collection.Count - 1
|
||||||
Dim _VATReportNAVCodes_Structure As VATReportNAVCodes_Structure = _
|
Dim _VATReportNAVCodes_Structure As VATReportNAVCodes_Structure =
|
||||||
CType(_VATReportNAVCodes_Structure_Collection(_ik), VATReportNAVCodes_Structure)
|
CType(_VATReportNAVCodes_Structure_Collection(_ik), VATReportNAVCodes_Structure)
|
||||||
|
|
||||||
If _VATReportNAVCodes_Structure.VATCode = _VATReportGroup.VAT.XML65AFieldIDValueOut Then
|
If _VATReportNAVCodes_Structure.VATCode = _VATReportGroup.VAT.XML65AFieldIDValueOut Then
|
||||||
@@ -1144,7 +1148,7 @@ Public Class VATReportVC
|
|||||||
Next
|
Next
|
||||||
|
|
||||||
For _ik = 0 To _VATReportNAVCodes_Structure_Collection.Count - 1
|
For _ik = 0 To _VATReportNAVCodes_Structure_Collection.Count - 1
|
||||||
Dim _VATReportNAVCodes_Structure As VATReportNAVCodes_Structure = _
|
Dim _VATReportNAVCodes_Structure As VATReportNAVCodes_Structure =
|
||||||
CType(_VATReportNAVCodes_Structure_Collection(_ik), VATReportNAVCodes_Structure)
|
CType(_VATReportNAVCodes_Structure_Collection(_ik), VATReportNAVCodes_Structure)
|
||||||
|
|
||||||
If _VATReportNAVCodes_Structure.VATCode = _VATReportGroup.VAT.XML65AFieldIDBaseValueInSum Then
|
If _VATReportNAVCodes_Structure.VATCode = _VATReportGroup.VAT.XML65AFieldIDBaseValueInSum Then
|
||||||
@@ -1155,7 +1159,7 @@ Public Class VATReportVC
|
|||||||
Next
|
Next
|
||||||
|
|
||||||
For _ik = 0 To _VATReportNAVCodes_Structure_Collection.Count - 1
|
For _ik = 0 To _VATReportNAVCodes_Structure_Collection.Count - 1
|
||||||
Dim _VATReportNAVCodes_Structure As VATReportNAVCodes_Structure = _
|
Dim _VATReportNAVCodes_Structure As VATReportNAVCodes_Structure =
|
||||||
CType(_VATReportNAVCodes_Structure_Collection(_ik), VATReportNAVCodes_Structure)
|
CType(_VATReportNAVCodes_Structure_Collection(_ik), VATReportNAVCodes_Structure)
|
||||||
|
|
||||||
If _VATReportNAVCodes_Structure.VATCode = _VATReportGroup.VAT.XML65AFieldIDBaseValueOutSum Then
|
If _VATReportNAVCodes_Structure.VATCode = _VATReportGroup.VAT.XML65AFieldIDBaseValueOutSum Then
|
||||||
@@ -1166,7 +1170,7 @@ Public Class VATReportVC
|
|||||||
Next
|
Next
|
||||||
|
|
||||||
For _ik = 0 To _VATReportNAVCodes_Structure_Collection.Count - 1
|
For _ik = 0 To _VATReportNAVCodes_Structure_Collection.Count - 1
|
||||||
Dim _VATReportNAVCodes_Structure As VATReportNAVCodes_Structure = _
|
Dim _VATReportNAVCodes_Structure As VATReportNAVCodes_Structure =
|
||||||
CType(_VATReportNAVCodes_Structure_Collection(_ik), VATReportNAVCodes_Structure)
|
CType(_VATReportNAVCodes_Structure_Collection(_ik), VATReportNAVCodes_Structure)
|
||||||
|
|
||||||
If _VATReportNAVCodes_Structure.VATCode = _VATReportGroup.VAT.XML65AFieldIDValueInSum Then
|
If _VATReportNAVCodes_Structure.VATCode = _VATReportGroup.VAT.XML65AFieldIDValueInSum Then
|
||||||
@@ -1177,7 +1181,7 @@ Public Class VATReportVC
|
|||||||
Next
|
Next
|
||||||
|
|
||||||
For _ik = 0 To _VATReportNAVCodes_Structure_Collection.Count - 1
|
For _ik = 0 To _VATReportNAVCodes_Structure_Collection.Count - 1
|
||||||
Dim _VATReportNAVCodes_Structure As VATReportNAVCodes_Structure = _
|
Dim _VATReportNAVCodes_Structure As VATReportNAVCodes_Structure =
|
||||||
CType(_VATReportNAVCodes_Structure_Collection(_ik), VATReportNAVCodes_Structure)
|
CType(_VATReportNAVCodes_Structure_Collection(_ik), VATReportNAVCodes_Structure)
|
||||||
|
|
||||||
If _VATReportNAVCodes_Structure.VATCode = _VATReportGroup.VAT.XML65AFieldIDValueOutSum Then
|
If _VATReportNAVCodes_Structure.VATCode = _VATReportGroup.VAT.XML65AFieldIDValueOutSum Then
|
||||||
|
|||||||
@@ -147,7 +147,7 @@ Public Class InLineEditVC
|
|||||||
EnableInlineEdit(gridColumn)
|
EnableInlineEdit(gridColumn)
|
||||||
End Select
|
End Select
|
||||||
|
|
||||||
Case "ImmovablesPriceListHeader_ImmovablesPriceListRowsA_ListView", "ImmovablesPriceListHeader_ImmovablesPriceListRowsO_ListView", _
|
Case "ImmovablesPriceListHeader_ImmovablesPriceListRowsA_ListView", "ImmovablesPriceListHeader_ImmovablesPriceListRowsO_ListView",
|
||||||
"ImmovablesPriceListHeader_ImmovablesPriceListRowsG_ListView", "ImmovablesPriceListHeader_ImmovablesPriceListRowsC_ListView"
|
"ImmovablesPriceListHeader_ImmovablesPriceListRowsG_ListView", "ImmovablesPriceListHeader_ImmovablesPriceListRowsC_ListView"
|
||||||
Select Case name
|
Select Case name
|
||||||
Case "ListPriceBruttoDEV", "ListPriceBruttoHUF", "ListPriceBruttoDEVRent", "ListPriceBruttoHUFRent"
|
Case "ListPriceBruttoDEV", "ListPriceBruttoHUF", "ListPriceBruttoDEVRent", "ListPriceBruttoHUFRent"
|
||||||
@@ -384,7 +384,7 @@ Public Class InLineEditVC
|
|||||||
EnableInlineEdit(gridColumn)
|
EnableInlineEdit(gridColumn)
|
||||||
End Select
|
End Select
|
||||||
|
|
||||||
Case "StorageInfromDeliveryNoteInRowsHeader_StorageInfromDeliveryNoteInRowsRows_ListView", _
|
Case "StorageInfromDeliveryNoteInRowsHeader_StorageInfromDeliveryNoteInRowsRows_ListView",
|
||||||
"DeliveryNoteInFromOrderOutRowsHeader_DeliveryNoteInFromOrderOutRowsRows_ListView"
|
"DeliveryNoteInFromOrderOutRowsHeader_DeliveryNoteInFromOrderOutRowsRows_ListView"
|
||||||
Select Case name
|
Select Case name
|
||||||
Case "QTT_Process"
|
Case "QTT_Process"
|
||||||
@@ -504,12 +504,20 @@ Public Class InLineEditVC
|
|||||||
'End If
|
'End If
|
||||||
If modelColumn IsNot Nothing Then
|
If modelColumn IsNot Nothing Then
|
||||||
If modelColumn.HideValueIfZero = True Then
|
If modelColumn.HideValueIfZero = True Then
|
||||||
|
Try
|
||||||
If e.Value = 0 Then e.DisplayText = ""
|
If e.Value = 0 Then e.DisplayText = ""
|
||||||
|
Catch
|
||||||
|
|
||||||
|
End Try
|
||||||
|
|
||||||
|
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
|
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub TreeListEditor_CellValueChanged(sender As Object, e As DevExpress.XtraTreeList.CellValueChangedEventArgs)
|
Private Sub TreeListEditor_CellValueChanged(sender As Object, e As DevExpress.XtraTreeList.CellValueChangedEventArgs)
|
||||||
|
|||||||
+5
@@ -57,6 +57,11 @@ Public Enum eCashType
|
|||||||
eNormal = 1
|
eNormal = 1
|
||||||
eCorrectionHUF = 2
|
eCorrectionHUF = 2
|
||||||
End Enum
|
End Enum
|
||||||
|
''' <summary>
|
||||||
|
''' 1: Szállító
|
||||||
|
''' 0: Vevő
|
||||||
|
''' -1: Nincs beállítva
|
||||||
|
''' </summary>
|
||||||
Public Enum ePartnerType
|
Public Enum ePartnerType
|
||||||
eNotSet = -1
|
eNotSet = -1
|
||||||
ePayabels = 1 'Szállítók
|
ePayabels = 1 'Szállítók
|
||||||
|
|||||||
+14
@@ -147,6 +147,20 @@ Partial Class VATReportVC
|
|||||||
Me.aViewAttachments_VATCompareDetail.TargetViewType = DevExpress.ExpressApp.ViewType.ListView
|
Me.aViewAttachments_VATCompareDetail.TargetViewType = DevExpress.ExpressApp.ViewType.ListView
|
||||||
Me.aViewAttachments_VATCompareDetail.ToolTip = Nothing
|
Me.aViewAttachments_VATCompareDetail.ToolTip = Nothing
|
||||||
Me.aViewAttachments_VATCompareDetail.TypeOfView = GetType(DevExpress.ExpressApp.ListView)
|
Me.aViewAttachments_VATCompareDetail.TypeOfView = GetType(DevExpress.ExpressApp.ListView)
|
||||||
|
'
|
||||||
|
'VATReportVC
|
||||||
|
'
|
||||||
|
Me.Actions.Add(Me.aGenerateVATReport)
|
||||||
|
Me.Actions.Add(Me.aViewRegistry_VAT)
|
||||||
|
Me.Actions.Add(Me.aViewAttachments_VAT)
|
||||||
|
Me.Actions.Add(Me.aViewRegistry_VATNoPay)
|
||||||
|
Me.Actions.Add(Me.aVATReportPrint)
|
||||||
|
Me.Actions.Add(Me.aViewAttachments_VATNoPay)
|
||||||
|
Me.Actions.Add(Me.aVATClosePreviewPDF)
|
||||||
|
Me.Actions.Add(Me.aVATCloseBack)
|
||||||
|
Me.Actions.Add(Me.aVATClose)
|
||||||
|
Me.Actions.Add(Me.aGenerateVATCompare)
|
||||||
|
Me.Actions.Add(Me.aViewAttachments_VATCompareDetail)
|
||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
Friend WithEvents aGenerateVATReport As DevExpress.ExpressApp.Actions.SimpleAction
|
Friend WithEvents aGenerateVATReport As DevExpress.ExpressApp.Actions.SimpleAction
|
||||||
|
|||||||
+20
-20
@@ -118,37 +118,37 @@
|
|||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<metadata name="aGenerateVATReport.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="aGenerateVATReport.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>17, 134</value>
|
<value>306, 17</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
<metadata name="aViewRegistry_VAT.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="aViewRegistry_VAT.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>17, 368</value>
|
<value>607, 17</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
<metadata name="aViewAttachments_VAT.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="aViewAttachments_VAT.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>17, 329</value>
|
<value>762, 17</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
<metadata name="aViewRegistry_VATNoPay.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="aViewRegistry_VATNoPay.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>17, 251</value>
|
|
||||||
</metadata>
|
|
||||||
<metadata name="aVATReportPrint.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
|
||||||
<value>17, 290</value>
|
|
||||||
</metadata>
|
|
||||||
<metadata name="aViewAttachments_VATNoPay.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
|
||||||
<value>17, 212</value>
|
|
||||||
</metadata>
|
|
||||||
<metadata name="aVATClosePreviewPDF.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
|
||||||
<value>17, 173</value>
|
|
||||||
</metadata>
|
|
||||||
<metadata name="aVATCloseBack.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
|
||||||
<value>17, 95</value>
|
|
||||||
</metadata>
|
|
||||||
<metadata name="aVATClose.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
|
||||||
<value>17, 56</value>
|
<value>17, 56</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
<metadata name="aVATReportPrint.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>685, 56</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="aViewAttachments_VATNoPay.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>208, 56</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="aVATClosePreviewPDF.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>942, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="aVATCloseBack.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>472, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="aVATClose.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>17, 17</value>
|
||||||
|
</metadata>
|
||||||
<metadata name="aGenerateVATCompare.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="aGenerateVATCompare.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>152, 56</value>
|
<value>127, 17</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
<metadata name="aViewAttachments_VATCompareDetail.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="aViewAttachments_VATCompareDetail.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>172, 368</value>
|
<value>424, 56</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
<metadata name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
<metadata name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
<value>False</value>
|
<value>False</value>
|
||||||
|
|||||||
@@ -904,6 +904,8 @@
|
|||||||
</Class>
|
</Class>
|
||||||
<Class Name="DevExpress.Persistent.BaseImpl.Country" Caption="Ország">
|
<Class Name="DevExpress.Persistent.BaseImpl.Country" Caption="Ország">
|
||||||
<OwnMembers>
|
<OwnMembers>
|
||||||
|
<Member Name="EUMember" Caption="EU ?" />
|
||||||
|
<Member Name="ISOCode" Caption="ISO kód" />
|
||||||
<Member Name="Name" Caption="Név" />
|
<Member Name="Name" Caption="Név" />
|
||||||
<Member Name="Name_GB" Caption="Név (angol)" />
|
<Member Name="Name_GB" Caption="Név (angol)" />
|
||||||
<Member Name="PhoneCode" Caption="Előhívószám" />
|
<Member Name="PhoneCode" Caption="Előhívószám" />
|
||||||
|
|||||||
@@ -1075,8 +1075,10 @@
|
|||||||
<Class Name="DevExpress.Persistent.BaseImpl.BasicUser" IsCloneable="True" />
|
<Class Name="DevExpress.Persistent.BaseImpl.BasicUser" IsCloneable="True" />
|
||||||
<Class Name="DevExpress.Persistent.BaseImpl.Country">
|
<Class Name="DevExpress.Persistent.BaseImpl.Country">
|
||||||
<OwnMembers>
|
<OwnMembers>
|
||||||
<Member Name="Name_GB" IsCustom="True" Type="System.String" IsNewNode="True" />
|
<Member Name="EUMember" IsCustom="True" IsCalculated="False" Type="System.Boolean" IsNewNode="True" />
|
||||||
<Member Name="ShortName" IsCustom="True" Type="System.String" IsNewNode="True" />
|
<Member Name="ISOCode" IsCustom="True" IsCalculated="False" Type="System.String" Size="100" IsNewNode="True" />
|
||||||
|
<Member Name="Name_GB" IsCustom="True" Type="System.String" Size="200" RowCount="0" IsNewNode="True" />
|
||||||
|
<Member Name="ShortName" IsCustom="True" Type="System.String" RowCount="0" Size="200" IsNewNode="True" />
|
||||||
</OwnMembers>
|
</OwnMembers>
|
||||||
</Class>
|
</Class>
|
||||||
<Class Name="DevExpress.Persistent.BaseImpl.Organization">
|
<Class Name="DevExpress.Persistent.BaseImpl.Organization">
|
||||||
@@ -3412,7 +3414,14 @@
|
|||||||
<Class Name="Nuvolar.Module.Units" ImageName="weight2" SISGroup1="Általános törzs" SISGroup2="Mennyiségi egység" />
|
<Class Name="Nuvolar.Module.Units" ImageName="weight2" SISGroup1="Általános törzs" SISGroup2="Mennyiségi egység" />
|
||||||
<Class Name="Nuvolar.Module.UNList" ImageName="potion_red" />
|
<Class Name="Nuvolar.Module.UNList" ImageName="potion_red" />
|
||||||
<Class Name="Nuvolar.Module.UrgentOption" ImageName="clock_reset" SISGroup1="Üzleti törzs" SISGroup2="Sűrgősségi törzs" />
|
<Class Name="Nuvolar.Module.UrgentOption" ImageName="clock_reset" SISGroup1="Üzleti törzs" SISGroup2="Sűrgősségi törzs" />
|
||||||
<Class Name="Nuvolar.Module.VAT" ImageName="press" SISGroup1="Pénzügy, számvitel" SISGroup2="ÁFA" IsCloneable="True" />
|
<Class Name="Nuvolar.Module.VAT" ImageName="press" SISGroup1="Pénzügy, számvitel" SISGroup2="ÁFA" IsCloneable="True">
|
||||||
|
<OwnMembers>
|
||||||
|
<Member Name="InversKeyValue" HideValueIfZero="True" />
|
||||||
|
<Member Name="KeyValue" HideValueIfZero="True" />
|
||||||
|
<Member Name="KeyValuePercent" HideValueIfZero="True" />
|
||||||
|
<Member Name="VATBag" Caption="ÁFA csomag" />
|
||||||
|
</OwnMembers>
|
||||||
|
</Class>
|
||||||
<Class Name="Nuvolar.Module.VATCompare" ImageName="BO_Report" />
|
<Class Name="Nuvolar.Module.VATCompare" ImageName="BO_Report" />
|
||||||
<Class Name="Nuvolar.Module.VATCompareDetail" ImageName="BO_Report">
|
<Class Name="Nuvolar.Module.VATCompareDetail" ImageName="BO_Report">
|
||||||
<OwnMembers>
|
<OwnMembers>
|
||||||
@@ -4583,8 +4592,8 @@
|
|||||||
</NavigationItems>
|
</NavigationItems>
|
||||||
<Options NAVProgramPath="c:\NAV\abevjava_start.bat" />
|
<Options NAVProgramPath="c:\NAV\abevjava_start.bat" />
|
||||||
<SchemaModules>
|
<SchemaModules>
|
||||||
<SchemaModule Name="CloneObjectModule" Version="17.2.3.0" IsNewNode="True" />
|
<SchemaModule Name="CloneObjectModule" Version="20.1.4.0" IsNewNode="True" />
|
||||||
<SchemaModule Name="SystemModule" Version="17.2.3.0" IsNewNode="True" />
|
<SchemaModule Name="SystemModule" Version="20.1.4.0" IsNewNode="True" />
|
||||||
</SchemaModules>
|
</SchemaModules>
|
||||||
<Validation>
|
<Validation>
|
||||||
<Contexts>
|
<Contexts>
|
||||||
@@ -15826,7 +15835,7 @@
|
|||||||
</LayoutGroup>
|
</LayoutGroup>
|
||||||
</Layout>
|
</Layout>
|
||||||
</DetailView>
|
</DetailView>
|
||||||
<ListView Id="GLRows_ListView" IsGroupPanelVisible="True" ShowAutoFilterRow="True" MasterDetailMode="ListViewOnly" AutoExpandAllGroups="True" Criteria="GLHeader.IsEditable=False">
|
<ListView Id="GLRows_ListView" IsGroupPanelVisible="True" ShowAutoFilterRow="True" MasterDetailMode="ListViewOnly" AutoExpandAllGroups="True" Criteria="GLHeader.IsEditable=False" DataAccessMode="InstantFeedback">
|
||||||
<Columns>
|
<Columns>
|
||||||
<ColumnInfo Id="GLHeader" Removed="True" />
|
<ColumnInfo Id="GLHeader" Removed="True" />
|
||||||
</Columns>
|
</Columns>
|
||||||
@@ -15846,7 +15855,7 @@
|
|||||||
<Variant Id="@NoDetails" ViewID="GLRows_ListView_Error_NoDetails" IsNewNode="True" />
|
<Variant Id="@NoDetails" ViewID="GLRows_ListView_Error_NoDetails" IsNewNode="True" />
|
||||||
</Variants>
|
</Variants>
|
||||||
</ListView>
|
</ListView>
|
||||||
<ListView Id="GLRows_ListView_Account" IsGroupPanelVisible="True" ShowAutoFilterRow="True" ClassName="Nuvolar.Module.GLRows" AutoExpandAllGroups="True" Criteria="GLHeader.GLDocumentType=1 and GLHeader.IsEditable=False" AllowDelete="False" AllowNew="False" DefaultDateYearInFilterProperty="GLHeader.DateExecution" DefaultDateYearInFilter="True" IsNewNode="True">
|
<ListView Id="GLRows_ListView_Account" IsGroupPanelVisible="True" ShowAutoFilterRow="True" ClassName="Nuvolar.Module.GLRows" AutoExpandAllGroups="True" Criteria="GLHeader.GLDocumentType=1 and GLHeader.IsEditable=False" AllowDelete="False" AllowNew="False" DefaultDateYearInFilterProperty="GLHeader.DateExecution" DefaultDateYearInFilter="True" DataAccessMode="InstantFeedback" IsNewNode="True">
|
||||||
<Columns IsNewNode="True">
|
<Columns IsNewNode="True">
|
||||||
<ColumnInfo Id="GLHeader.CustomersFrom" PropertyName="GLHeader.CustomersFrom" Index="0" GroupIndex="0" Width="78" SortOrder="Ascending" IsNewNode="True" />
|
<ColumnInfo Id="GLHeader.CustomersFrom" PropertyName="GLHeader.CustomersFrom" Index="0" GroupIndex="0" Width="78" SortOrder="Ascending" IsNewNode="True" />
|
||||||
<ColumnInfo Id="GLHeader.DocumentNumber" PropertyName="GLHeader.DocumentNumber" Index="1" Width="196" IsNewNode="True" />
|
<ColumnInfo Id="GLHeader.DocumentNumber" PropertyName="GLHeader.DocumentNumber" Index="1" Width="196" IsNewNode="True" />
|
||||||
@@ -15866,7 +15875,7 @@
|
|||||||
<ColumnInfo Id="NoteRows" PropertyName="NoteRows" Width="103" Index="13" IsNewNode="True" />
|
<ColumnInfo Id="NoteRows" PropertyName="NoteRows" Width="103" Index="13" IsNewNode="True" />
|
||||||
</Columns>
|
</Columns>
|
||||||
</ListView>
|
</ListView>
|
||||||
<ListView Id="GLRows_ListView_Advance" IsGroupPanelVisible="True" ShowAutoFilterRow="True" AutoExpandAllGroups="True" ClassName="Nuvolar.Module.GLRows" Criteria="GLHeader.GLDocumentType=1 and GLHeader.IsEditable=False" AllowDelete="False" AllowNew="False" DefaultDateYearInFilterProperty="GLHeader.DateExecution" DefaultDateYearInFilter="True" IsNewNode="True">
|
<ListView Id="GLRows_ListView_Advance" IsGroupPanelVisible="True" ShowAutoFilterRow="True" AutoExpandAllGroups="True" ClassName="Nuvolar.Module.GLRows" Criteria="GLHeader.GLDocumentType=1 and GLHeader.IsEditable=False" AllowDelete="False" AllowNew="False" DefaultDateYearInFilterProperty="GLHeader.DateExecution" DefaultDateYearInFilter="True" DataAccessMode="InstantFeedback" IsNewNode="True">
|
||||||
<Columns IsNewNode="True">
|
<Columns IsNewNode="True">
|
||||||
<ColumnInfo Id="ConnectInfo" PropertyName="ConnectInfo" Width="162" Index="0" IsNewNode="True" />
|
<ColumnInfo Id="ConnectInfo" PropertyName="ConnectInfo" Width="162" Index="0" IsNewNode="True" />
|
||||||
<ColumnInfo Id="ConnectInfoAdvanced" PropertyName="ConnectInfoAdvanced" Index="1" Width="210" SortIndex="-1" SortOrder="None" GroupIndex="-1" InLineEdit="True" InLineEditAutoCommit="True" IsNewNode="True" />
|
<ColumnInfo Id="ConnectInfoAdvanced" PropertyName="ConnectInfoAdvanced" Index="1" Width="210" SortIndex="-1" SortOrder="None" GroupIndex="-1" InLineEdit="True" InLineEditAutoCommit="True" IsNewNode="True" />
|
||||||
@@ -15876,7 +15885,7 @@
|
|||||||
<ColumnInfo Id="PartnerType" PropertyName="PartnerType" Width="101" Index="5" SortOrder="Ascending" GroupIndex="1" IsNewNode="True" />
|
<ColumnInfo Id="PartnerType" PropertyName="PartnerType" Width="101" Index="5" SortOrder="Ascending" GroupIndex="1" IsNewNode="True" />
|
||||||
</Columns>
|
</Columns>
|
||||||
</ListView>
|
</ListView>
|
||||||
<ListView Id="GLRows_ListView_All" ClassName="Nuvolar.Module.GLRows" IsGroupPanelVisible="True" ShowAutoFilterRow="True" MasterDetailMode="ListViewOnly" AutoExpandAllGroups="True" Criteria="GLHeader.IsEditable=False" AllowDelete="False" AllowNew="False" IsGroupFooterVisible="True" DefaultDateYearInFilterProperty="GLHeader.DateExecution" DefaultDateYearInFilter="True" IsNewNode="True">
|
<ListView Id="GLRows_ListView_All" ClassName="Nuvolar.Module.GLRows" IsGroupPanelVisible="True" ShowAutoFilterRow="True" MasterDetailMode="ListViewOnly" AutoExpandAllGroups="True" Criteria="GLHeader.IsEditable=False" AllowDelete="False" AllowNew="False" IsGroupFooterVisible="True" DefaultDateYearInFilterProperty="GLHeader.DateExecution" DefaultDateYearInFilter="True" DataAccessMode="InstantFeedback" IsNewNode="True">
|
||||||
<Columns IsNewNode="True">
|
<Columns IsNewNode="True">
|
||||||
<ColumnInfo Id="GLHeader.CustomersFrom" PropertyName="GLHeader.CustomersFrom" Index="0" GroupIndex="0" IsNewNode="True" />
|
<ColumnInfo Id="GLHeader.CustomersFrom" PropertyName="GLHeader.CustomersFrom" Index="0" GroupIndex="0" IsNewNode="True" />
|
||||||
<ColumnInfo Id="GLHeader.GLDocumentType" PropertyName="GLHeader.GLDocumentType" GroupIndex="1" Index="1" IsNewNode="True" />
|
<ColumnInfo Id="GLHeader.GLDocumentType" PropertyName="GLHeader.GLDocumentType" GroupIndex="1" Index="1" IsNewNode="True" />
|
||||||
@@ -15895,7 +15904,7 @@
|
|||||||
<ColumnInfo Id="GLHeader.CurrencyName" PropertyName="GLHeader.CurrencyName" IsNewNode="True" />
|
<ColumnInfo Id="GLHeader.CurrencyName" PropertyName="GLHeader.CurrencyName" IsNewNode="True" />
|
||||||
</Columns>
|
</Columns>
|
||||||
</ListView>
|
</ListView>
|
||||||
<ListView Id="GLRows_ListView_Bank" IsGroupPanelVisible="True" ShowAutoFilterRow="True" AutoExpandAllGroups="True" ClassName="Nuvolar.Module.GLRows" Criteria="GLHeader.GLDocumentType=2 and GLHeader.IsEditable=False" AllowDelete="False" AllowNew="False" DefaultDateYearInFilterProperty="GLHeader.DateExecution" DefaultDateYearInFilter="True" IsNewNode="True">
|
<ListView Id="GLRows_ListView_Bank" IsGroupPanelVisible="True" ShowAutoFilterRow="True" AutoExpandAllGroups="True" ClassName="Nuvolar.Module.GLRows" Criteria="GLHeader.GLDocumentType=2 and GLHeader.IsEditable=False" AllowDelete="False" AllowNew="False" DefaultDateYearInFilterProperty="GLHeader.DateExecution" DefaultDateYearInFilter="True" DataAccessMode="InstantFeedback" IsNewNode="True">
|
||||||
<Columns IsNewNode="True">
|
<Columns IsNewNode="True">
|
||||||
<ColumnInfo Id="CustomersFrom" PropertyName="GLHeader.CustomersFrom" Index="0" IsNewNode="True" />
|
<ColumnInfo Id="CustomersFrom" PropertyName="GLHeader.CustomersFrom" Index="0" IsNewNode="True" />
|
||||||
<ColumnInfo Id="LiquidAssets" PropertyName="LiquidAssets" Width="70" Index="0" IsNewNode="True" />
|
<ColumnInfo Id="LiquidAssets" PropertyName="LiquidAssets" Width="70" Index="0" IsNewNode="True" />
|
||||||
@@ -15916,7 +15925,7 @@
|
|||||||
<ColumnInfo Id="DebitChartOfAccounts" PropertyName="DebitChartOfAccounts" IsNewNode="True" />
|
<ColumnInfo Id="DebitChartOfAccounts" PropertyName="DebitChartOfAccounts" IsNewNode="True" />
|
||||||
</Columns>
|
</Columns>
|
||||||
</ListView>
|
</ListView>
|
||||||
<ListView Id="GLRows_ListView_Cassa" IsGroupPanelVisible="True" ShowAutoFilterRow="True" ClassName="Nuvolar.Module.GLRows" AutoExpandAllGroups="True" Criteria="GLHeader.GLDocumentType=3 and GLHeader.IsEditable=False" AllowDelete="False" AllowNew="False" DefaultDateYearInFilterProperty="GLHeader.DateExecution" DefaultDateYearInFilter="True" IsNewNode="True">
|
<ListView Id="GLRows_ListView_Cassa" IsGroupPanelVisible="True" ShowAutoFilterRow="True" ClassName="Nuvolar.Module.GLRows" AutoExpandAllGroups="True" Criteria="GLHeader.GLDocumentType=3 and GLHeader.IsEditable=False" AllowDelete="False" AllowNew="False" DefaultDateYearInFilterProperty="GLHeader.DateExecution" DefaultDateYearInFilter="True" DataAccessMode="InstantFeedback" IsNewNode="True">
|
||||||
<Columns IsNewNode="True">
|
<Columns IsNewNode="True">
|
||||||
<ColumnInfo Id="@CustomersFrom" PropertyName="GLHeader.CustomersFrom" Index="0" GroupIndex="0" IsNewNode="True" />
|
<ColumnInfo Id="@CustomersFrom" PropertyName="GLHeader.CustomersFrom" Index="0" GroupIndex="0" IsNewNode="True" />
|
||||||
<ColumnInfo Id="LiquidAssets" PropertyName="LiquidAssets" Width="70" Index="1" GroupIndex="1" IsNewNode="True" />
|
<ColumnInfo Id="LiquidAssets" PropertyName="LiquidAssets" Width="70" Index="1" GroupIndex="1" IsNewNode="True" />
|
||||||
@@ -15940,7 +15949,7 @@
|
|||||||
<ColumnInfo Id="CostPlace" PropertyName="CostPlace" Width="100" Index="19" IsNewNode="True" />
|
<ColumnInfo Id="CostPlace" PropertyName="CostPlace" Width="100" Index="19" IsNewNode="True" />
|
||||||
</Columns>
|
</Columns>
|
||||||
</ListView>
|
</ListView>
|
||||||
<ListView Id="GLRows_ListView_CassaReturn" IsGroupPanelVisible="True" ShowAutoFilterRow="True" ClassName="Nuvolar.Module.GLRows" AutoExpandAllGroups="True" Criteria="GLHeader.GLDocumentType=3 and GLHeader.IsEditable=False" AllowDelete="False" AllowNew="False" IsGroupFooterVisible="True" IsNewNode="True">
|
<ListView Id="GLRows_ListView_CassaReturn" IsGroupPanelVisible="True" ShowAutoFilterRow="True" ClassName="Nuvolar.Module.GLRows" AutoExpandAllGroups="True" Criteria="GLHeader.GLDocumentType=3 and GLHeader.IsEditable=False" AllowDelete="False" AllowNew="False" IsGroupFooterVisible="True" DataAccessMode="InstantFeedback" IsNewNode="True">
|
||||||
<Columns IsNewNode="True">
|
<Columns IsNewNode="True">
|
||||||
<ColumnInfo Id="@DateExecution" PropertyName="GLHeader.DateExecution" Index="0" GroupIndex="0" IsNewNode="True" />
|
<ColumnInfo Id="@DateExecution" PropertyName="GLHeader.DateExecution" Index="0" GroupIndex="0" IsNewNode="True" />
|
||||||
<ColumnInfo Id="GLHeader.DocumentNumber" PropertyName="GLHeader.DocumentNumber" GroupIndex="1" Index="1" IsNewNode="True" />
|
<ColumnInfo Id="GLHeader.DocumentNumber" PropertyName="GLHeader.DocumentNumber" GroupIndex="1" Index="1" IsNewNode="True" />
|
||||||
@@ -15957,7 +15966,7 @@
|
|||||||
<ColumnInfo Id="Controlling" PropertyName="Controlling" Width="70" Index="12" IsNewNode="True" />
|
<ColumnInfo Id="Controlling" PropertyName="Controlling" Width="70" Index="12" IsNewNode="True" />
|
||||||
</Columns>
|
</Columns>
|
||||||
</ListView>
|
</ListView>
|
||||||
<ListView Id="GLRows_ListView_Compensation" IsGroupPanelVisible="True" ShowAutoFilterRow="True" AutoExpandAllGroups="True" ClassName="Nuvolar.Module.GLRows" Criteria="GLHeader.GLDocumentType=4 and GLHeader.IsEditable=False" AllowDelete="False" AllowNew="False" DefaultDateYearInFilterProperty="GLHeader.DateExecution" DefaultDateYearInFilter="True" IsNewNode="True">
|
<ListView Id="GLRows_ListView_Compensation" IsGroupPanelVisible="True" ShowAutoFilterRow="True" AutoExpandAllGroups="True" ClassName="Nuvolar.Module.GLRows" Criteria="GLHeader.GLDocumentType=4 and GLHeader.IsEditable=False" AllowDelete="False" AllowNew="False" DefaultDateYearInFilterProperty="GLHeader.DateExecution" DefaultDateYearInFilter="True" DataAccessMode="InstantFeedback" IsNewNode="True">
|
||||||
<Columns IsNewNode="True">
|
<Columns IsNewNode="True">
|
||||||
<ColumnInfo Id="AmountDEV" PropertyName="AmountDEV" Width="50" IsNewNode="True" />
|
<ColumnInfo Id="AmountDEV" PropertyName="AmountDEV" Width="50" IsNewNode="True" />
|
||||||
<ColumnInfo Id="AmountHUF" PropertyName="AmountHUF" Width="50" IsNewNode="True" />
|
<ColumnInfo Id="AmountHUF" PropertyName="AmountHUF" Width="50" IsNewNode="True" />
|
||||||
@@ -15990,7 +15999,7 @@
|
|||||||
<ColumnInfo Id="VAT" PropertyName="VAT" Width="70" IsNewNode="True" />
|
<ColumnInfo Id="VAT" PropertyName="VAT" Width="70" IsNewNode="True" />
|
||||||
</Columns>
|
</Columns>
|
||||||
</ListView>
|
</ListView>
|
||||||
<ListView Id="GLRows_ListView_Error" IsGroupPanelVisible="True" ShowAutoFilterRow="True" AutoExpandAllGroups="True" ClassName="Nuvolar.Module.GLRows" Criteria="[GLHeader.IsEditable] = False And (GetYear([GLHeader.DateExecution])<>[DebitChartOfAccounts.AccountYear] or GetYear([GLHeader.DateExecution])<>[CreditChartOfAccounts.AccountYear])" AllowDelete="False" AllowNew="False" IsNewNode="True">
|
<ListView Id="GLRows_ListView_Error" IsGroupPanelVisible="True" ShowAutoFilterRow="True" AutoExpandAllGroups="True" ClassName="Nuvolar.Module.GLRows" Criteria="[GLHeader.IsEditable] = False And (GetYear([GLHeader.DateExecution])<>[DebitChartOfAccounts.AccountYear] or GetYear([GLHeader.DateExecution])<>[CreditChartOfAccounts.AccountYear])" AllowDelete="False" AllowNew="False" DataAccessMode="InstantFeedback" IsNewNode="True">
|
||||||
<Columns IsNewNode="True">
|
<Columns IsNewNode="True">
|
||||||
<ColumnInfo Id="GLHeader.CustomersFrom" PropertyName="GLHeader.CustomersFrom" Index="0" GroupIndex="0" IsNewNode="True" />
|
<ColumnInfo Id="GLHeader.CustomersFrom" PropertyName="GLHeader.CustomersFrom" Index="0" GroupIndex="0" IsNewNode="True" />
|
||||||
<ColumnInfo Id="GLHeader.GLDocumentType" PropertyName="GLHeader.GLDocumentType" GroupIndex="1" Index="1" IsNewNode="True" />
|
<ColumnInfo Id="GLHeader.GLDocumentType" PropertyName="GLHeader.GLDocumentType" GroupIndex="1" Index="1" IsNewNode="True" />
|
||||||
@@ -16010,7 +16019,7 @@
|
|||||||
<ColumnInfo Id="NoteRows" PropertyName="NoteRows" Width="70" Index="15" IsNewNode="True" />
|
<ColumnInfo Id="NoteRows" PropertyName="NoteRows" Width="70" Index="15" IsNewNode="True" />
|
||||||
</Columns>
|
</Columns>
|
||||||
</ListView>
|
</ListView>
|
||||||
<ListView Id="GLRows_ListView_Error_ChartOfAccounts" IsGroupPanelVisible="True" ShowAutoFilterRow="True" AutoExpandAllGroups="True" ClassName="Nuvolar.Module.GLRows" Criteria="[GLHeader.IsEditable] = False and (DebitChartOfAccounts.Children.Count>0 or CreditChartOfAccounts.Children.Count>0)" AllowDelete="False" AllowNew="False" IsNewNode="True">
|
<ListView Id="GLRows_ListView_Error_ChartOfAccounts" IsGroupPanelVisible="True" ShowAutoFilterRow="True" AutoExpandAllGroups="True" ClassName="Nuvolar.Module.GLRows" Criteria="[GLHeader.IsEditable] = False and (DebitChartOfAccounts.Children.Count>0 or CreditChartOfAccounts.Children.Count>0)" AllowDelete="False" AllowNew="False" DataAccessMode="InstantFeedback" IsNewNode="True">
|
||||||
<Columns IsNewNode="True">
|
<Columns IsNewNode="True">
|
||||||
<ColumnInfo Id="GLHeader.CustomersFrom" PropertyName="GLHeader.CustomersFrom" Index="0" GroupIndex="0" IsNewNode="True" />
|
<ColumnInfo Id="GLHeader.CustomersFrom" PropertyName="GLHeader.CustomersFrom" Index="0" GroupIndex="0" IsNewNode="True" />
|
||||||
<ColumnInfo Id="GLHeader.GLDocumentType" PropertyName="GLHeader.GLDocumentType" GroupIndex="1" Index="1" IsNewNode="True" />
|
<ColumnInfo Id="GLHeader.GLDocumentType" PropertyName="GLHeader.GLDocumentType" GroupIndex="1" Index="1" IsNewNode="True" />
|
||||||
@@ -16030,7 +16039,7 @@
|
|||||||
<ColumnInfo Id="NoteRows" PropertyName="NoteRows" Width="70" Index="15" IsNewNode="True" />
|
<ColumnInfo Id="NoteRows" PropertyName="NoteRows" Width="70" Index="15" IsNewNode="True" />
|
||||||
</Columns>
|
</Columns>
|
||||||
</ListView>
|
</ListView>
|
||||||
<ListView Id="GLRows_ListView_Error_DeletedChartOfAccounts" IsGroupPanelVisible="True" ShowAutoFilterRow="True" AutoExpandAllGroups="True" ClassName="Nuvolar.Module.GLRows" Criteria="[GLHeader.IsEditable] = False And (isnull([CreditChartOfAccounts.GCRecord])=False or isnull([DebitChartOfAccounts.GCRecord])=False)" AllowDelete="False" AllowNew="False" IsNewNode="True">
|
<ListView Id="GLRows_ListView_Error_DeletedChartOfAccounts" IsGroupPanelVisible="True" ShowAutoFilterRow="True" AutoExpandAllGroups="True" ClassName="Nuvolar.Module.GLRows" Criteria="[GLHeader.IsEditable] = False And (isnull([CreditChartOfAccounts.GCRecord])=False or isnull([DebitChartOfAccounts.GCRecord])=False)" AllowDelete="False" AllowNew="False" DataAccessMode="InstantFeedback" IsNewNode="True">
|
||||||
<Columns IsNewNode="True">
|
<Columns IsNewNode="True">
|
||||||
<ColumnInfo Id="GLHeader.CustomersFrom" PropertyName="GLHeader.CustomersFrom" Index="0" GroupIndex="0" IsNewNode="True" />
|
<ColumnInfo Id="GLHeader.CustomersFrom" PropertyName="GLHeader.CustomersFrom" Index="0" GroupIndex="0" IsNewNode="True" />
|
||||||
<ColumnInfo Id="GLHeader.GLDocumentType" PropertyName="GLHeader.GLDocumentType" GroupIndex="1" Index="1" IsNewNode="True" />
|
<ColumnInfo Id="GLHeader.GLDocumentType" PropertyName="GLHeader.GLDocumentType" GroupIndex="1" Index="1" IsNewNode="True" />
|
||||||
@@ -16050,7 +16059,7 @@
|
|||||||
<ColumnInfo Id="NoteRows" PropertyName="NoteRows" Width="70" Index="15" IsNewNode="True" />
|
<ColumnInfo Id="NoteRows" PropertyName="NoteRows" Width="70" Index="15" IsNewNode="True" />
|
||||||
</Columns>
|
</Columns>
|
||||||
</ListView>
|
</ListView>
|
||||||
<ListView Id="GLRows_ListView_Error_NoChartOfAccounts" IsGroupPanelVisible="True" ShowAutoFilterRow="True" AutoExpandAllGroups="True" ClassName="Nuvolar.Module.GLRows" Criteria="[GLHeader.IsEditable] = False And ([DebitChartOfAccounts] Is Null Or [CreditChartOfAccounts] Is Null)" AllowDelete="False" AllowNew="False" IsNewNode="True">
|
<ListView Id="GLRows_ListView_Error_NoChartOfAccounts" IsGroupPanelVisible="True" ShowAutoFilterRow="True" AutoExpandAllGroups="True" ClassName="Nuvolar.Module.GLRows" Criteria="[GLHeader.IsEditable] = False And ([DebitChartOfAccounts] Is Null Or [CreditChartOfAccounts] Is Null)" AllowDelete="False" AllowNew="False" DataAccessMode="InstantFeedback" IsNewNode="True">
|
||||||
<Columns IsNewNode="True">
|
<Columns IsNewNode="True">
|
||||||
<ColumnInfo Id="GLHeader.CustomersFrom" PropertyName="GLHeader.CustomersFrom" Index="0" GroupIndex="0" IsNewNode="True" />
|
<ColumnInfo Id="GLHeader.CustomersFrom" PropertyName="GLHeader.CustomersFrom" Index="0" GroupIndex="0" IsNewNode="True" />
|
||||||
<ColumnInfo Id="GLHeader.GLDocumentType" PropertyName="GLHeader.GLDocumentType" GroupIndex="1" Index="1" IsNewNode="True" />
|
<ColumnInfo Id="GLHeader.GLDocumentType" PropertyName="GLHeader.GLDocumentType" GroupIndex="1" Index="1" IsNewNode="True" />
|
||||||
@@ -16070,7 +16079,7 @@
|
|||||||
<ColumnInfo Id="NoteRows" PropertyName="NoteRows" Width="70" Index="15" IsNewNode="True" />
|
<ColumnInfo Id="NoteRows" PropertyName="NoteRows" Width="70" Index="15" IsNewNode="True" />
|
||||||
</Columns>
|
</Columns>
|
||||||
</ListView>
|
</ListView>
|
||||||
<ListView Id="GLRows_ListView_Error_NoDetails" IsGroupPanelVisible="True" ShowAutoFilterRow="True" AutoExpandAllGroups="True" ClassName="Nuvolar.Module.GLRows" Criteria="" AllowDelete="False" AllowNew="False" IsNewNode="True">
|
<ListView Id="GLRows_ListView_Error_NoDetails" IsGroupPanelVisible="True" ShowAutoFilterRow="True" AutoExpandAllGroups="True" ClassName="Nuvolar.Module.GLRows" Criteria="" AllowDelete="False" AllowNew="False" DataAccessMode="InstantFeedback" IsNewNode="True">
|
||||||
<Columns IsNewNode="True">
|
<Columns IsNewNode="True">
|
||||||
<ColumnInfo Id="GLHeader.CustomersFrom" PropertyName="GLHeader.CustomersFrom" Index="0" GroupIndex="0" IsNewNode="True" />
|
<ColumnInfo Id="GLHeader.CustomersFrom" PropertyName="GLHeader.CustomersFrom" Index="0" GroupIndex="0" IsNewNode="True" />
|
||||||
<ColumnInfo Id="GLHeader.GLDocumentType" PropertyName="GLHeader.GLDocumentType" GroupIndex="1" Index="1" IsNewNode="True" />
|
<ColumnInfo Id="GLHeader.GLDocumentType" PropertyName="GLHeader.GLDocumentType" GroupIndex="1" Index="1" IsNewNode="True" />
|
||||||
@@ -16090,7 +16099,7 @@
|
|||||||
<ColumnInfo Id="NoteRows" PropertyName="NoteRows" Width="70" Index="15" IsNewNode="True" />
|
<ColumnInfo Id="NoteRows" PropertyName="NoteRows" Width="70" Index="15" IsNewNode="True" />
|
||||||
</Columns>
|
</Columns>
|
||||||
</ListView>
|
</ListView>
|
||||||
<ListView Id="GLRows_ListView_Mixed" IsGroupPanelVisible="True" ShowAutoFilterRow="True" AutoExpandAllGroups="True" ClassName="Nuvolar.Module.GLRows" Criteria="GLHeader.GLDocumentType=0 and GLHeader.IsEditable=False" AllowDelete="False" AllowNew="False" DefaultDateYearInFilterProperty="GLHeader.DateExecution" DefaultDateYearInFilter="True" IsNewNode="True">
|
<ListView Id="GLRows_ListView_Mixed" IsGroupPanelVisible="True" ShowAutoFilterRow="True" AutoExpandAllGroups="True" ClassName="Nuvolar.Module.GLRows" Criteria="GLHeader.GLDocumentType=0 and GLHeader.IsEditable=False" AllowDelete="False" AllowNew="False" DefaultDateYearInFilterProperty="GLHeader.DateExecution" DefaultDateYearInFilter="True" DataAccessMode="InstantFeedback" IsNewNode="True">
|
||||||
<Columns IsNewNode="True">
|
<Columns IsNewNode="True">
|
||||||
<ColumnInfo Id="GLHeader.CustomersFrom" PropertyName="GLHeader.CustomersFrom" Index="0" GroupIndex="0" IsNewNode="True" />
|
<ColumnInfo Id="GLHeader.CustomersFrom" PropertyName="GLHeader.CustomersFrom" Index="0" GroupIndex="0" IsNewNode="True" />
|
||||||
<ColumnInfo Id="GLHeader.GLDocumentType" PropertyName="GLHeader.GLDocumentType" GroupIndex="1" Index="1" IsNewNode="True" />
|
<ColumnInfo Id="GLHeader.GLDocumentType" PropertyName="GLHeader.GLDocumentType" GroupIndex="1" Index="1" IsNewNode="True" />
|
||||||
@@ -16108,7 +16117,7 @@
|
|||||||
<ColumnInfo Id="NoteRows" PropertyName="NoteRows" Width="70" Index="12" IsNewNode="True" />
|
<ColumnInfo Id="NoteRows" PropertyName="NoteRows" Width="70" Index="12" IsNewNode="True" />
|
||||||
</Columns>
|
</Columns>
|
||||||
</ListView>
|
</ListView>
|
||||||
<ListView Id="GLRows_ListView_ProjectPlan" ClassName="Nuvolar.Module.GLRows" IsGroupPanelVisible="True" ShowAutoFilterRow="True" AutoExpandAllGroups="True" Criteria="GLHeader.IsEditable=False" IsNewNode="True">
|
<ListView Id="GLRows_ListView_ProjectPlan" ClassName="Nuvolar.Module.GLRows" IsGroupPanelVisible="True" ShowAutoFilterRow="True" AutoExpandAllGroups="True" Criteria="GLHeader.IsEditable=False" DataAccessMode="InstantFeedback" IsNewNode="True">
|
||||||
<Columns IsNewNode="True">
|
<Columns IsNewNode="True">
|
||||||
<ColumnInfo Id="GLRowsRateDiff" PropertyName="GLRowsRateDiff" Width="70" Index="-1" IsNewNode="True" />
|
<ColumnInfo Id="GLRowsRateDiff" PropertyName="GLRowsRateDiff" Width="70" Index="-1" IsNewNode="True" />
|
||||||
<ColumnInfo Id="InvoiceRows" PropertyName="InvoiceRows" Width="70" Index="-1" IsNewNode="True" />
|
<ColumnInfo Id="InvoiceRows" PropertyName="InvoiceRows" Width="70" Index="-1" IsNewNode="True" />
|
||||||
@@ -16163,7 +16172,7 @@
|
|||||||
<Variant Id="@DeletedChartOfAccounts" ViewID="GLRows_ListView_Error_DeletedChartOfAccounts" Index="9" IsNewNode="True" />
|
<Variant Id="@DeletedChartOfAccounts" ViewID="GLRows_ListView_Error_DeletedChartOfAccounts" Index="9" IsNewNode="True" />
|
||||||
</Variants>
|
</Variants>
|
||||||
</ListView>
|
</ListView>
|
||||||
<ListView Id="GLRows_ListView_RateDiff" ClassName="Nuvolar.Module.GLRows" IsGroupPanelVisible="True" ShowAutoFilterRow="True" MasterDetailMode="ListViewOnly" AutoExpandAllGroups="True" Criteria="GLHeader.GLDocumentType=5 and GLHeader.IsEditable=False" AllowDelete="True" AllowNew="True" IsGroupFooterVisible="True" IsNewNode="True">
|
<ListView Id="GLRows_ListView_RateDiff" ClassName="Nuvolar.Module.GLRows" IsGroupPanelVisible="True" ShowAutoFilterRow="True" MasterDetailMode="ListViewOnly" AutoExpandAllGroups="True" Criteria="GLHeader.GLDocumentType=5 and GLHeader.IsEditable=False" AllowDelete="True" AllowNew="True" IsGroupFooterVisible="True" DataAccessMode="InstantFeedback" IsNewNode="True">
|
||||||
<Columns IsNewNode="True">
|
<Columns IsNewNode="True">
|
||||||
<ColumnInfo Id="GLHeader.CustomersFrom" PropertyName="GLHeader.CustomersFrom" GroupIndex="0" Index="0" IsNewNode="True" />
|
<ColumnInfo Id="GLHeader.CustomersFrom" PropertyName="GLHeader.CustomersFrom" GroupIndex="0" Index="0" IsNewNode="True" />
|
||||||
<ColumnInfo Id="Controlling" PropertyName="Controlling" Width="70" Index="1" GroupIndex="1" IsNewNode="True" />
|
<ColumnInfo Id="Controlling" PropertyName="Controlling" Width="70" Index="1" GroupIndex="1" IsNewNode="True" />
|
||||||
@@ -16178,7 +16187,7 @@
|
|||||||
<ColumnInfo Id="CreditChartOfAccounts" PropertyName="CreditChartOfAccounts" Width="200" Index="10" IsNewNode="True" />
|
<ColumnInfo Id="CreditChartOfAccounts" PropertyName="CreditChartOfAccounts" Width="200" Index="10" IsNewNode="True" />
|
||||||
</Columns>
|
</Columns>
|
||||||
</ListView>
|
</ListView>
|
||||||
<ListView Id="GLRows_ListView_Regenerate" ClassName="Nuvolar.Module.GLRows" IsGroupPanelVisible="True" ShowAutoFilterRow="True" AutoExpandAllGroups="True" Criteria="[GLHeader.IsEditable] = False And [GLHeader.GLDocumentType] In ('eGLBank', 'eGLCassa') And [LiquidAssets.CurrencyName.ShortName] <> 'HUF'" AllowSort="True" IsNewNode="True">
|
<ListView Id="GLRows_ListView_Regenerate" ClassName="Nuvolar.Module.GLRows" IsGroupPanelVisible="True" ShowAutoFilterRow="True" AutoExpandAllGroups="True" Criteria="[GLHeader.IsEditable] = False And [GLHeader.GLDocumentType] In ('eGLBank', 'eGLCassa') And [LiquidAssets.CurrencyName.ShortName] <> 'HUF'" AllowSort="True" DataAccessMode="InstantFeedback" IsNewNode="True">
|
||||||
<Columns IsNewNode="True">
|
<Columns IsNewNode="True">
|
||||||
<ColumnInfo Id="GLHeader.CustomersFrom" PropertyName="GLHeader.CustomersFrom" GroupIndex="0" Index="0" SortIndex="0" IsNewNode="True" />
|
<ColumnInfo Id="GLHeader.CustomersFrom" PropertyName="GLHeader.CustomersFrom" GroupIndex="0" Index="0" SortIndex="0" IsNewNode="True" />
|
||||||
<ColumnInfo Id="LiquidAssets" PropertyName="LiquidAssets" Width="70" Index="1" GroupIndex="1" SortIndex="1" IsNewNode="True" />
|
<ColumnInfo Id="LiquidAssets" PropertyName="LiquidAssets" Width="70" Index="1" GroupIndex="1" SortIndex="1" IsNewNode="True" />
|
||||||
@@ -16198,7 +16207,7 @@
|
|||||||
<ColumnInfo Id="AmountDEVFIFO" PropertyName="AmountDEVFIFO" IsNewNode="True" />
|
<ColumnInfo Id="AmountDEVFIFO" PropertyName="AmountDEVFIFO" IsNewNode="True" />
|
||||||
</Columns>
|
</Columns>
|
||||||
</ListView>
|
</ListView>
|
||||||
<ListView Id="GLRows_ListView_TrialBalance" ClassName="Nuvolar.Module.GLRows" IsGroupPanelVisible="True" ShowAutoFilterRow="True" MasterDetailMode="ListViewOnly" AutoExpandAllGroups="True" Criteria="GLHeader.IsEditable=False" AllowDelete="False" AllowNew="False" IsNewNode="True">
|
<ListView Id="GLRows_ListView_TrialBalance" ClassName="Nuvolar.Module.GLRows" IsGroupPanelVisible="True" ShowAutoFilterRow="True" MasterDetailMode="ListViewOnly" AutoExpandAllGroups="True" Criteria="GLHeader.IsEditable=False" AllowDelete="False" AllowNew="False" DataAccessMode="InstantFeedback" IsNewNode="True">
|
||||||
<Columns IsNewNode="True">
|
<Columns IsNewNode="True">
|
||||||
<ColumnInfo Id="NoteRows" PropertyName="NoteRows" Width="70" Index="-1" IsNewNode="True" />
|
<ColumnInfo Id="NoteRows" PropertyName="NoteRows" Width="70" Index="-1" IsNewNode="True" />
|
||||||
<ColumnInfo Id="DebitChartOfAccounts" PropertyName="DebitChartOfAccounts" Width="70" Index="1" IsNewNode="True" />
|
<ColumnInfo Id="DebitChartOfAccounts" PropertyName="DebitChartOfAccounts" Width="70" Index="1" IsNewNode="True" />
|
||||||
|
|||||||
@@ -28,5 +28,5 @@ Imports System.Runtime.InteropServices
|
|||||||
' by using the '*' as shown below:
|
' by using the '*' as shown below:
|
||||||
' <Assembly: AssemblyVersion("1.0.*")>
|
' <Assembly: AssemblyVersion("1.0.*")>
|
||||||
|
|
||||||
<Assembly: AssemblyVersion("20.1.4.1000")>
|
<Assembly: AssemblyVersion("20.1.4.1001")>
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1,3 @@
|
|||||||
|
DevExpress.ExpressApp.ViewController, DevExpress.ExpressApp.v20.1, Version=20.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
|
|
||||||
|
DevExpress.ExpressApp.SystemModule.SystemModule, DevExpress.ExpressApp.v20.1, Version=20.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
@@ -593,7 +593,7 @@
|
|||||||
<Item Id="ToDo" Removed="True" />
|
<Item Id="ToDo" Removed="True" />
|
||||||
</Items>
|
</Items>
|
||||||
</NavigationItems>
|
</NavigationItems>
|
||||||
<Options FormStyle="Ribbon" UIType="TabbedMDI" EnableHtmlFormatting="True" DataAccessMode="Server">
|
<Options FormStyle="Ribbon" UIType="TabbedMDI" EnableHtmlFormatting="True" DataAccessMode="InstantFeedbackView">
|
||||||
<PrintingSettings Landscape="True" PaperKind="A4" />
|
<PrintingSettings Landscape="True" PaperKind="A4" />
|
||||||
</Options>
|
</Options>
|
||||||
<SchemaModules>
|
<SchemaModules>
|
||||||
|
|||||||
@@ -1 +1,2 @@
|
|||||||
DevExpress.ExpressApp.SystemModule.SystemModule, DevExpress.ExpressApp.v20.1, Version=20.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
DevExpress.ExpressApp.SystemModule.SystemModule, DevExpress.ExpressApp.v20.1, Version=20.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
|
DevExpress.XtraEditors.PictureEdit, DevExpress.XtraEditors.v20.1, Version=20.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
<OutputType>WinExe</OutputType>
|
<OutputType>WinExe</OutputType>
|
||||||
<StartupObject>Sub Main</StartupObject>
|
<StartupObject>Sub Main</StartupObject>
|
||||||
<RootNamespace>Nuvolar.Win</RootNamespace>
|
<RootNamespace>Nuvolar.Win</RootNamespace>
|
||||||
<AssemblyName>Nuvolar.Win.Lite</AssemblyName>
|
<AssemblyName>Nuvolar.Win.Debranet</AssemblyName>
|
||||||
<MyType>WindowsFormsWithCustomSubMain</MyType>
|
<MyType>WindowsFormsWithCustomSubMain</MyType>
|
||||||
<ApplicationIcon>favicon.ico</ApplicationIcon>
|
<ApplicationIcon>favicon.ico</ApplicationIcon>
|
||||||
<OptionExplicit>On</OptionExplicit>
|
<OptionExplicit>On</OptionExplicit>
|
||||||
@@ -394,6 +394,12 @@
|
|||||||
<Compile Include="WinApplication.vb">
|
<Compile Include="WinApplication.vb">
|
||||||
<SubType>Component</SubType>
|
<SubType>Component</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Include="XafSplashScreen.Designer.vb">
|
||||||
|
<DependentUpon>XafSplashScreen.vb</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="XafSplashScreen.vb">
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
<Compile Include="XMLUserStore\UserStore.vb" />
|
<Compile Include="XMLUserStore\UserStore.vb" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
@@ -408,6 +414,9 @@
|
|||||||
<DependentUpon>WinApplication.vb</DependentUpon>
|
<DependentUpon>WinApplication.vb</DependentUpon>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="XafSplashScreen.resx">
|
||||||
|
<DependentUpon>XafSplashScreen.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="UnusableNodes.xml">
|
<None Include="UnusableNodes.xml">
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ Imports Nuvolar.Module
|
|||||||
Friend NotInheritable Class Program
|
Friend NotInheritable Class Program
|
||||||
Private Sub New()
|
Private Sub New()
|
||||||
End Sub
|
End Sub
|
||||||
<STAThread()> _
|
<STAThread()>
|
||||||
Public Shared Sub Main(ByVal arguments() As String)
|
Public Shared Sub Main(ByVal arguments() As String)
|
||||||
#If EASYTEST Then
|
#If EASYTEST Then
|
||||||
DevExpress.ExpressApp.EasyTest.WinAdapter.RemotingRegistration.Register(4100)
|
DevExpress.ExpressApp.EasyTest.WinAdapter.RemotingRegistration.Register(4100)
|
||||||
@@ -57,7 +57,6 @@ Friend NotInheritable Class Program
|
|||||||
AddHandler winApplication.LastLogonParametersWriting, AddressOf winApplication_LastLogonParametersWriting
|
AddHandler winApplication.LastLogonParametersWriting, AddressOf winApplication_LastLogonParametersWriting
|
||||||
AddHandler winApplication.CustomHandleException, AddressOf winApplication_CustomHandleException
|
AddHandler winApplication.CustomHandleException, AddressOf winApplication_CustomHandleException
|
||||||
winApplication.DelayedViewItemsInitialization = True
|
winApplication.DelayedViewItemsInitialization = True
|
||||||
winApplication.SplashScreen = New DevExpress.ExpressApp.Win.Utils.DXSplashScreen
|
|
||||||
winApplication.DatabaseUpdateMode = DatabaseUpdateMode.UpdateOldDatabase
|
winApplication.DatabaseUpdateMode = DatabaseUpdateMode.UpdateOldDatabase
|
||||||
|
|
||||||
AuditTrailService.Instance.ObjectAuditingMode = ObjectAuditingMode.CreationOnly
|
AuditTrailService.Instance.ObjectAuditingMode = ObjectAuditingMode.CreationOnly
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ Imports DevExpress.ExpressApp.Utils
|
|||||||
Imports DevExpress.ExpressApp.Xpo
|
Imports DevExpress.ExpressApp.Xpo
|
||||||
Imports Nuvolar.Module.GeneralFunction
|
Imports Nuvolar.Module.GeneralFunction
|
||||||
Imports System.Data.SqlClient
|
Imports System.Data.SqlClient
|
||||||
|
Imports DevExpress.ExpressApp.Win.Utils
|
||||||
|
|
||||||
Partial Public Class NuvolarWindowsFormsDebranetGL
|
Partial Public Class NuvolarWindowsFormsDebranetGL
|
||||||
Inherits WinApplication
|
Inherits WinApplication
|
||||||
@@ -22,7 +23,9 @@ Partial Public Class NuvolarWindowsFormsDebranetGL
|
|||||||
Private Sub InitializeDefaults()
|
Private Sub InitializeDefaults()
|
||||||
LinkNewObjectToParentImmediately = True
|
LinkNewObjectToParentImmediately = True
|
||||||
UseLightStyle = True
|
UseLightStyle = True
|
||||||
|
SplashScreen = New DXSplashScreen(GetType(XafSplashScreen), New DefaultOverlayFormOptions())
|
||||||
ExecuteStartupLogicBeforeClosingLogonWindow = True
|
ExecuteStartupLogicBeforeClosingLogonWindow = True
|
||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
Private Sub NuvolarWindowsFormsApplication_DatabaseVersionMismatch(ByVal sender As Object, ByVal e As DevExpress.ExpressApp.DatabaseVersionMismatchEventArgs) Handles MyBase.DatabaseVersionMismatch
|
Private Sub NuvolarWindowsFormsApplication_DatabaseVersionMismatch(ByVal sender As Object, ByVal e As DevExpress.ExpressApp.DatabaseVersionMismatchEventArgs) Handles MyBase.DatabaseVersionMismatch
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,8 @@ Imports Nuvolar.Module
|
|||||||
Imports Nuvolar.Module.Win
|
Imports Nuvolar.Module.Win
|
||||||
Imports Nuvolar.Module.StaticClass
|
Imports Nuvolar.Module.StaticClass
|
||||||
Imports DevExpress.ExpressApp.Xpo
|
Imports DevExpress.ExpressApp.Xpo
|
||||||
|
Imports System.Configuration
|
||||||
|
Imports System.Text
|
||||||
|
|
||||||
Partial Public Class NuvolarWindowsFormsDebranetGL
|
Partial Public Class NuvolarWindowsFormsDebranetGL
|
||||||
Inherits WinApplication
|
Inherits WinApplication
|
||||||
@@ -42,64 +44,44 @@ Partial Public Class NuvolarWindowsFormsDebranetGL
|
|||||||
GLOBAL_SQLServer = _ChangeLogon.SQLServer
|
GLOBAL_SQLServer = _ChangeLogon.SQLServer
|
||||||
GLOBAL_SQLDatabase = _ChangeLogon.DBConnection
|
GLOBAL_SQLDatabase = _ChangeLogon.DBConnection
|
||||||
|
|
||||||
|
Dim _NuvolarServer As String = ConfigurationManager.AppSettings("NuvolarServer")
|
||||||
|
If String.IsNullOrEmpty(_NuvolarServer) = False Then
|
||||||
|
Dim _EncryptPassword As String = "uO1625m9ftwStO40CwK3mrO17OxsyLe5YDVXAUWC0JZlfMM9YOJYZN8g21nG9HhX"
|
||||||
|
Dim _EncryptSalt As String = "IrUMyznsIimD8Ct8EhSQ04PQq00Rje9p"
|
||||||
|
Dim _PasswordDecoded As String = EncryptDecrypt.AESDecrypt(Encoding.ASCII.GetString(Convert.FromBase64String(_NuvolarServer)), _EncryptPassword, _EncryptSalt)
|
||||||
|
GeneralFunction.GLOBAL_SQLUser = _PasswordDecoded.Split(";"c)(1)
|
||||||
|
GeneralFunction.GLOBAL_SQLPassword = _PasswordDecoded.Split(";"c)(2)
|
||||||
|
End If
|
||||||
|
|
||||||
|
|
||||||
Select Case _ChangeLogon.SQLType
|
Select Case _ChangeLogon.SQLType
|
||||||
Case eSQLType.MSSQL
|
Case eSQLType.MSSQL
|
||||||
Select Case _ChangeLogon.SQLServer
|
_connectionString = String.Format(" User ID={0}; " &
|
||||||
Case "192.168.1.75"
|
" Application Name=Nuvolar Framework ({1});" &
|
||||||
_connectionString = " User ID=sa; "
|
" Password={2};" &
|
||||||
_connectionString &= String.Format(" Application Name=Nuvolar Framework ({0});", UCase(_ChangeLogon.UserName))
|
" Pooling=false;" &
|
||||||
_connectionString &= " Password=M1cr0s0ft!;"
|
" Data Source={3};" &
|
||||||
_connectionString &= " Pooling=false;"
|
" Initial Catalog={4}", GeneralFunction.GLOBAL_SQLUser, _ChangeLogon.UserName.ToUpper(), GeneralFunction.GLOBAL_SQLPassword,
|
||||||
_connectionString &= String.Format(" Data Source={0};", _ChangeLogon.SQLServer)
|
_ChangeLogon.SQLServer, _ChangeLogon.DBConnection)
|
||||||
_connectionString &= " Initial Catalog=" & _ChangeLogon.DBConnection
|
|
||||||
_plattform = "MS SQL"
|
_plattform = "MS SQL"
|
||||||
GLOBAL_SQLUser = "sa"
|
|
||||||
GLOBAL_SQLPassword = "M1cr0s0ft!"
|
|
||||||
Case Else
|
|
||||||
_connectionString = " User ID=sa; "
|
|
||||||
_connectionString &= String.Format(" Application Name=Nuvolar Framework ({0});", UCase(_ChangeLogon.UserName))
|
|
||||||
_connectionString &= " Password=pcl718;"
|
|
||||||
_connectionString &= " Pooling=false;"
|
|
||||||
_connectionString &= String.Format(" Data Source={0};", _ChangeLogon.SQLServer)
|
|
||||||
_connectionString &= " Initial Catalog=" & _ChangeLogon.DBConnection
|
|
||||||
_plattform = "MS SQL"
|
|
||||||
GLOBAL_SQLUser = "sa"
|
|
||||||
GLOBAL_SQLPassword = "pcl718"
|
|
||||||
End Select
|
|
||||||
|
|
||||||
Case eSQLType.MySQL
|
Case eSQLType.MySQL
|
||||||
Select Case _ChangeLogon.SQLServer
|
_connectionString = String.Format("XpoProvider=MySql;" &
|
||||||
Case "eu-cdbr-azure-north-e.cloudapp.net"
|
"server={0}; " &
|
||||||
_connectionString = DevExpress.Xpo.DB.MySqlConnectionProvider.GetConnectionString(_ChangeLogon.SQLServer, "bf614abf4c83ef", "edbc0ac0", "trevor")
|
"Port = 3306;" &
|
||||||
Case "84.1.95.74"
|
"user id = {1}; " &
|
||||||
_connectionString = DevExpress.Xpo.DB.MySqlConnectionProvider.GetConnectionString(_ChangeLogon.SQLServer, "root", "malomko10", _ChangeLogon.DBConnection)
|
"password = {2}; " &
|
||||||
Case "192.168.100.182"
|
"database = {3}; " &
|
||||||
_connectionString = DevExpress.Xpo.DB.MySqlConnectionProvider.GetConnectionString(_ChangeLogon.SQLServer, "root", "M1cr0s0ft!12345", _ChangeLogon.DBConnection)
|
"Persist Security Info = true; " &
|
||||||
Case "81.183.209.96"
|
"CharSet = utf8; " & "Allow User Variables = True", _ChangeLogon.SQLServer, GeneralFunction.GLOBAL_SQLUser,
|
||||||
_connectionString = DevExpress.Xpo.DB.MySqlConnectionProvider.GetConnectionString(_ChangeLogon.SQLServer, "root", "M1cr0s0ft!", _ChangeLogon.DBConnection)
|
GeneralFunction.GLOBAL_SQLPassword, _ChangeLogon.DBConnection)
|
||||||
Case "192.168.0.200"
|
|
||||||
_connectionString = DevExpress.Xpo.DB.MySqlConnectionProvider.GetConnectionString(_ChangeLogon.SQLServer, "root", "M1cr0s0ft!", _ChangeLogon.DBConnection)
|
|
||||||
Case "192.168.1.31", "192.168.0.159", "84.1.150.148", "nuvolar.northeurope.cloudapp.azure.com", "192.168.1.75"
|
|
||||||
_connectionString = DevExpress.Xpo.DB.MySqlConnectionProvider.GetConnectionString(_ChangeLogon.SQLServer, "root", "M1cr0s0ft!12345", _ChangeLogon.DBConnection)
|
|
||||||
Case Else
|
|
||||||
_connectionString = DevExpress.Xpo.DB.MySqlConnectionProvider.GetConnectionString(_ChangeLogon.SQLServer, "root", "root", _ChangeLogon.DBConnection)
|
|
||||||
|
|
||||||
End Select
|
|
||||||
_plattform = "MySQL"
|
_plattform = "MySQL"
|
||||||
GLOBAL_SQLUser = "root"
|
|
||||||
GLOBAL_SQLPassword = "pcl718"
|
|
||||||
Case eSQLType.PostgreSQL
|
Case eSQLType.PostgreSQL
|
||||||
_connectionString = DevExpress.Xpo.DB.PostgreSqlConnectionProvider.GetConnectionString(_ChangeLogon.SQLServer, "root", "pcl718", _ChangeLogon.DBConnection)
|
_connectionString = DevExpress.Xpo.DB.PostgreSqlConnectionProvider.GetConnectionString(_ChangeLogon.SQLServer & ";Port=5432", GeneralFunction.GLOBAL_SQLUser,
|
||||||
|
GeneralFunction.GLOBAL_SQLPassword, _ChangeLogon.DBConnection)
|
||||||
_plattform = "postgreSQL"
|
_plattform = "postgreSQL"
|
||||||
Case Else
|
Case Else
|
||||||
_connectionString = " User ID=sa; "
|
_connectionString = ""
|
||||||
_connectionString &= " Password=pcl718;"
|
|
||||||
_connectionString &= " Pooling=false;"
|
|
||||||
_connectionString &= String.Format(" Data Source={0};", _ChangeLogon.SQLServer)
|
|
||||||
_connectionString &= " Initial Catalog=" & _ChangeLogon.DBConnection
|
|
||||||
GLOBAL_SQLUser = "sa"
|
|
||||||
GLOBAL_SQLPassword = "pcl718"
|
|
||||||
End Select
|
End Select
|
||||||
|
|
||||||
Dim anm As System.Reflection.AssemblyName = System.Reflection.AssemblyName.GetAssemblyName(Application.StartupPath & "\Nuvolar.Module.dll")
|
Dim anm As System.Reflection.AssemblyName = System.Reflection.AssemblyName.GetAssemblyName(Application.StartupPath & "\Nuvolar.Module.dll")
|
||||||
|
|||||||
+153
@@ -0,0 +1,153 @@
|
|||||||
|
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
|
||||||
|
Partial Class XafSplashScreen
|
||||||
|
Inherits DevExpress.XtraSplashScreen.SplashScreen
|
||||||
|
|
||||||
|
'Form overrides dispose to clean up the component list.
|
||||||
|
<System.Diagnostics.DebuggerNonUserCode()>
|
||||||
|
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||||
|
Try
|
||||||
|
If disposing AndAlso components IsNot Nothing Then
|
||||||
|
components.Dispose()
|
||||||
|
End If
|
||||||
|
Finally
|
||||||
|
MyBase.Dispose(disposing)
|
||||||
|
End Try
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
'Required by the Windows Form Designer
|
||||||
|
Private components As System.ComponentModel.IContainer
|
||||||
|
|
||||||
|
'NOTE: The following procedure is required by the Windows Form Designer
|
||||||
|
'It can be modified using the Windows Form Designer.
|
||||||
|
'Do not modify it using the code editor.
|
||||||
|
<System.Diagnostics.DebuggerStepThrough()>
|
||||||
|
Private Sub InitializeComponent()
|
||||||
|
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(XafSplashScreen))
|
||||||
|
Me.labelCopyright = New DevExpress.XtraEditors.LabelControl()
|
||||||
|
Me.pictureEdit1 = New DevExpress.XtraEditors.PictureEdit()
|
||||||
|
Me.pcApplicationName = New DevExpress.XtraEditors.PanelControl()
|
||||||
|
Me.labelSubtitle = New DevExpress.XtraEditors.LabelControl()
|
||||||
|
Me.labelApplicationName = New DevExpress.XtraEditors.LabelControl()
|
||||||
|
Me.labelStatus = New DevExpress.XtraEditors.LabelControl()
|
||||||
|
Me.progressBarControl = New DevExpress.XtraEditors.MarqueeProgressBarControl()
|
||||||
|
CType(Me.pictureEdit1.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
|
CType(Me.pcApplicationName, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
|
Me.pcApplicationName.SuspendLayout()
|
||||||
|
CType(Me.progressBarControl.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
|
Me.SuspendLayout()
|
||||||
|
'
|
||||||
|
'labelCopyright
|
||||||
|
'
|
||||||
|
Me.labelCopyright.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder
|
||||||
|
Me.labelCopyright.Location = New System.Drawing.Point(24, 292)
|
||||||
|
Me.labelCopyright.Name = "labelCopyright"
|
||||||
|
Me.labelCopyright.Size = New System.Drawing.Size(47, 13)
|
||||||
|
Me.labelCopyright.TabIndex = 11
|
||||||
|
Me.labelCopyright.Text = "Copyright"
|
||||||
|
'
|
||||||
|
'pictureEdit1
|
||||||
|
'
|
||||||
|
Me.pictureEdit1.EditValue = CType(resources.GetObject("pictureEdit1.EditValue"), Object)
|
||||||
|
Me.pictureEdit1.Location = New System.Drawing.Point(347, 304)
|
||||||
|
Me.pictureEdit1.Name = "pictureEdit1"
|
||||||
|
Me.pictureEdit1.Properties.AllowFocused = False
|
||||||
|
Me.pictureEdit1.Properties.Appearance.BackColor = System.Drawing.Color.Transparent
|
||||||
|
Me.pictureEdit1.Properties.Appearance.Options.UseBackColor = True
|
||||||
|
Me.pictureEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder
|
||||||
|
Me.pictureEdit1.Properties.ShowMenu = False
|
||||||
|
Me.pictureEdit1.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom
|
||||||
|
Me.pictureEdit1.Size = New System.Drawing.Size(126, 35)
|
||||||
|
Me.pictureEdit1.TabIndex = 15
|
||||||
|
'
|
||||||
|
'pcApplicationName
|
||||||
|
'
|
||||||
|
Me.pcApplicationName.Appearance.BackColor = System.Drawing.Color.FromArgb(CType(CType(187, Byte), Integer), CType(CType(143, Byte), Integer), CType(CType(11, Byte), Integer))
|
||||||
|
Me.pcApplicationName.Appearance.Options.UseBackColor = True
|
||||||
|
Me.pcApplicationName.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder
|
||||||
|
Me.pcApplicationName.Controls.Add(Me.labelSubtitle)
|
||||||
|
Me.pcApplicationName.Controls.Add(Me.labelApplicationName)
|
||||||
|
Me.pcApplicationName.Dock = System.Windows.Forms.DockStyle.Top
|
||||||
|
Me.pcApplicationName.Location = New System.Drawing.Point(1, 1)
|
||||||
|
Me.pcApplicationName.LookAndFeel.UseDefaultLookAndFeel = False
|
||||||
|
Me.pcApplicationName.Name = "pcApplicationName"
|
||||||
|
Me.pcApplicationName.Size = New System.Drawing.Size(490, 220)
|
||||||
|
Me.pcApplicationName.TabIndex = 16
|
||||||
|
'
|
||||||
|
'labelSubtitle
|
||||||
|
'
|
||||||
|
Me.labelSubtitle.Appearance.Font = New System.Drawing.Font("Segoe UI", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
|
Me.labelSubtitle.Appearance.ForeColor = System.Drawing.Color.White
|
||||||
|
Me.labelSubtitle.Appearance.Options.UseFont = True
|
||||||
|
Me.labelSubtitle.Appearance.Options.UseForeColor = True
|
||||||
|
Me.labelSubtitle.Location = New System.Drawing.Point(154, 148)
|
||||||
|
Me.labelSubtitle.Name = "labelSubtitle"
|
||||||
|
Me.labelSubtitle.Size = New System.Drawing.Size(176, 25)
|
||||||
|
Me.labelSubtitle.TabIndex = 1
|
||||||
|
Me.labelSubtitle.Text = "by Dorlin-System Kft."
|
||||||
|
'
|
||||||
|
'labelApplicationName
|
||||||
|
'
|
||||||
|
Me.labelApplicationName.Appearance.Font = New System.Drawing.Font("Segoe UI", 26.25!)
|
||||||
|
Me.labelApplicationName.Appearance.ForeColor = System.Drawing.SystemColors.Window
|
||||||
|
Me.labelApplicationName.Appearance.Options.UseFont = True
|
||||||
|
Me.labelApplicationName.Appearance.Options.UseForeColor = True
|
||||||
|
Me.labelApplicationName.Location = New System.Drawing.Point(23, 84)
|
||||||
|
Me.labelApplicationName.Name = "labelApplicationName"
|
||||||
|
Me.labelApplicationName.Size = New System.Drawing.Size(430, 47)
|
||||||
|
Me.labelApplicationName.TabIndex = 0
|
||||||
|
Me.labelApplicationName.Text = "Nuvolar Accounting System"
|
||||||
|
'
|
||||||
|
'labelStatus
|
||||||
|
'
|
||||||
|
Me.labelStatus.Location = New System.Drawing.Point(67, 241)
|
||||||
|
Me.labelStatus.Name = "labelStatus"
|
||||||
|
Me.labelStatus.Size = New System.Drawing.Size(50, 13)
|
||||||
|
Me.labelStatus.TabIndex = 18
|
||||||
|
Me.labelStatus.Text = "Starting..."
|
||||||
|
'
|
||||||
|
'progressBarControl
|
||||||
|
'
|
||||||
|
Me.progressBarControl.EditValue = 0
|
||||||
|
Me.progressBarControl.Location = New System.Drawing.Point(66, 259)
|
||||||
|
Me.progressBarControl.Name = "progressBarControl"
|
||||||
|
Me.progressBarControl.Properties.Appearance.BorderColor = System.Drawing.Color.FromArgb(CType(CType(195, Byte), Integer), CType(CType(194, Byte), Integer), CType(CType(194, Byte), Integer))
|
||||||
|
Me.progressBarControl.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple
|
||||||
|
Me.progressBarControl.Properties.EndColor = System.Drawing.Color.FromArgb(CType(CType(197, Byte), Integer), CType(CType(143, Byte), Integer), CType(CType(11, Byte), Integer))
|
||||||
|
Me.progressBarControl.Properties.LookAndFeel.SkinName = "Visual Studio 2013 Blue"
|
||||||
|
Me.progressBarControl.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.UltraFlat
|
||||||
|
Me.progressBarControl.Properties.LookAndFeel.UseDefaultLookAndFeel = False
|
||||||
|
Me.progressBarControl.Properties.ProgressViewStyle = DevExpress.XtraEditors.Controls.ProgressViewStyle.Solid
|
||||||
|
Me.progressBarControl.Properties.StartColor = System.Drawing.Color.FromArgb(CType(CType(197, Byte), Integer), CType(CType(143, Byte), Integer), CType(CType(11, Byte), Integer))
|
||||||
|
Me.progressBarControl.Size = New System.Drawing.Size(350, 16)
|
||||||
|
Me.progressBarControl.TabIndex = 17
|
||||||
|
'
|
||||||
|
'XafSplashScreen
|
||||||
|
'
|
||||||
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||||
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||||
|
Me.ClientSize = New System.Drawing.Size(492, 343)
|
||||||
|
Me.Controls.Add(Me.labelStatus)
|
||||||
|
Me.Controls.Add(Me.progressBarControl)
|
||||||
|
Me.Controls.Add(Me.pcApplicationName)
|
||||||
|
Me.Controls.Add(Me.pictureEdit1)
|
||||||
|
Me.Controls.Add(Me.labelCopyright)
|
||||||
|
Me.Name = "XafSplashScreen"
|
||||||
|
Me.Padding = New System.Windows.Forms.Padding(1)
|
||||||
|
Me.Text = "XafSplashScreen"
|
||||||
|
CType(Me.pictureEdit1.Properties, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
|
CType(Me.pcApplicationName, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
|
Me.pcApplicationName.ResumeLayout(False)
|
||||||
|
Me.pcApplicationName.PerformLayout()
|
||||||
|
CType(Me.progressBarControl.Properties, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
|
Me.ResumeLayout(False)
|
||||||
|
Me.PerformLayout()
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
Private WithEvents labelCopyright As DevExpress.XtraEditors.LabelControl
|
||||||
|
Private WithEvents pictureEdit1 As DevExpress.XtraEditors.PictureEdit
|
||||||
|
Private WithEvents pcApplicationName As DevExpress.XtraEditors.PanelControl
|
||||||
|
Private WithEvents labelSubtitle As DevExpress.XtraEditors.LabelControl
|
||||||
|
Private WithEvents labelApplicationName As DevExpress.XtraEditors.LabelControl
|
||||||
|
Private WithEvents labelStatus As DevExpress.XtraEditors.LabelControl
|
||||||
|
Private WithEvents progressBarControl As DevExpress.XtraEditors.MarqueeProgressBarControl
|
||||||
|
End Class
|
||||||
@@ -0,0 +1,174 @@
|
|||||||
|
<?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>
|
||||||
|
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||||
|
<data name="pictureEdit1.EditValue" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAAMwAAAAiCAYAAAATbDYAAAAABGdBTUEAALGPC/xhBQAAABl0RVh0U29m
|
||||||
|
dHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAr1SURBVHhe7Zu9ix3JFcXnH1hQqkzROhUYnK7MOliE
|
||||||
|
gwGjYDMp2UiBwIEyr4wigxByOJkMwtiZcGKDAiuxwNkgDA4tzIKU7RoEu+v9eD6/oqqpun2qu9+b98Zv
|
||||||
|
tO/Cme6699ZHd9/Tdav6zdGXv778gfB3YXVOoK8PVqvV0QE/LPz0ww9/LPw145Os+ySX/yQU+8e5/Evh
|
||||||
|
9/lY6p0IdTvYmnZjudM/9X6ez6/l4+Xi2wOEeV0F83nhtRvMAe82qgCFEBxLAKN/IEAOjp8K6CFHsXOE
|
||||||
|
DJercjy+L7xXlYd+Qv/pmHUQEzyox9oDhHEBvXPEgRzw7qMEagZv+BTQ2VaCu55NCiBJOYdMdTuxzHkp
|
||||||
|
0y7Hj03/n2ZdmeESqeZwIQhz/fr1S8K1Ho4umOj6LwnX1sSVXP3CioKyBOx7uexmmOJDmSNv/xL46KhT
|
||||||
|
fAj2ug5HNwO9TxxV5USSWlfH2xTOhTBf/fYnq69/94vVN3/51eqb5w9W3/3rb+rbD6iGyHBVWC3EqfBI
|
||||||
|
2PvA0j2BAPZeTeBern5hRYGZCJKLSVQuM0pZw5TZpKxjIEkhTO3HeTmWNQhgxil6kGYX4PRFV3zmsHXC
|
||||||
|
fPWbH63++8dbAzG+//I/6seKHVANBT8ziCPHHCDOpfxM9k50n36QhPl/iYutTbEVwnx98rM0e3z3+h9q
|
||||||
|
c7HYAdVQ0G9KGMCMs5ek0T07EOYcxcXWEuie3+S+Z1xBtzFhSLMgyfef/1vtbCR2kDUU8I4wz4V7FZ4K
|
||||||
|
0afgeb5neyW6f44wr4TnE7iZqx9kTXGxNQfd78fCKfddeCR8IVxbmzCsRb7955/V5nJ5+fLl6smTJ6v7
|
||||||
|
9++vbt26lYJZYgdaQ36OMKM3rXRXhB5x9i7QdB8dYQ4zyI7ExdYU9CyuChCkEOWpcEc4XUwYiJIX67Py
|
||||||
|
9u3b1bNnzxJBTAAnSOxga8hvEWGKyOZI8yqbJ0V+ZSdu52mc7ufeE0bjYYxn2kBRfXYDr+ZiV7If/W10
|
||||||
|
73Pdbj8utvCnXsdGCsaszhHCgCtCMsYH12AdosyRpIZkNNAI+a1LGIL+i8q34Di7NCI9/qR1r7JfAW08
|
||||||
|
FpqAUflYICWsYccj/c3gB9IWuO7rxoSRH6lCTNdG1ycdb8Tol2ZbjkH/KOuPBdKQelykit2xyVa3k1Jg
|
||||||
|
HSEA5e61ZZ/yBq/7o8w1TpJHdoKZsdV1AeNv+ivxJD3Xx2wR69AOfaZ1io48n3TdAv7l/BXGWDmB3a5v
|
||||||
|
T/+g+tPy5s2blG7duHGjDrhZSBpyOMhvLcIgshPos3WkY8vakasG9uHNpXNSv5FPNjciPQSJvikIdH/P
|
||||||
|
QhhXt5lFVSYYXSCW/nn4tY3gJmBqXQSBOAri4ANKOlPrmmtTmcCNPhHYR7OGdFxbJHVE80yIJenmrg8M
|
||||||
|
M47OuScQpaxhsB+7C07bwhPbwUkgysOHD2NALIakIYeD/DYhDLNArNMs/lVeQpYC/IZA0Tm7b9Fn9GCN
|
||||||
|
z9Ns4p5vTBhEvu4tOdTnPNjAsJbTebTPBW/B49zEIMbHvfXrsUGoaO+BthqSquyuPWK414jKBL3za1DH
|
||||||
|
nsoQs8zSkC2RqbngJbMK65OTk5MYDGtD0pDDQX6bEMbNApEwMeghBSkU/ZGi1TYw9KnzO8EG7mRzEpUd
|
||||||
|
aeuAtbOEkNIah1w1icrk0zHIKfOQ3ewS6/OGr+01yjh6JGp+WWHsDjVhIqHoh4Dmnjii13XTOiKA2Ybr
|
||||||
|
AcwEtN88j6yr69R9psW88NTFYMRwwXxLmfuOwhpl3dSrB4kdUA35rU0YxNQZAkbnECPamxlC5UiaYYrX
|
||||||
|
+RJC8uE0+gxvSt1vR5hJ5KqDSGeDS3Bv02YtpnKv/yHQdN5LfZpZxtgLqEswEshl7RbHRuA2917lkv4U
|
||||||
|
DOmmzt21uTQxzkqxzs0Ya9JdijqH1BhkmUrBSL/u3r0bA+BMkNgB1ZDfLggTd9JGaYZ0jhT1Wma0G5dN
|
||||||
|
SVSOM1hMEc5MGER69+aMutH9ks7135Aekc690Zv1gbGD5nqLoA9+LsVzKVsivI6TqWZPTJ1Fs4nDEbtg
|
||||||
|
U2R58eLF1maVGhI7oBry2yQlY+cr1qkJE9cuzAb0E1H7gGEnSudulkp2HV3/zUPVA9sWYebagTzuDezq
|
||||||
|
NWlMEendLFPPltEG7Ha08YMAjCUi+k3tLgLWGKN1ZBHZXHrJdY1mmjnwpyvbWKv0IBkNJkJ+LnDnCOPq
|
||||||
|
JMLo6IJ5KYZ+de7aSVuzOrr1S0wR3IOfnTmdqN7UIrhZbxRBH/ymfGOK1Pgam/3uJf06i/2I4WWlc0fg
|
||||||
|
AtZeI+JI52amAl4qxy7+HPgzEhb2207BIiSjwUTIbxPCuEV5CWbX3lI0/aoc07LTrI/rF5d2bJMwvUDs
|
||||||
|
frCVbR3CuGCbIswotUOk780OS1BvmJAmxrSzRlrQZ/ckxJJ0c9vKj2P8OfCnEchy+/bt+oHvBJLRYCLk
|
||||||
|
twlh3PePki6dhTDNx0GVXVrGzBPXL009RA9nm4RxM0CBze+lv2iEacamMhsSUwSANENaWOJJOjYhXHpW
|
||||||
|
MJui8WeQ8yILkIwGEyG/tQgjW48QQ0pkbL01TESTVlEWYlv41WX7UVMPZiuEUZ25NGedNcyI2Ij0pDnR
|
||||||
|
dwhGY+sRxm0g9NYwEaNrQKSnTdpwJBjuZx1T0kM2dtvcLHVa+zrwJ8l5kgVIRoOJkF8MQGADS3oCOP7E
|
||||||
|
BTQpkcpx0T9KmZaK6sa0LM5utm09GIIgPqxNCBOD2QXBqF3pXP8pba1FOvdNZ26XzBIGkS22tfG9r0Xt
|
||||||
|
8OKIbQ/jcLElu902j34R/Dl3soAygCnIbxFhpMPPfYGHHM2OjcrupzP27TonqufSshq9t/aZCSN/+71F
|
||||||
|
cKRp7oHKrn8CLm5OuHQsbpFH+xRh3AZFd3drHVE78eUxSRggn9H1RZ8I/ux8ge9QBjAF+TnC8BYv/wsD
|
||||||
|
HFEKRjm8dK5NAJGw8Q2Gn85wzgaC/aaAyDa162bTMUQPxgUsgc5D72GYAXTu3vwpQHR0RFr6HYgxUB97
|
||||||
|
b40Q1xPRPkWYXr+sw7BBeGYLztPPUnLVJNnOdSf/rEaP76jNbMbOTML18BE1faDUkT7iy+VVjMGII344
|
||||||
|
aR72zhEH4iC/XnAvgV3wIrK5L/FTsAtiRDb3LwWgm27owfQCZwpD8Oh8bqvXzTK1fZP+wYgMS3xqkX3J
|
||||||
|
b8FqDDOQzt3LoId0vTrycnF2h3suDmsc7eKj5BLEgTjIbxPCsI7pBngR+fQC3cF+1ENk66Vl3TRPD2Zj
|
||||||
|
wujoFvrxTewCq/6Jies/zlgRvKXdBkL0myMMAcyMGev1UG8pz20NF9Szy1KSpetzcViDB+4e9s4RB+Ig
|
||||||
|
v6WEYa1CSrXWWkT+BLvbKKiBvduubC4t66ZjiB7MWQjjgm30gpDOzTKJ+Dq6/gms3kdBArW3UxV9JwlT
|
||||||
|
RH6kUW6MNbAP917nc9vC+DeZhcpc61Q/JcVb9lsy87DPBXEgPci3rCcKWFcQ6KVsf4axjqgN+qDNem20
|
||||||
|
uG35xTFOLmR5OAIPch2kNo3ezqbSk+9H37qNGDglhcHGYhhAosl7kP1rrLWIx1+gn9InoJ1uv7LFOhCp
|
||||||
|
2y9xJDv3gzVM00+MtznwsD8TbFDvEJ+5wfRwkO0KgSJYwryL4mJqU0CYj4TXVTDvGvT1kRtMDwfZrkCO
|
||||||
|
QJYDYRbCKvcNB9muQI5AlgNhFsIq9w0H2a5AjkCWA2EWwir3DQfZrkCOQJYDYRbCKvcNB9muiBzsMtW/
|
||||||
|
IgBr7W5dJHExtRlWR/8DNPlERCm3k9wAAAAASUVORK5CYII=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -0,0 +1,48 @@
|
|||||||
|
Imports System.IO
|
||||||
|
Imports System.Reflection
|
||||||
|
Imports DevExpress.ExpressApp.Win.Utils
|
||||||
|
Imports DevExpress.Skins
|
||||||
|
Imports DevExpress.Utils.Drawing
|
||||||
|
|
||||||
|
Public Class XafSplashScreen
|
||||||
|
Sub New()
|
||||||
|
InitializeComponent()
|
||||||
|
LoadBlankLogo()
|
||||||
|
Me.labelCopyright.Text = "Copyright © 2008-" & DateTime.Now.Year.ToString()
|
||||||
|
UpdateLabelsPosition()
|
||||||
|
End Sub
|
||||||
|
Private Sub LoadBlankLogo()
|
||||||
|
Dim _assembly As Assembly = Assembly.GetExecutingAssembly()
|
||||||
|
Dim blankLogoResourceName As String = _assembly.GetName().Name & ".Logo.svg"
|
||||||
|
Dim svgStream As Stream = _assembly.GetManifestResourceStream(blankLogoResourceName)
|
||||||
|
If svgStream IsNot Nothing Then
|
||||||
|
svgStream.Position = 0
|
||||||
|
'peLogo.SvgImage = SvgImage.FromStream(svgStream)
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
Protected Overrides Sub DrawContent(graphicsCache As GraphicsCache, skin As Skin)
|
||||||
|
Dim bounds As Rectangle = ClientRectangle
|
||||||
|
bounds.Width = (bounds.Width - 1)
|
||||||
|
bounds.Height = (bounds.Height - 1)
|
||||||
|
graphicsCache.Graphics.DrawRectangle(graphicsCache.GetPen(Color.FromArgb(255, 87, 87, 87), 1), bounds)
|
||||||
|
End Sub
|
||||||
|
Protected Sub UpdateLabelsPosition()
|
||||||
|
labelApplicationName.CalcBestSize()
|
||||||
|
Dim newLeft As Integer = CType((Width - labelApplicationName.Width) / 2, Integer)
|
||||||
|
labelApplicationName.Location = New Point(newLeft, labelApplicationName.Top)
|
||||||
|
labelSubtitle.CalcBestSize()
|
||||||
|
newLeft = CType((Width - labelSubtitle.Width) / 2, Integer)
|
||||||
|
Me.labelSubtitle.Location = New Point(newLeft, labelSubtitle.Top)
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
Public Overrides Sub ProcessCommand(ByVal cmd As System.Enum, ByVal arg As Object)
|
||||||
|
MyBase.ProcessCommand(cmd, arg)
|
||||||
|
If (CType(cmd, UpdateSplashCommand) = UpdateSplashCommand.Description) Then
|
||||||
|
labelStatus.Text = CType(arg, String)
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Public Enum SplashScreenCommand
|
||||||
|
SomeCommandId
|
||||||
|
End Enum
|
||||||
|
End Class
|
||||||
@@ -12,6 +12,7 @@
|
|||||||
<add key="Uri" value="http://momonline.com:88/api/" />
|
<add key="Uri" value="http://momonline.com:88/api/" />
|
||||||
<add key="GeocodeAPIKey" value="AIzaSyD4RgVEapyYNlAgjemLgtbpOEVC2p2yXY4" />
|
<add key="GeocodeAPIKey" value="AIzaSyD4RgVEapyYNlAgjemLgtbpOEVC2p2yXY4" />
|
||||||
<add key="BingMapsKey" value="AkuhLMqiOJ6mqhY8zVPQCLMNFPEP0b4neaExb_eolTgT4Q0hF3098zXBJHMQa1WI" />
|
<add key="BingMapsKey" value="AkuhLMqiOJ6mqhY8zVPQCLMNFPEP0b4neaExb_eolTgT4Q0hF3098zXBJHMQa1WI" />
|
||||||
|
<add key="NuvolarServer" value="a1IyWjQrbFNMTE5PbkdyM0FSNWc4b0VUSXM4THZqTjdqdEpUMnA3UFJBdz0="/>
|
||||||
</appSettings>
|
</appSettings>
|
||||||
<connectionStrings>
|
<connectionStrings>
|
||||||
<!--XPO Profiler MySQL-->
|
<!--XPO Profiler MySQL-->
|
||||||
|
|||||||
Reference in New Issue
Block a user