コード例 #1
0
ファイル: frmSalesOrder.cs プロジェクト: windygu/CRM
 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);
 }
コード例 #2
0
ファイル: frmPurchaseNotice.cs プロジェクト: windygu/CRM
 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();
 }
コード例 #3
0
ファイル: frmForPurchaseList.cs プロジェクト: windygu/CRM
 public frmForPurchaseList()
 {
     InitializeComponent();
     noticeLogic = new ORD_PurchaseNoticeLogic(this);
     InitializeGrid();
 }
コード例 #4
0
 public frmSelectForPurchaseList(bool isMutiSelect)
 {
     InitializeComponent();
     InitBaseSelectForm(isMutiSelect, this.dgvPurchaseList, this.chkAll, _idColName, _chkColName);
     noticeLogic = new ORD_PurchaseNoticeLogic(this);
 }