Пример #1
0
 public frmSalesOrderManage()
 {
     InitializeComponent();
     orderLogic    = new ORD_SalesOrderLogic(this);
     dictLineLogic = new SYS_DictItemLineLogic(this);
     returnLogic   = new ORD_SalesReturnLogic(this);
     outLogic      = new STK_OutLogic(this);
 }
Пример #2
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);
 }
Пример #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;
 }
Пример #4
0
 public frmPurchaseNotice()
 {
     InitializeComponent();
     orderLogic     = new ORD_SalesOrderLogic(this);
     orderLineLogic = new ORD_SalesOrderLineLogic(this);
     dictLineLogic  = new SYS_DictItemLineLogic(this);
     empLogic       = new HR_EmployeeLogic(this);
     noticeLogic    = new ORD_PurchaseNoticeLogic(this);
     noNoticedPanel = usgNoNoticed.PrimaryGrid;
     noticedPanel   = usgNoticed.PrimaryGrid;
     InitializeGrid();
     BindComboBox();
 }
Пример #5
0
 public frmSelectSalesOrder(bool isMutiSelect)
 {
     InitializeComponent();
     InitBaseSelectForm(isMutiSelect, this.dgvSalesOrder, this.chkAll, _idColName, _chkColName);
     orderLogic = new ORD_SalesOrderLogic(this);
 }