yl
2023-03-23 dfe8c5343eefa07dffe6b07981c179cb72c6b9cb
VueWebApi/DLL/BLL/AppPurchManagementBLL.cs
@@ -3,6 +3,7 @@
using System.Linq;
using System.Web;
using VueWebApi.DLL.DAL;
using VueWebApi.Models;
using VueWebApi.Tools;
namespace VueWebApi.DLL.BLL
@@ -29,5 +30,35 @@
            return AppPurchManagementDAL.MesAppPurchOrderLabelBarCode(partcode, arrivalqty, onelableqty);
        }
        #endregion
        #region[采购到货:提交]
        public static ToMessage MesAppPurchOrderSave(string purordercode, string orderstaus,string username, List<AppPurchOrderSave> json)
        {
            return AppPurchManagementDAL.MesAppPurchOrderSave(purordercode, orderstaus, username, json);
        }
        #endregion
        #region[采购入库选择有到货采购订单]
        public static ToMessage MesAppPurchInStorSelectCGOrder()
        {
            return AppPurchManagementDAL.MesAppPurchInStorSelectCGOrder();
        }
        #endregion
        #region[选择采购订单带出订单下有到货的物料信息]
        public static ToMessage MesAppPurchInStorSelectCGOrderPart(string ordercode)
        {
            return AppPurchManagementDAL.MesAppPurchInStorSelectCGOrderPart(ordercode);
        }
        #endregion
        #region[采购入库扫描标签条码带出到货单信息]
        public static ToMessage MesAppPurchInStorScanLabCode(string labcode,string ordercode)
        {
            return AppPurchManagementDAL.MesAppPurchInStorScanLabCode(labcode, ordercode);
        }
        #endregion
    }
}