yl
2023-03-07 c715bbf91baff280e7b043adf1fa95f74e5d3481
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
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 ShopSearch()
        {
            return KanBanManagerentDAL.ShopSearch();
        }
        #endregion
 
        #region[大岛车间综合看板,左上产线加工任务接口]
        public static ToMessage LineSearchTopLeftData(string shopcode)
        {
            return KanBanManagerentDAL.LineSearchTopLeftData(shopcode);
        }
        #endregion
 
        #region[大岛车间综合看板,左下列表接口]
        public static ToMessage LineSearchBottomLeftData(string shopcode)
        {
            return KanBanManagerentDAL.LineSearchBottomLeftData(shopcode);
        }
        #endregion
 
        #region[大岛车间综合看板,右上top排行接口]
        public static ToMessage LineSearchTopRightData(string shopcode)
        {
            return KanBanManagerentDAL.LineSearchTopRightData(shopcode);
        }
        #endregion
 
        #region[大岛车间综合看板,右下top排行接口]
        public static ToMessage LineSearchBottomRightData(string shopcode)
        {
            return KanBanManagerentDAL.LineSearchBottomRightData(shopcode);
        }
        #endregion
 
 
 
        #region[采购订单跟踪管理看板,左上本月采购订单数、本月采购进货单数、本月采购入库单数]
        public static ToMessage PurchaseLeftTop()
        {
            return KanBanManagerentDAL.PurchaseLeftTop();
        }
        #endregion
 
        #region[采购订单跟踪管理看板,左下采购订单跟踪列表]
        public static ToMessage PurchaseLeftBottom()
        {
            return KanBanManagerentDAL.PurchaseLeftBottom();
        }
        #endregion
 
        #region[采购订单跟踪管理看板,右侧Top]
        public static ToMessage PurchaseRight()
        {
            return KanBanManagerentDAL.PurchaseRight();
        }
        #endregion
 
 
 
        #region[大岛仓库看板,左上产品待入库列表]
        public static ToMessage WareHouseTopLeftData()
        {
            return KanBanManagerentDAL.WareHouseTopLeftData();
        }
        #endregion
 
        #region[大岛仓库看板,左下产品待发货列表]
        public static ToMessage WareHouseTopBottomData()
        {
            return KanBanManagerentDAL.WareHouseTopBottomData();
        }
        #endregion
 
        #region[大岛仓库看板,右上成品库、半成品库top5库存排行]
        public static ToMessage WareHouseRightTopData()
        {
            return KanBanManagerentDAL.WareHouseRightTopData();
        }
        #endregion
 
        #region[大岛仓库看板,右下原料库库top5库存排行]
        public static ToMessage WareHouseRightBottomData()
        {
            return KanBanManagerentDAL.WareHouseRightBottomData();
        }
        #endregion
 
 
        #region[车间看板公告]
        public static ToMessage WkspReportNotice(string shopcode)
        {
            return KanBanManagerentDAL.WkspReportNotice(shopcode);
        }
        #endregion
 
 
    }
}