First create solution
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
namespace Nuvolar.Module
|
||||
{
|
||||
partial class NavigationItemVCC
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Component Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
components = new System.ComponentModel.Container();
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using DevExpress.ExpressApp.Actions;
|
||||
using DevExpress.ExpressApp.SystemModule;
|
||||
using DevExpress.ExpressApp.Xpo;
|
||||
|
||||
namespace Nuvolar.Module
|
||||
{
|
||||
// For more typical usage scenarios, be sure to check out http://documentation.devexpress.com/#Xaf/clsDevExpressExpressAppWindowControllertopic.
|
||||
public partial class NavigationItemVCC : Nuvolar.Module.Win.SISShowNavigationItemController
|
||||
{
|
||||
public NavigationItemVCC()
|
||||
{
|
||||
InitializeComponent();
|
||||
RegisterActions(components);
|
||||
// Target required Windows (via the TargetXXX properties) and create their Actions.
|
||||
}
|
||||
protected override void OnActivated()
|
||||
{
|
||||
base.OnActivated();
|
||||
// Perform various tasks depending on the target Window.
|
||||
}
|
||||
protected override void OnDeactivated()
|
||||
{
|
||||
// Unsubscribe from previously subscribed events and release other references and resources.
|
||||
base.OnDeactivated();
|
||||
}
|
||||
|
||||
protected override void ShowNavigationItem(SingleChoiceActionExecuteEventArgs args)
|
||||
{
|
||||
if (args.SelectedChoiceActionItem != null && args.SelectedChoiceActionItem.Enabled)
|
||||
{
|
||||
if (args.SelectedChoiceActionItem.Id == "NAVInvoiceReport_ListView")
|
||||
{
|
||||
XPObjectSpace _onew = (XPObjectSpace)Application.CreateObjectSpace();
|
||||
NAVInvoiceReport _NAVInvoiceReport = _onew.CreateObject<NAVInvoiceReport>();
|
||||
|
||||
args.ShowViewParameters.CreatedView = Application.CreateDetailView(_onew, "NAVInvoiceReport_DetailView", true, _NAVInvoiceReport);
|
||||
}
|
||||
else
|
||||
{
|
||||
base.ShowNavigationItem(args);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,77 @@
|
||||
namespace Nuvolar.Module.Controllers
|
||||
{
|
||||
partial class NewCustomersFromVC
|
||||
{
|
||||
/// <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.aNewCustomersFrom = new DevExpress.ExpressApp.Actions.PopupWindowShowAction(this.components);
|
||||
this.aGenerateDEMOData = new DevExpress.ExpressApp.Actions.PopupWindowShowAction(this.components);
|
||||
//
|
||||
// aNewCustomersFrom
|
||||
//
|
||||
this.aNewCustomersFrom.AcceptButtonCaption = null;
|
||||
this.aNewCustomersFrom.CancelButtonCaption = null;
|
||||
this.aNewCustomersFrom.Caption = "aNew Customers From";
|
||||
this.aNewCustomersFrom.ConfirmationMessage = null;
|
||||
this.aNewCustomersFrom.Id = "aNewCustomersFrom";
|
||||
this.aNewCustomersFrom.TargetObjectType = typeof(Nuvolar.Module.CustomersFrom);
|
||||
this.aNewCustomersFrom.TargetViewNesting = DevExpress.ExpressApp.Nesting.Root;
|
||||
this.aNewCustomersFrom.TargetViewType = DevExpress.ExpressApp.ViewType.ListView;
|
||||
this.aNewCustomersFrom.ToolTip = null;
|
||||
this.aNewCustomersFrom.TypeOfView = typeof(DevExpress.ExpressApp.ListView);
|
||||
this.aNewCustomersFrom.CustomizePopupWindowParams += new DevExpress.ExpressApp.Actions.CustomizePopupWindowParamsEventHandler(this.aNewCustomersFrom_Customize);
|
||||
this.aNewCustomersFrom.Execute += new DevExpress.ExpressApp.Actions.PopupWindowShowActionExecuteEventHandler(this.aNewCustomersFrom_Execute);
|
||||
//
|
||||
// aGenerateDEMOData
|
||||
//
|
||||
this.aGenerateDEMOData.AcceptButtonCaption = null;
|
||||
this.aGenerateDEMOData.CancelButtonCaption = null;
|
||||
this.aGenerateDEMOData.Caption = "aGenerate DEMOData";
|
||||
this.aGenerateDEMOData.ConfirmationMessage = null;
|
||||
this.aGenerateDEMOData.Id = "aGenerateDEMOData";
|
||||
this.aGenerateDEMOData.TargetObjectType = typeof(Nuvolar.Module.CustomersFrom);
|
||||
this.aGenerateDEMOData.TargetViewNesting = DevExpress.ExpressApp.Nesting.Root;
|
||||
this.aGenerateDEMOData.TargetViewType = DevExpress.ExpressApp.ViewType.ListView;
|
||||
this.aGenerateDEMOData.ToolTip = null;
|
||||
this.aGenerateDEMOData.TypeOfView = typeof(DevExpress.ExpressApp.ListView);
|
||||
this.aGenerateDEMOData.CustomizePopupWindowParams += new DevExpress.ExpressApp.Actions.CustomizePopupWindowParamsEventHandler(this.aGenerateDEMOData_Customize);
|
||||
this.aGenerateDEMOData.Execute += new DevExpress.ExpressApp.Actions.PopupWindowShowActionExecuteEventHandler(this.aGenerateDEMOData_Execute);
|
||||
//
|
||||
// NewCustomersFromVC
|
||||
//
|
||||
this.Actions.Add(this.aNewCustomersFrom);
|
||||
this.Actions.Add(this.aGenerateDEMOData);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private DevExpress.ExpressApp.Actions.PopupWindowShowAction aNewCustomersFrom;
|
||||
private DevExpress.ExpressApp.Actions.PopupWindowShowAction aGenerateDEMOData;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,124 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using DevExpress.Data.Filtering;
|
||||
using DevExpress.ExpressApp;
|
||||
using DevExpress.ExpressApp.Actions;
|
||||
using DevExpress.ExpressApp.Xpo;
|
||||
using Nuvolar.Module.BusinessObjects;
|
||||
using Nuvolar.Module.Win;
|
||||
|
||||
namespace Nuvolar.Module.Controllers
|
||||
{
|
||||
// For more typical usage scenarios, be sure to check out https://documentation.devexpress.com/eXpressAppFramework/clsDevExpressExpressAppViewControllertopic.aspx.
|
||||
public partial class NewCustomersFromVC : ViewController
|
||||
{
|
||||
private WaitFormClass _WaitFormClass;
|
||||
private XPObjectSpace _onew;
|
||||
private int _Counter = 0;
|
||||
public NewCustomersFromVC()
|
||||
{
|
||||
InitializeComponent();
|
||||
// Target required Views (via the TargetXXX properties) and create their Actions.
|
||||
}
|
||||
protected override void OnActivated()
|
||||
{
|
||||
base.OnActivated();
|
||||
_WaitFormClass = new WaitFormClass();
|
||||
// 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 aNewCustomersFrom_Customize(object sender, CustomizePopupWindowParamsEventArgs e)
|
||||
{
|
||||
XPObjectSpace _onew = (XPObjectSpace)Application.CreateObjectSpace();
|
||||
NewCustomersFrom _NewCustomersFrom = _onew.CreateObject<NewCustomersFrom>();
|
||||
CustomersFrom _CustomersFrom = _onew.FindObject<CustomersFrom>(CriteriaOperator.Parse("IsDefault=True"));
|
||||
if (_CustomersFrom != null)
|
||||
{
|
||||
if (_CustomersFrom.CustomerBankAccounts.Count == 1)
|
||||
{
|
||||
_NewCustomersFrom.Bank_AccountNumber = _CustomersFrom.CustomerBankAccounts[0].AccountNumber;
|
||||
_NewCustomersFrom.Bank_IBAN = _CustomersFrom.CustomerBankAccounts[0].IBAN;
|
||||
_NewCustomersFrom.Bank_SWIFT = _CustomersFrom.CustomerBankAccounts[0].SWIFT;
|
||||
_NewCustomersFrom.Bank_ShortName = _CustomersFrom.CustomerBankAccounts[0].ShortName;
|
||||
}
|
||||
}
|
||||
e.View = Application.CreateDetailView(_onew, "NewCustomersFrom_DetailView_Stock", true, _NewCustomersFrom);
|
||||
}
|
||||
private void aNewCustomersFrom_Execute(object sender, PopupWindowShowActionExecuteEventArgs e)
|
||||
{
|
||||
Frame.GetController<DevExpress.ExpressApp.Validation.PersistenceValidationController>().Active.SetItemValue("", false);
|
||||
NewCustomersFrom _NewCustomersFrom = (NewCustomersFrom)e.PopupWindow.View.SelectedObjects[0];
|
||||
_onew = (XPObjectSpace)e.PopupWindow.View.ObjectSpace;
|
||||
|
||||
if (_NewCustomersFrom!=null) {
|
||||
|
||||
_NewCustomersFrom.InitWork += NewCustomersFrom_InitWork;
|
||||
_NewCustomersFrom.DoWork += NewCustomersFrom_DoWork;
|
||||
_NewCustomersFrom.FinalWork += NewCustomersFrom_FinalWork;
|
||||
|
||||
GeneralFunction.GLOBAL_HAS_Audit = false;
|
||||
_NewCustomersFrom.AddNewCustomersFrom();
|
||||
_onew.CommitChanges();
|
||||
GeneralFunction.GLOBAL_HAS_Audit = true;
|
||||
}
|
||||
Frame.GetController<DevExpress.ExpressApp.Validation.PersistenceValidationController>().Active.SetItemValue("", true);
|
||||
}
|
||||
private void aGenerateDEMOData_Customize(object sender, CustomizePopupWindowParamsEventArgs e)
|
||||
{
|
||||
XPObjectSpace _onew = (XPObjectSpace)Application.CreateObjectSpace();
|
||||
NewCustomersFrom _NewCustomersFrom = _onew.CreateObject<NewCustomersFrom>();
|
||||
CustomersFrom _CustomersFrom = _onew.FindObject<CustomersFrom>(CriteriaOperator.Parse("IsDefault=True"));
|
||||
|
||||
_NewCustomersFrom.CustomersFrom = _CustomersFrom;
|
||||
e.View = Application.CreateDetailView(_onew, "NewCustomersFrom_DetailView_Demo", true, _NewCustomersFrom);
|
||||
}
|
||||
private void aGenerateDEMOData_Execute(object sender, PopupWindowShowActionExecuteEventArgs e)
|
||||
{
|
||||
NewCustomersFrom _NewCustomersFrom = (NewCustomersFrom)e.PopupWindow.View.SelectedObjects[0];
|
||||
_onew = (XPObjectSpace)e.PopupWindow.View.ObjectSpace;
|
||||
|
||||
if (_NewCustomersFrom != null)
|
||||
{
|
||||
|
||||
_NewCustomersFrom.InitWork += NewCustomersFrom_InitWork;
|
||||
_NewCustomersFrom.DoWork += NewCustomersFrom_DoWork;
|
||||
_NewCustomersFrom.FinalWork += NewCustomersFrom_FinalWork;
|
||||
|
||||
GeneralFunction.GLOBAL_HAS_Audit = false;
|
||||
_NewCustomersFrom.GenerateDEMOData(_onew);
|
||||
_onew.CommitChanges();
|
||||
GeneralFunction.GLOBAL_HAS_Audit = true;
|
||||
}
|
||||
}
|
||||
private void NewCustomersFrom_FinalWork(object sender, WorkEventArgs e)
|
||||
{
|
||||
_WaitFormClass.FinalWork();
|
||||
}
|
||||
private void NewCustomersFrom_DoWork(object sender, WorkEventArgs e)
|
||||
{
|
||||
_WaitFormClass.DoWork();
|
||||
_Counter++;
|
||||
|
||||
if (_Counter % 100 == 0)
|
||||
{
|
||||
_onew.CommitChanges();
|
||||
}
|
||||
}
|
||||
private void NewCustomersFrom_InitWork(object sender, WorkEventArgs e)
|
||||
{
|
||||
_WaitFormClass.Initwork(1, 1, e.Count);
|
||||
_WaitFormClass.Caption = e.Message;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,129 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="aNewCustomersFrom.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
<metadata name="aGenerateDEMOData.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>221, 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,19 @@
|
||||
Folder Description
|
||||
|
||||
The "Controllers" project folder is intended for storing platform-agnostic Controller classes
|
||||
that can change the default XAF application flow and add new features.
|
||||
|
||||
|
||||
Relevant Documentation
|
||||
|
||||
Extend Functionality
|
||||
https://documentation.devexpress.com/eXpressAppFramework/CustomDocument112623.aspx
|
||||
|
||||
Controller Class
|
||||
https://documentation.devexpress.com/eXpressAppFramework/clsDevExpressExpressAppControllertopic.aspx
|
||||
|
||||
ViewController Class
|
||||
https://documentation.devexpress.com/eXpressAppFramework/clsDevExpressExpressAppViewControllertopic.aspx
|
||||
|
||||
WindowController Class
|
||||
https://documentation.devexpress.com/eXpressAppFramework/clsDevExpressExpressAppWindowControllertopic.aspx
|
||||
Reference in New Issue
Block a user