using HH.WMS.WebUI.Controllers; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace HH.WMS.WebUI.Areas.OutStock.Controllers { public class ShipmentController : BaseController { public ActionResult Notice() { return View(); } #region 发运通知列表 /// /// 发运通知列表 /// /// /// /// /// public string NoticeList(int pageIndex, int pageSize, string opNo) { var searchModel = new { TokenId = ViewConstants.TokenId, pageIndex = pageIndex, pageSize = pageSize, SearchCondition = new { CN_S_OP_NO = opNo, } }; return HttpWMS_Post("api/Shipment/NoticeList", JsonConvert.SerializeObject(searchModel)); } #endregion } }