You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
862 B

  1. using NFine.Application.WMS;
  2. using NFine.Code;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Data;
  6. using System.Linq;
  7. using System.Web;
  8. using System.Web.Mvc;
  9. namespace NFine.Web.Areas.WMS.Controllers
  10. {
  11. public class PDAVersionController : Controller
  12. {
  13. PDAVersionApp App = new PDAVersionApp();
  14. // GET: WMS/PDAVersion
  15. public ActionResult PDAVersion()
  16. {
  17. return View();
  18. }
  19. public ActionResult PDAVersionUpdate()
  20. {
  21. return View();
  22. }
  23. [HttpPost]
  24. [HandlerAjaxOnly]
  25. public ActionResult GetInputValue(string ID)
  26. {
  27. DataTable ListData = App.GetInputValue(ID);
  28. var JsonData = new
  29. {
  30. rows = ListData,
  31. };
  32. return Content(JsonData.ToJson());
  33. }
  34. }
  35. }