Ejemplo n.º 1
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);
 }
Ejemplo n.º 2
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();
 }
Ejemplo n.º 3
0
 public frmForPurchaseList()
 {
     InitializeComponent();
     noticeLogic = new ORD_PurchaseNoticeLogic(this);
     InitializeGrid();
 }
Ejemplo n.º 4
0
 public frmSelectForPurchaseList(bool isMutiSelect)
 {
     InitializeComponent();
     InitBaseSelectForm(isMutiSelect, this.dgvPurchaseList, this.chkAll, _idColName, _chkColName);
     noticeLogic = new ORD_PurchaseNoticeLogic(this);
 }