Beispiel #1
0
        /// <summary>
        /// 返回可以处理的出库单(参数未实现)
        /// </summary>
        /// <returns></returns>
        public IList <StoreOrderModel> GetStoreOrderList(PaginationModel pagin, string condition)
        {
            string table   = "StoreOrder";
            string key     = "ID";
            string comlums = " ID,StoreID,StoreOrderID,ExpectNum,TotalPv,TotalMoney,IsCheckOut,PayMentDateTime,InceptPerson"
                             + ",InceptAddress,Telephone,Weight,Carriage,OrderDateTime ";

            return(storeOrderServer.GetStoreOrderListEffectBillOutOrder(pagin, table, key, comlums, condition));
        }