private void GetOrderOut()
 {
     _sb.Execute("SelectAllOrderOutCapability");
     if (_sb.Success != null)
     {
         OrderOutDT            = (DataTable)_sb.Success;
         OrderOutGV.DataSource = OrderOutDT;
         OrderOutGV.DataBind();
     }
 }
Example #2
0
        private void GetOrderOutByBook()
        {
            _sb._Flag     = "C";
            _sb._Top      = 1;
            _sb._PageSize = 1000;
            _sb._BookId   = bookId;

            _sb.Execute("SelectOrderOut_ItemByBookIdCapability");
            if (_sb.Success != null)
            {
                DataTable orderOutItemBook = (DataTable)_sb.Success;
                OrderOutGV.DataSource = orderOutItemBook;
                OrderOutGV.DataBind();
            }
        }