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.
37 lines
862 B
37 lines
862 B
using NFine.Application.WMS;
|
|
using NFine.Code;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
|
|
namespace NFine.Web.Areas.WMS.Controllers
|
|
{
|
|
public class PDAVersionController : Controller
|
|
{
|
|
PDAVersionApp App = new PDAVersionApp();
|
|
// GET: WMS/PDAVersion
|
|
public ActionResult PDAVersion()
|
|
{
|
|
return View();
|
|
}
|
|
public ActionResult PDAVersionUpdate()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
[HttpPost]
|
|
[HandlerAjaxOnly]
|
|
public ActionResult GetInputValue(string ID)
|
|
{
|
|
DataTable ListData = App.GetInputValue(ID);
|
|
var JsonData = new
|
|
{
|
|
rows = ListData,
|
|
};
|
|
return Content(JsonData.ToJson());
|
|
}
|
|
}
|
|
}
|