Adatmigráció más Nuvolar rendszerből (MSSQL !!!)

MySQL
This commit is contained in:
2020-09-03 19:32:31 +02:00
parent cfee10542b
commit 301091c4e1
23 changed files with 1552 additions and 24 deletions
@@ -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;
};
}
}
}
}
@@ -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>