Esempio n. 1
0
 private void ShowInfo()
 {
     MyERP.BLL.SAL_ITEM_STOCK_DETAIL_BEGIN   bll   = new MyERP.BLL.SAL_ITEM_STOCK_DETAIL_BEGIN();
     MyERP.Model.SAL_ITEM_STOCK_DETAIL_BEGIN model = bll.GetModel();
     this.txtSTOCK_CODE.Text         = model.STOCK_CODE;
     this.txtSTOCK_NAME.Text         = model.STOCK_NAME;
     this.txtITEM_INTERNAL_CODE.Text = model.ITEM_INTERNAL_CODE;
     this.txtITEM_CODE.Text          = model.ITEM_CODE;
     this.txtITEM_NAME.Text          = model.ITEM_NAME;
     this.txtACTUAL_QTY.Text         = model.ACTUAL_QTY.ToString();
     this.txtCREATE_DATE.Text        = model.CREATE_DATE.ToString();
 }