JUSTWEB kialakítása
This commit is contained in:
@@ -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();
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user