コード例 #1
0
 public frmStockManage()
 {
     InitializeComponent();
     stockTtlLogic = new STK_StockTtlLogic(this);
     stockLogic    = new STK_StockLogic(this);
     dictLineLogic = new SYS_DictItemLineLogic(this);
     InitializeGrid();
 }
コード例 #2
0
ファイル: frmReserveOperate.cs プロジェクト: windygu/CRM
 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);
 }
コード例 #3
0
ファイル: frmStkIn.cs プロジェクト: halfx/ZNL
 void InitForm(string billType, Guid?sourceBillGuid)
 {
     InitializeComponent();
     this.GetEditEntity += new dlgGetEditEntity(Form_GetEditEntity);
     dictLineLogic       = new SYS_DictItemLineLogic(this);
     orgLogic            = new HR_OrgLogic(this);
     purOrderLogic       = new ORD_PurchaseOrderLogic(this);
     purLineLogic        = new ORD_PurchaseOrderLineLogic(this);
     stkInLogic          = new STK_InLogic(this);
     companyLogic        = new CRM_CompanyLogic(this);
     currencyLogic       = new SYS_CurrencyLogic(this);
     stkStockLogic       = new STK_StockLogic(this);
     stkInLineLogic      = new STK_InLineLogic(this);
     stkStockSheetLogic  = new STK_StockSheetLogic(this);
     returnLogic         = new ORD_SalesReturnLogic(this);
     returnLineLogic     = new ORD_SalesReturnLineLogic(this);
     BillType            = billType;
     _sourceBillGuid     = sourceBillGuid;
 }
コード例 #4
0
 public frmSelectStock(bool isMutiSelect)
 {
     InitializeComponent();
     InitBaseSelectForm(isMutiSelect, this.dgvStock, this.chkAll, _idColName, _chkColName);
     stockLogic = new STK_StockLogic(this);
 }