北鸣对接T+畅捷通,看板API
yl
2023-11-22 918c8b4360a4d58c4162d4777575abf1d20ef007
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using VueWebApi.DLL.DAL;
using VueWebApi.Models;
using VueWebApi.Tools;
 
namespace VueWebApi.DLL.BLL
{
    public class KanBanManagerentBLL
    {
 
        #region[北鸣仓库看板左上,生产待入库]
        public static ToMessage ProductionStockedInLeftTop()
        {
            return KanBanManagerentDAL.ProductionStockedInLeftTop();
        }
        #endregion
 
        #region[北鸣仓库看板左下,产品代发货]
        public static ToMessage ProductConsignmentLeftBottom()
        {
            return KanBanManagerentDAL.ProductConsignmentLeftBottom();
        }
        #endregion
 
        #region[北鸣仓库看板右上,近一周生产待入库产品排行TOP5]
        public static ToMessage ProductionStockedInRightTop()
        {
            return KanBanManagerentDAL.ProductionStockedInRightTop();
        }
        #endregion
 
        #region[北鸣仓库看板右下,近一周销售待发货产品排行TOP5]
        public static ToMessage ProductionStockedInRightBottom()
        {
            return KanBanManagerentDAL.ProductionStockedInRightBottom();
        }
        #endregion
 
 
        #region[北鸣采购委外看板左上,采购待入库]
        public static ToMessage ProcureOutsourcLeftTop()
        {
            return KanBanManagerentDAL.ProcureOutsourcLeftTop();
        }
        #endregion
 
        #region[北鸣采购委外看板左下,委外待入库]
        public static ToMessage ProcureOutsourcLeftBottom()
        {
            return KanBanManagerentDAL.ProcureOutsourcLeftBottom();
        }
        #endregion
 
        #region[北鸣采购委外看板右上,近一周采购待入库物料排行TOP5]
        public static ToMessage ProcureOutsourcRightTop()
        {
            return KanBanManagerentDAL.ProcureOutsourcRightTop();
        }
        #endregion
 
        #region[北鸣采购委外看板右下,近一周委外待入库产品排行TOP5]
        public static ToMessage ProcureOutsourcRightBottom()
        {
            return KanBanManagerentDAL.ProcureOutsourcRightBottom();
        }
        #endregion
    }
}