季铭对接T+畅捷通,看板API
yl
2023-12-25 72a27b4fd84622ebc51150a07b16d13b7135ebf9
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
79
80
81
82
83
84
85
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 ProcureOutsourcLeftTop()
        {
            return KanBanManagerentDAL.ProcureOutsourcLeftTop();
        }
        #endregion
 
        #region[季铭仓库看板左下,销售待发货]
        public static ToMessage ProductConsignmentLeftBottom()
        {
            return KanBanManagerentDAL.ProductConsignmentLeftBottom();
        }
        #endregion
 
        #region[季铭仓库看板右上,近一周采购待入库物料排行TOP5]
        public static ToMessage ProcureOutsourcRightTop()
        {
            return KanBanManagerentDAL.ProcureOutsourcRightTop();
        }
        #endregion
 
        #region[季铭仓库看板右下,近一周销售待发货产品排行TOP5]
        public static ToMessage ProductionStockedInRightBottom()
        {
            return KanBanManagerentDAL.ProductionStockedInRightBottom();
        }
        #endregion
 
 
        #region[季铭生产看板左上,生产待入库]
        public static ToMessage ProductionStockedInLeftTop()
        {
            return KanBanManagerentDAL.ProductionStockedInLeftTop();
        }
        #endregion
 
        #region[季铭生产看板右上,近一周生产待入库产品排行TOP5]
        public static ToMessage ProductionStockedInRightTop()
        {
            return KanBanManagerentDAL.ProductionStockedInRightTop();
        }
        #endregion
 
 
        #region[季铭车间综合看板,左上生产订单]
        public static ToMessage WorkShopCompreLeftTop(string wkshopcode)
        {
            return KanBanManagerentDAL.WorkShopCompreLeftTop(wkshopcode);
        }
        #endregion
 
        #region[季铭车间综合看板,右上销售订单]
        public static ToMessage WorkShopCompreRightTop()
        {
            return KanBanManagerentDAL.WorkShopCompreRightTop();
        }
        #endregion
 
        #region[季铭车间综合看板,左下采购订单]
        public static ToMessage WorkShopCompreLeftBottom()
        {
            return KanBanManagerentDAL.WorkShopCompreLeftBottom();
        }
        #endregion
 
        #region[季铭车间综合看板,右下库存]
        public static ToMessage WorkShopCompreRightBottom()
        {
            return KanBanManagerentDAL.WorkShopCompreRightBottom();
        }
        #endregion
    }
}