Example #1
0
 public frmSalesReturnManage()
 {
     InitializeComponent();
     returnLogic   = new ORD_SalesReturnLogic(this);
     dictLineLogic = new SYS_DictItemLineLogic(this);
     stkInLogic    = new STK_InLogic(this);
 }
Example #2
0
 public frmSalesOrderManage()
 {
     InitializeComponent();
     orderLogic    = new ORD_SalesOrderLogic(this);
     dictLineLogic = new SYS_DictItemLineLogic(this);
     returnLogic   = new ORD_SalesReturnLogic(this);
     outLogic      = new STK_OutLogic(this);
 }
Example #3
0
 void InitForm(Guid?sourceBillGuid)
 {
     InitializeComponent();
     this.GetEditEntity += new dlgGetEditEntity(Form_GetEditEntity);
     dictLineLogic       = new SYS_DictItemLineLogic(this);
     orgLogic            = new HR_OrgLogic(this);
     returnLogic         = new ORD_SalesReturnLogic(this);
     outLineLogic        = new STK_OutLineLogic(this);
     companyLogic        = new CRM_CompanyLogic(this);
     orderLogic          = new ORD_SalesOrderLogic(this);
     _SOGuid             = sourceBillGuid;
 }
Example #4
0
 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;
 }
Example #5
0
 public frmSelectSalesReturn(bool isMutiSelect)
 {
     InitializeComponent();
     InitBaseSelectForm(isMutiSelect, this.dgvSalesReturn, this.chkAll, _idColName, _chkColName);
     returnLogic = new ORD_SalesReturnLogic(this);
 }