using Lib;
|
using System.Web.Mvc;
|
|
namespace wms.Areas.Business.Controllers
|
{
|
public class IPalletBindController : MasterPage
|
{
|
// GET: Business/PalletBind
|
[LoginFilter]
|
public ActionResult Index()
|
{
|
ViewBag.Title = "组盘";
|
ViewBag.StatuList = LocalHelper.GetDictionaryCodeHtml("CDStatu","-03");
|
|
return View();
|
}
|
|
[LoginFilter]
|
public ActionResult Add()
|
{
|
return View();
|
}
|
|
[LoginFilter]
|
public ActionResult Detail()
|
{
|
return View();
|
}
|
|
[LoginFilter]
|
public ActionResult SelAddre()
|
{
|
ViewBag.Type = LocalHelper.GetDictionaryCodeHtml("Type");
|
return View();
|
}
|
|
}
|
}
|