Esempio n. 1
0
 public frmStockReserve()
 {
     InitializeComponent();
     reserveLogic = new STK_StockReserveLogic(this);
     InitializeGrid();
     BindComboBox();
 }
Esempio n. 2
0
 public frmReserveOperate()
 {
     InitializeComponent();
     stockLogic      = new STK_StockLogic(this);
     reserveLogic    = new STK_StockReserveLogic(this);
     dictLineLogic   = new SYS_DictItemLineLogic(this);
     orderLineLogic  = new ORD_SalesOrderLineLogic(this);
     stkInLineLogic  = new STK_InLineLogic(this);
     returnLineLogic = new ORD_PurchaseReturnLineLogic(this);
 }
Esempio n. 3
0
 public frmSalesOrder()
 {
     InitializeComponent();
     this.GetEditEntity += new dlgGetEditEntity(Form_GetEditEntity);
     dictLineLogic       = new SYS_DictItemLineLogic(this);
     orgLogic            = new HR_OrgLogic(this);
     orderLogic          = new ORD_SalesOrderLogic(this);
     companyLogic        = new CRM_CompanyLogic(this);
     reserveLogic        = new STK_StockReserveLogic(this);
     noticeLogic         = new ORD_PurchaseNoticeLogic(this);
 }
Esempio n. 4
0
 void InitForm(string billType, Guid?sourceBillGuid)
 {
     InitializeComponent();
     stkOutLogic     = new STK_OutLogic(this);
     orgLogic        = new HR_OrgLogic(this);
     currencyLogic   = new SYS_CurrencyLogic(this);
     dictLineLogic   = new SYS_DictItemLineLogic(this);
     orderLineLogic  = new ORD_SalesOrderLineLogic(this);
     returnLogic     = new ORD_PurchaseReturnLogic(this);
     returnLineLogic = new ORD_PurchaseReturnLineLogic(this);
     reserveLogic    = new STK_StockReserveLogic(this);
     _billType       = billType;
     _sourceBillGuid = sourceBillGuid;
 }
Esempio n. 5
0
 public frmSelectStockReserve(bool isMutiSelect)
 {
     InitializeComponent();
     InitBaseSelectForm(isMutiSelect, this.dgvStockReserve, this.chkAll, _idColName, _chkColName);
     reserveLogic = new STK_StockReserveLogic(this);
 }