Néhány fordítás + WIN-WEB keveredés ...

This commit is contained in:
2017-08-26 10:53:26 +02:00
parent e986f8cc23
commit 7c75750dd5
4 changed files with 38 additions and 14 deletions
@@ -15,7 +15,7 @@ using DevExpress.Persistent.Base;
using DevExpress.Persistent.Validation;
using DevExpress.ExpressApp.Xpo;
using DevExpress.Xpo;
using Nuvolar.Module.Win;
//using Nuvolar.Module.Win;
namespace Nuvolar.Module.BusinessObjects
{
@@ -23,7 +23,7 @@ namespace Nuvolar.Module.BusinessObjects
public partial class PriceFixCustomers_VC : ViewController
{
private WaitFormClass _WaitFormClass;
//private WaitFormClass _WaitFormClass;
public PriceFixCustomers_VC()
{
InitializeComponent();
@@ -34,7 +34,7 @@ namespace Nuvolar.Module.BusinessObjects
base.OnActivated();
if (View.Id == "PriceFixCustomers_ListView")
{
_WaitFormClass = new WaitFormClass();
//_WaitFormClass = new WaitFormClass();
Load_PriceFixCustomers_ListView();
}
// Perform various tasks depending on the target View.
@@ -72,10 +72,10 @@ namespace Nuvolar.Module.BusinessObjects
XPCollection<Customers> _Customers_Collection = new XPCollection<Customers>(_ocur.Session, CriteriaOperator.Parse("IsNull(Pricing)=False"));
_WaitFormClass.Initwork(1, 1, _Customers_Collection.Count);
//_WaitFormClass.Initwork(1, 1, _Customers_Collection.Count);
foreach (Customers _Customers in _Customers_Collection)
{
_WaitFormClass.DoWork();
//_WaitFormClass.DoWork();
foreach (PricingFix _PricingFix in _Customers.Pricing.PricingFix)
{
PriceFixCustomers _PriceFixCustomers = new PriceFixCustomers(_ocur.Session);
@@ -138,7 +138,7 @@ namespace Nuvolar.Module.BusinessObjects
}
}
_WaitFormClass.FinalWork();
//_WaitFormClass.FinalWork();
}
}