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.
64 lines
1.7 KiB
64 lines
1.7 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using Warehouse.Code;
|
|
|
|
namespace Warehouse.Controllers
|
|
{
|
|
[RoutePrefix("Warehouse")]
|
|
public class WarehouseController : Controller
|
|
{
|
|
|
|
[Route("StockIn")]
|
|
|
|
// GET: Warehouse
|
|
public ActionResult StockIn()
|
|
{
|
|
return View("~/Views/Warehouse/StockIn.cshtml");
|
|
}
|
|
|
|
[Route("LCL")]
|
|
//[RoleAuthorizeAttribute]
|
|
// GET: Warehouse
|
|
public ActionResult LCL()
|
|
{
|
|
return View("~/Views/Warehouse/LCL.cshtml");
|
|
}
|
|
|
|
[Route("Shipment")]
|
|
// GET: Warehouse
|
|
public ActionResult Shipment()
|
|
{
|
|
return View("~/Views/Warehouse/Shipment.cshtml");
|
|
}
|
|
[Route("InspectionShipment")]
|
|
// GET: Warehouse
|
|
public ActionResult InspectionShipment()
|
|
{
|
|
return View("~/Views/Warehouse/InspectionShipment.cshtml");
|
|
}
|
|
[Route("ReturnStock")]
|
|
// GET: Warehouse
|
|
public ActionResult ReturnStock()
|
|
{
|
|
return View("~/Views/Warehouse/ReturnStock.cshtml");
|
|
}
|
|
[Route("DelContainer")]
|
|
public ActionResult DelContainer()
|
|
{
|
|
return View("~/Views/Warehouse/DelContainer.cshtml");
|
|
}
|
|
[Route("PalletChange")]
|
|
public ActionResult PalletChange()
|
|
{
|
|
return View("~/Views/Warehouse/PalletChange.cshtml");
|
|
}
|
|
[Route("OBAdetain")]
|
|
public ActionResult OBAdetain()
|
|
{
|
|
return View("~/Views/Warehouse/OBAdetain/OBAdetain.cshtml");
|
|
}
|
|
}
|
|
}
|