yl
2024-03-29 9c634fd767aec36ef97c3a814bf7a29c67d20ee1
VueWebApi/DLL/BLL/KanBanManagerentBLL.cs
@@ -10,35 +10,35 @@
{
    public class KanBanManagerentBLL
    {
        #region[大岛车间综合看板,获取生产车间]
        #region[正清和车间看板,获取生产车间]
        public static ToMessage ShopSearch()
        {
            return KanBanManagerentDAL.ShopSearch();
        }
        #endregion
        #region[大岛车间综合看板,左上产线加工任务接口]
        #region[正清和车间看板,左上产线加工任务接口]
        public static ToMessage LineSearchTopLeftData(string shopcode)
        {
            return KanBanManagerentDAL.LineSearchTopLeftData(shopcode);
        }
        #endregion
        #region[大岛车间综合看板,左下列表接口]
        #region[正清和车间看板,左下列表接口]
        public static ToMessage LineSearchBottomLeftData(string shopcode)
        {
            return KanBanManagerentDAL.LineSearchBottomLeftData(shopcode);
        }
        #endregion
        #region[大岛车间综合看板,右上top排行接口]
        #region[正清和车间看板,右上top排行接口]
        public static ToMessage LineSearchTopRightData(string shopcode)
        {
            return KanBanManagerentDAL.LineSearchTopRightData(shopcode);
        }
        #endregion
        #region[大岛车间综合看板,右下top排行接口]
        #region[正清和车间看板,右下top排行接口]
        public static ToMessage LineSearchBottomRightData(string shopcode)
        {
            return KanBanManagerentDAL.LineSearchBottomRightData(shopcode);
@@ -47,55 +47,86 @@
        #region[采购订单跟踪管理看板,左上本月采购订单数、本月采购进货单数、本月采购入库单数]
        public static ToMessage PurchaseLeftTop()
        #region[正清和车间质量数字化看板,左上top5不良]
        public static ToMessage QCBadTop(string wkshopcode)
        {
            return KanBanManagerentDAL.PurchaseLeftTop();
            return KanBanManagerentDAL.QCBadTop(wkshopcode);
        }
        #endregion
        #region[采购订单跟踪管理看板,左下采购订单跟踪列表]
        public static ToMessage PurchaseLeftBottom()
        #region[正清和车间质量数字化看板,左中周不良趋势]
        public static ToMessage QCBadCenterLeftWeek(string wkshopcode)
        {
            return KanBanManagerentDAL.PurchaseLeftBottom();
            return KanBanManagerentDAL.QCBadCenterLeftWeek(wkshopcode);
        }
        #endregion
        #region[采购订单跟踪管理看板,右侧Top]
        public static ToMessage PurchaseRight()
        #region[正清和车间质量数字化看板,右中周完成数/率]
        public static ToMessage QCBadCenterRightWeek(string wkshopcode)
        {
            return KanBanManagerentDAL.PurchaseRight();
            return KanBanManagerentDAL.QCBadCenterRightWeek(wkshopcode);
        }
        #endregion
        #region[正清和车间质量数字化看板,下任务进度]
        public static ToMessage QCBadBottomWeek(string wkshopcode)
        {
            return KanBanManagerentDAL.QCBadBottomWeek(wkshopcode);
        }
        #endregion
        #region[大岛仓库看板,左上产品待入库列表]
        #region[正清和仓库看板,左上产品待入库列表]
        public static ToMessage WareHouseTopLeftData()
        {
            return KanBanManagerentDAL.WareHouseTopLeftData();
        }
        #endregion
        #region[大岛仓库看板,左下产品待发货列表]
        #region[正清和仓库看板,左下产品待发货列表]
        public static ToMessage WareHouseTopBottomData()
        {
            return KanBanManagerentDAL.WareHouseTopBottomData();
        }
        #endregion
        #region[大岛仓库看板,右上成品库、半成品库top5库存排行]
        #region[正清和仓库看板,右上成品库、半成品库top5库存排行]
        public static ToMessage WareHouseRightTopData()
        {
            return KanBanManagerentDAL.WareHouseRightTopData();
        }
        #endregion
        #region[大岛仓库看板,右下原料库库top5库存排行]
        #region[正清和仓库看板,右下原料库库top5库存排行]
        public static ToMessage WareHouseRightBottomData()
        {
            return KanBanManagerentDAL.WareHouseRightBottomData();
        }
        #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 WorkShopCompreRightBottom()
        {
            return KanBanManagerentDAL.WorkShopCompreRightBottom();
        }
        #endregion
    }
}