1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
| 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 发运通知列表
| /// <summary>
| /// 发运通知列表
| /// </summary>
| /// <param name="pageIndex"></param>
| /// <param name="pageSize"></param>
| /// <param name="opNo"></param>
| /// <returns></returns>
| 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
| }
| }
|
|