public FrmOrderAccount(long deptId, string chineseName, string belongSystem)
 {
     InitializeComponent();
     _deptId       = (int)deptId;
     _belongSystem = belongSystem;
     _accountQuery = AccountFactory.GetQuery(belongSystem);
     this.Text     = chineseName;
 }
 public FrmMonthAccount(string belongSystem, long currentUser, long currentDept)
 {
     _belongSystem = belongSystem;
     _monthAccount = AccountFactory.GetMonthBalancer(belongSystem);
     _accountQuery = AccountFactory.GetQuery(belongSystem);
     _currentUser  = currentUser;
     _currentDept  = currentDept;
     InitializeComponent();
 }
Beispiel #3
0
 public FrmIOSQuery(long currentUser, long currentDept, string chineseName, string belongSystem)
 {
     _currentUser  = currentUser;
     _currentDept  = currentDept;
     _chineseName  = chineseName;
     _belongSystem = belongSystem;
     _accountQuery = AccountFactory.GetQuery(belongSystem);
     InitializeComponent();
 }
 public FrmStoreQuery(long currentUser, long currentDept, string chineseName, string belongSystem)
 {
     _currentUser  = currentUser;
     _currentDept  = currentDept;
     _chineseName  = chineseName;
     _belongSystem = belongSystem;
     _filterType   = Constant.CustomFilterType;
     _searchType   = Constant.CustomSearchType;
     _storeQuery   = StoreFactory.GetQuery(belongSystem);
     accountQuery  = AccountFactory.GetQuery(belongSystem);
     InitializeComponent();
 }