MNB Árfolyam 2006-tól

Ügyfél ármátrix
Szállítói bizonylat árfolyam kitöltése
This commit is contained in:
2017-06-29 20:27:02 +02:00
parent 94cb4bcc7b
commit 1a95ad3a1a
17 changed files with 864 additions and 120 deletions
@@ -0,0 +1,26 @@
using System;
using DevExpress.Xpo;
using DevExpress.Persistent.Base;
namespace Nuvolar.Module.BusinessObjects
{
[DefaultClassOptions]
[NavigationItem(false)]
[NonPersistent()]
public class PriceFixCustomers : XPBaseObject
{
public PriceFixCustomers(Session session) : base(session) { }
public Customers Customers { get; set; }
public Products Products { get; set; }
public double PriceNettoHUF { get; set; }
public double PriceNettoDEV { get; set; }
public double PriceAverageNettoHUF { get; set; }
public double PriceAverageNettoDEV { get; set; }
public double MarginPercent { get; set; }
public CurrencyName CurrencyName { get; set; }
public double CurrencyRateValue { get; set; }
public DateTime DateValid { get; set; }
}
}
@@ -0,0 +1,56 @@
namespace Nuvolar.Module.BusinessObjects
{
partial class PriceFixCustomers_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.aViewPriceFixCustomers = new DevExpress.ExpressApp.Actions.SimpleAction(this.components);
//
// aViewPriceFixCustomers
//
this.aViewPriceFixCustomers.Caption = "aView Price Fix Customers";
this.aViewPriceFixCustomers.ConfirmationMessage = null;
this.aViewPriceFixCustomers.Id = "aViewPriceFixCustomers";
this.aViewPriceFixCustomers.TargetObjectType = typeof(Nuvolar.Module.Customers);
this.aViewPriceFixCustomers.TargetViewNesting = DevExpress.ExpressApp.Nesting.Root;
this.aViewPriceFixCustomers.TargetViewType = DevExpress.ExpressApp.ViewType.ListView;
this.aViewPriceFixCustomers.ToolTip = null;
this.aViewPriceFixCustomers.TypeOfView = typeof(DevExpress.ExpressApp.ListView);
this.aViewPriceFixCustomers.Execute += new DevExpress.ExpressApp.Actions.SimpleActionExecuteEventHandler(this.aViewPriceFixCustomers_Execute);
//
// PriceFixCustomers_VC
//
this.Actions.Add(this.aViewPriceFixCustomers);
}
#endregion
private DevExpress.ExpressApp.Actions.SimpleAction aViewPriceFixCustomers;
}
}
@@ -0,0 +1,145 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DevExpress.Data.Filtering;
using DevExpress.ExpressApp;
using DevExpress.ExpressApp.Actions;
using DevExpress.ExpressApp.Editors;
using DevExpress.ExpressApp.Layout;
using DevExpress.ExpressApp.Model.NodeGenerators;
using DevExpress.ExpressApp.SystemModule;
using DevExpress.ExpressApp.Templates;
using DevExpress.ExpressApp.Utils;
using DevExpress.Persistent.Base;
using DevExpress.Persistent.Validation;
using DevExpress.ExpressApp.Xpo;
using DevExpress.Xpo;
using Nuvolar.Module.Win;
namespace Nuvolar.Module.BusinessObjects
{
// For more typical usage scenarios, be sure to check out https://documentation.devexpress.com/eXpressAppFramework/clsDevExpressExpressAppViewControllertopic.aspx.
public partial class PriceFixCustomers_VC : ViewController
{
private WaitFormClass _WaitFormClass;
public PriceFixCustomers_VC()
{
InitializeComponent();
// Target required Views (via the TargetXXX properties) and create their Actions.
}
protected override void OnActivated()
{
base.OnActivated();
if (View.Id == "PriceFixCustomers_ListView")
{
_WaitFormClass = new WaitFormClass();
Load_PriceFixCustomers_ListView();
}
// 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 aViewPriceFixCustomers_Execute(object sender, SimpleActionExecuteEventArgs e)
{
XPObjectSpace _onew = (XPObjectSpace)Application.CreateObjectSpace();
CollectionSource _CS = new CollectionSource(_onew, typeof(PriceFixCustomers));
e.ShowViewParameters.CreatedView = Application.CreateListView("PriceFixCustomers_ListView", _CS, false);
e.ShowViewParameters.NewWindowTarget = NewWindowTarget.MdiChild;
e.ShowViewParameters.TargetWindow = TargetWindow.NewWindow;
}
private void Load_PriceFixCustomers_ListView()
{
XPObjectSpace _ocur = View.ObjectSpace as XPObjectSpace;
ListView _ListView = View as ListView;
XPCollection<CurrencyRate> _CurrencyRate_Collection = new XPCollection<CurrencyRate>(_ocur.Session, CriteriaOperator.Parse("IsMNB=True And GetDate(DateValid)=?", DateTime.Now.Date));
XPCollection<Customers> _Customers_Collection = new XPCollection<Customers>(_ocur.Session, CriteriaOperator.Parse("IsNull(Pricing)=False"));
_WaitFormClass.Initwork(1, 1, _Customers_Collection.Count);
foreach (Customers _Customers in _Customers_Collection)
{
_WaitFormClass.DoWork();
foreach (PricingFix _PricingFix in _Customers.Pricing.PricingFix)
{
PriceFixCustomers _PriceFixCustomers = new PriceFixCustomers(_ocur.Session);
_PriceFixCustomers.Customers = _Customers;
_PriceFixCustomers.CurrencyName = _PricingFix.CurrencyName;
_PriceFixCustomers.Products = _PricingFix.Products;
if (_PricingFix.CurrencyName.ShortName == "HUF")
{
_PriceFixCustomers.PriceNettoHUF = _PricingFix.PriceNetto;
_PriceFixCustomers.PriceNettoDEV = 0;
}
else
{
foreach (CurrencyRate _CurrencyRate in _CurrencyRate_Collection)
{
if (_CurrencyRate.CurrencyName.ShortName == _PricingFix.CurrencyName.ShortName)
{
_PriceFixCustomers.PriceNettoHUF = _PricingFix.PriceNetto * _CurrencyRate.RateAverage;
_PriceFixCustomers.CurrencyRateValue = _CurrencyRate.RateAverage;
}
}
_PriceFixCustomers.PriceNettoDEV = _PricingFix.PriceNetto;
}
_PriceFixCustomers.CurrencyName = _PricingFix.CurrencyName;
XPCollection<DeliveryNoteInRRFC> _DeliveryNoteInRRFC_Collection = new XPCollection<DeliveryNoteInRRFC>(_ocur.Session, CriteriaOperator.Parse("IsNull(RegistryRowsFinancialControlling)=False And DeliveryNoteInRows.DeliveryNoteInHeader.IsEditable=False And DeliveryNoteInRows.Products=?", _PricingFix.Products));
_DeliveryNoteInRRFC_Collection.Sorting.Add(new SortProperty("RegistryRowsFinancialControlling.RegistryHeader.F_DateExecution", DevExpress.Xpo.DB.SortingDirection.Descending));
if (_DeliveryNoteInRRFC_Collection.Count > 0)
{
_PriceFixCustomers.DateValid = _DeliveryNoteInRRFC_Collection[0].RegistryRowsFinancialControlling.RegistryHeader.F_DateExecution;
if (_DeliveryNoteInRRFC_Collection[0].RegistryRowsFinancialControlling.RegistryHeader.F_CurrencyName.ShortName == "HUF")
{
_PriceFixCustomers.PriceAverageNettoDEV = 0;
_PriceFixCustomers.PriceAverageNettoHUF = (_DeliveryNoteInRRFC_Collection[0].DeliveryNoteInRows.SumPriceHUF) / _DeliveryNoteInRRFC_Collection[0].DeliveryNoteInRows.QTT;
}
else
{
_PriceFixCustomers.PriceAverageNettoDEV = _DeliveryNoteInRRFC_Collection[0].DeliveryNoteInRows.SumPriceDEV / _DeliveryNoteInRRFC_Collection[0].DeliveryNoteInRows.QTT;
_PriceFixCustomers.PriceAverageNettoHUF = (_DeliveryNoteInRRFC_Collection[0].DeliveryNoteInRows.SumPriceDEV * _DeliveryNoteInRRFC_Collection[0].RegistryRowsFinancialControlling.RegistryHeader.F_CurrencyRate) / _DeliveryNoteInRRFC_Collection[0].DeliveryNoteInRows.QTT;
}
}
if (_PriceFixCustomers.PriceNettoHUF!=0)
{
if (_PriceFixCustomers.CurrencyName.ShortName == "HUF")
{
_PriceFixCustomers.MarginPercent = (_PriceFixCustomers.PriceNettoHUF - _PriceFixCustomers.PriceAverageNettoHUF) / _PriceFixCustomers.PriceNettoHUF * 100;
}
else {
_PriceFixCustomers.MarginPercent = (_PriceFixCustomers.PriceNettoDEV - _PriceFixCustomers.PriceAverageNettoDEV) / _PriceFixCustomers.PriceNettoDEV * 100;
}
}
_ListView.CollectionSource.Add(_PriceFixCustomers);
}
}
_WaitFormClass.FinalWork();
}
}
}
@@ -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="aViewPriceFixCustomers.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>