北鸣对接T+畅捷通,看板API
yl
2023-11-22 918c8b4360a4d58c4162d4777575abf1d20ef007
VueWebApi/DLL/BLL/KanBanManagerentBLL.cs
@@ -10,122 +10,61 @@
{
    public class KanBanManagerentBLL
    {
        #region[正清和车间看板,获取生产车间]
        public static ToMessage ShopSearch()
        #region[北鸣仓库看板左上,生产待入库]
        public static ToMessage ProductionStockedInLeftTop()
        {
            return KanBanManagerentDAL.ShopSearch();
            return KanBanManagerentDAL.ProductionStockedInLeftTop();
        }
        #endregion
        #region[正清和车间看板,左上产线加工任务接口]
        public static ToMessage LineSearchTopLeftData(string shopcode)
        #region[北鸣仓库看板左下,产品代发货]
        public static ToMessage ProductConsignmentLeftBottom()
        {
            return KanBanManagerentDAL.LineSearchTopLeftData(shopcode);
            return KanBanManagerentDAL.ProductConsignmentLeftBottom();
        }
        #endregion
        #region[正清和车间看板,左下列表接口]
        public static ToMessage LineSearchBottomLeftData(string shopcode)
        #region[北鸣仓库看板右上,近一周生产待入库产品排行TOP5]
        public static ToMessage ProductionStockedInRightTop()
        {
            return KanBanManagerentDAL.LineSearchBottomLeftData(shopcode);
            return KanBanManagerentDAL.ProductionStockedInRightTop();
        }
        #endregion
        #region[正清和车间看板,右上top排行接口]
        public static ToMessage LineSearchTopRightData(string shopcode)
        #region[北鸣仓库看板右下,近一周销售待发货产品排行TOP5]
        public static ToMessage ProductionStockedInRightBottom()
        {
            return KanBanManagerentDAL.LineSearchTopRightData(shopcode);
        }
        #endregion
        #region[正清和车间看板,右下top排行接口]
        public static ToMessage LineSearchBottomRightData(string shopcode)
        {
            return KanBanManagerentDAL.LineSearchBottomRightData(shopcode);
            return KanBanManagerentDAL.ProductionStockedInRightBottom();
        }
        #endregion
        #region[正清和车间质量数字化看板,左上top5不良]
        public static ToMessage QCBadTop(string wkshopcode)
        #region[北鸣采购委外看板左上,采购待入库]
        public static ToMessage ProcureOutsourcLeftTop()
        {
            return KanBanManagerentDAL.QCBadTop(wkshopcode);
            return KanBanManagerentDAL.ProcureOutsourcLeftTop();
        }
        #endregion
        #region[正清和车间质量数字化看板,左中周不良趋势]
        public static ToMessage QCBadCenterLeftWeek(string wkshopcode)
        #region[北鸣采购委外看板左下,委外待入库]
        public static ToMessage ProcureOutsourcLeftBottom()
        {
            return KanBanManagerentDAL.QCBadCenterLeftWeek(wkshopcode);
            return KanBanManagerentDAL.ProcureOutsourcLeftBottom();
        }
        #endregion
        #region[正清和车间质量数字化看板,右中周完成数/率]
        public static ToMessage QCBadCenterRightWeek(string wkshopcode)
        #region[北鸣采购委外看板右上,近一周采购待入库物料排行TOP5]
        public static ToMessage ProcureOutsourcRightTop()
        {
            return KanBanManagerentDAL.QCBadCenterRightWeek(wkshopcode);
            return KanBanManagerentDAL.ProcureOutsourcRightTop();
        }
        #endregion
        #region[正清和车间质量数字化看板,下任务进度]
        public static ToMessage QCBadBottomWeek(string wkshopcode)
        #region[北鸣采购委外看板右下,近一周委外待入库产品排行TOP5]
        public static ToMessage ProcureOutsourcRightBottom()
        {
            return KanBanManagerentDAL.QCBadBottomWeek(wkshopcode);
        }
        #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 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();
            return KanBanManagerentDAL.ProcureOutsourcRightBottom();
        }
        #endregion
    }