Exemplo n.º 1
0
        //
        // GET: /StockIntoSearch/Details/

        public ActionResult Details(int page, int rows, FormCollection collection)
        {
            string BillNo            = collection["BillNo"] ?? "";
            string WarehouseCode     = collection["WarehouseCode"] ?? "";
            string BeginDate         = collection["BeginDate"] ?? "";
            string EndDate           = collection["EndDate"] ?? "";
            string OperatePersonCode = collection["OperatePerson"] ?? "";
            string CheckPersonCode   = collection["CheckPerson"] ?? "";
            string Operate_Status    = collection["Operate_Status"] ?? "";
            var    inBillMaster      = StockIntoSearchService.GetDetails(page, rows, BillNo, WarehouseCode, BeginDate, EndDate, OperatePersonCode, CheckPersonCode, Operate_Status);

            return(Json(inBillMaster, "text", JsonRequestBehavior.AllowGet));
        }
Exemplo n.º 2
0
        //
        // GET: /StockIntoSearch/DetailInfos/

        public ActionResult InfoDetails(int page, int rows, string BillNo)
        {
            var inBillDetail = StockIntoSearchService.GetDetailInfos(page, rows, BillNo);

            return(Json(inBillDetail, "text", JsonRequestBehavior.AllowGet));
        }