dengjunjie
2025-10-17 10283f5b4c0c130ab9f1653b05a359d2994eb1e3
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core;
using WIDESEA_Core.BaseController;
using WIDESEA_ISquareCabinServices;
using WIDESEA_Model.Models;
 
namespace WIDESEA_WMSServer.Controllers
{
    [Route("api/DeliveryOrder")]
    [ApiController]
    public class DeliveryOrderController : ApiBaseController<IDeliveryOrderServices, Dt_DeliveryOrder>
    {
        public DeliveryOrderController(IDeliveryOrderServices service) : base(service)
        {
        }
 
 
        [HttpPost,Route("GetUpstreamOutOrder"),AllowAnonymous]
        public WebResponseContent GetUpstreamOutOrder()
        {
            return Service.GetUpstreamOutOrder();
        }
        
        /// 查询盘点单信息
        /// </summary>
        /// <returns></returns>
        [HttpPost, HttpGet, Route("GetPdDeliveryOrders")]
        public WebResponseContent GetPdDeliveryOrders([FromBody] SaveModel saveModel)
        {
            return Service.GetPdDeliveryOrders(saveModel);
        }
 
        /// 查询单信息
        /// </summary>
        /// <returns></returns>
        [HttpPost, HttpGet, Route("GetDeliveryOrders")]
        public WebResponseContent GetDeliveryOrders([FromBody] SaveModel saveModel)
        {
            return Service.GetDeliveryOrders(saveModel);
        }
 
        /// 查询单详情信息
        /// </summary>
        /// <returns></returns>
        [HttpPost, HttpGet, Route("GetDeliveryOrderDetail")]
        public WebResponseContent GetDeliveryOrderDetail(int pageNo, string orderNo, bool isPick)
        {
            return Service.GetDeliveryOrderDetail(pageNo, orderNo,isPick);
        }
 
        [HttpPost, HttpGet, Route("MatPicking")]
        public WebResponseContent MatPicking([FromBody] SaveModel saveModel)
        {
            return Service.MatPicking(saveModel);
        }
 
        [HttpPost, HttpGet, Route("FeedbackOut")]
        public WebResponseContent FeedbackOut([FromBody] SaveModel saveModel)
        {
            return Service.FeedbackOut(saveModel);
        }
 
        /// <summary>
        /// 盘点出库接口
        /// </summary>
        /// <param name="externalOrderNo"></param>
        /// <returns></returns>
        [HttpPost, Route("InventoryGood"), AllowAnonymous]
        public WebResponseContent InventoryGood(string externalOrderNo)
        {
            return Service.InventoryGood(externalOrderNo);
        }
 
        ///调拨出库
    }
}