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.
168 lines
4.4 KiB
168 lines
4.4 KiB
using NFine.Application.WMS;
|
|
using System.Data;
|
|
using System.Web.Mvc;
|
|
using NFine.Code;
|
|
|
|
namespace NFine.Web.Areas.WMS.Controllers
|
|
{
|
|
public class MaterialsDeliveredRTMController : ControllerBase
|
|
{
|
|
MaterialsDeliveredRTMApp App = new MaterialsDeliveredRTMApp();
|
|
public ActionResult ICSMOApplyNegMD()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
public ActionResult ICSMOApplyNegMDAdd()
|
|
{
|
|
return View();
|
|
}
|
|
public ActionResult ICSMOApplyNegMDUpdate()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
public ActionResult SeachMDInventory()
|
|
{
|
|
return View();
|
|
}
|
|
[HttpGet]
|
|
public ActionResult GetICSMOApplyNeg(Pagination pagination)
|
|
{
|
|
DataTable ListData = App.GetICSMOApplyNeg(ref pagination);
|
|
var JsonData = new
|
|
{
|
|
total = pagination.total,
|
|
page = pagination.page,
|
|
records = pagination.records,
|
|
rows = ListData,
|
|
};
|
|
return Content(JsonData.ToJson());
|
|
}
|
|
|
|
[HttpGet]
|
|
[HandlerAjaxOnly]
|
|
public ActionResult GetICSMOApplyNegDetail(string ApplyNegCode, Pagination pagination)
|
|
{
|
|
DataTable ListData = App.GetICSMOApplyNegDetail(ApplyNegCode, ref pagination);
|
|
var JsonData = new
|
|
{
|
|
total = pagination.total,
|
|
page = pagination.page,
|
|
records = pagination.records,
|
|
rows = ListData,
|
|
};
|
|
return Content(JsonData.ToJson());
|
|
}
|
|
|
|
|
|
[HttpPost]
|
|
[HandlerAjaxOnly]
|
|
[ValidateAntiForgeryToken]
|
|
public ActionResult DeleteICSMOApplyNeg(string keyValue)
|
|
{
|
|
string msg = App.DeleteICSMOApplyNeg(keyValue);
|
|
if (string.IsNullOrEmpty(msg))
|
|
{
|
|
return Success("删除成功!");
|
|
}
|
|
else
|
|
{
|
|
return Error(msg);
|
|
}
|
|
}
|
|
|
|
public ActionResult GetICSReturnTemporary(string rfqno, Pagination pagination)
|
|
{
|
|
DataTable table = App.GetICSReturnTemporary(rfqno);
|
|
var JsonData = new
|
|
{
|
|
total = pagination.total,
|
|
page = pagination.page,
|
|
records = pagination.records,
|
|
rows = table
|
|
};
|
|
return Content(JsonData.ToJson());
|
|
|
|
}
|
|
|
|
public void ClearTemp()
|
|
{
|
|
App.ClearTemp();
|
|
}
|
|
|
|
[HttpGet]
|
|
public ActionResult GetINV(string invcode, Pagination pagination)
|
|
{
|
|
DataTable ListData = App.GetINV(invcode, ref pagination);
|
|
var JsonData = new
|
|
{
|
|
total = pagination.total,
|
|
page = pagination.page,
|
|
records = pagination.records,
|
|
rows = ListData,
|
|
};
|
|
return Content(JsonData.ToJson());
|
|
}
|
|
|
|
public void AddMOApplyNegTemp(string json)
|
|
{
|
|
App.AddMOApplyNegTemp(json);
|
|
}
|
|
|
|
public void UpdateMOApplyNegTemp(string json)
|
|
{
|
|
App.UpdateMOApplyNegTemp(json);
|
|
}
|
|
|
|
[HttpPost]
|
|
[HandlerAjaxOnly]
|
|
public ActionResult SaveICSMOApplyNeg(string ICSASN)
|
|
{
|
|
|
|
string msg = App.SaveICSMOApplyNeg(ICSASN);
|
|
if (!string.IsNullOrEmpty(msg))
|
|
{
|
|
return Error(msg);
|
|
}
|
|
else
|
|
{
|
|
return Success("添加成功!");
|
|
}
|
|
}
|
|
|
|
public ActionResult GetICSMOApplyNegDetailTemp(string ApplyNegCode, Pagination pagination)
|
|
{
|
|
DataTable table = App.GetICSMOApplyNegDetailTemp(ApplyNegCode);
|
|
var JsonData = new
|
|
{
|
|
total = pagination.total,
|
|
page = pagination.page,
|
|
records = pagination.records,
|
|
rows = table
|
|
};
|
|
return Content(JsonData.ToJson());
|
|
|
|
}
|
|
[HttpPost]
|
|
[HandlerAjaxOnly]
|
|
public ActionResult UpdateICSMOApplyNeg(string ICSASN)
|
|
{
|
|
|
|
string msg = App.UpdateICSMOApplyNeg(ICSASN);
|
|
if (!string.IsNullOrEmpty(msg))
|
|
{
|
|
return Error(msg);
|
|
}
|
|
else
|
|
{
|
|
return Success("修改成功!");
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|