yl
2022-11-21 b166c0f80252ab4e1af4136789cb976364b779b2
VueWebApi/DLL/BLL/KanBanManagerentBLL.cs
@@ -10,39 +10,38 @@
{
    public class KanBanManagerentBLL
    {
        #region[大岛车间综合看板,生产车间查找产线接口]
        public static ToMessage ShopSearchLine(string shopcode)
        #region[大岛车间综合看板,获取生产车间]
        public static ToMessage ShopSearch()
        {
            return KanBanManagerentDAL.ShopSearchLine(shopcode);
            return KanBanManagerentDAL.ShopSearch();
        }
        #endregion
        #region[大岛车间综合看板,左上产线加工任务接口]
        public static ToMessage LineSearchTopLeftData(List<ObjectData> json)
        public static ToMessage LineSearchTopLeftData(string shopcode)
        {
            return KanBanManagerentDAL.LineSearchTopLeftData(json);
            return KanBanManagerentDAL.LineSearchTopLeftData(shopcode);
        }
        #endregion
        #region[大岛车间综合看板,左下列表接口]
        public static ToMessage LineSearchBottomLeftData()
        public static ToMessage LineSearchBottomLeftData(string shopcode)
        {
            return KanBanManagerentDAL.LineSearchBottomLeftData();
            return KanBanManagerentDAL.LineSearchBottomLeftData(shopcode);
        }
        #endregion
        #region[大岛车间综合看板,右上top排行接口]
        public static ToMessage LineSearchTopRightData()
        public static ToMessage LineSearchTopRightData(string shopcode)
        {
            return KanBanManagerentDAL.LineSearchTopRightData();
            return KanBanManagerentDAL.LineSearchTopRightData(shopcode);
        }
        #endregion
        #region[大岛车间综合看板,右下top排行接口]
        public static ToMessage LineSearchBottomRightData()
        public static ToMessage LineSearchBottomRightData(string shopcode)
        {
            return KanBanManagerentDAL.LineSearchBottomRightData();
            return KanBanManagerentDAL.LineSearchBottomRightData(shopcode);
        }
        #endregion
@@ -68,5 +67,45 @@
            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
    }
}