yl
2023-04-25 6b91eea8f3a54269a61d0626efb879cc7da5b4bf
VueWebApi/DLL/BLL/PurchaseOrderBLL.cs
@@ -50,5 +50,34 @@
            return PurchaseOrderDAL.ClosedPurchaseOrder(po, username);
        }
        #endregion
        #region[采购到货单查询]
        public static ToMessage PurchaseArrivalOrderSearch(string orderstatus, string mesordercode, string departmentcode, string customercode, string orderdateopendate, string orderdateclosedate, string sourceorder, string creatuser, string arrivalopendate, string arrivalclosedate, int startNum, int endNum, string prop, string order)
        {
            return PurchaseOrderDAL.PurchaseArrivalOrderSearch(orderstatus,mesordercode, departmentcode, customercode, orderdateopendate, orderdateclosedate, sourceorder, creatuser, arrivalopendate, arrivalclosedate, startNum, endNum, prop, order);
        }
        #endregion
        #region[采购到货单明细]
        public static ToMessage PurchaseArrivalOrderSubSearch(string arrivelodercode)
        {
            return PurchaseOrderDAL.PurchaseArrivalOrderSubSearch(arrivelodercode);
        }
        #endregion
        #region[采购到货单关闭]
        public static ToMessage ClosedPurchaseArrivalOrder(string arrivelodercode, string username)
        {
            return PurchaseOrderDAL.ClosedPurchaseArrivalOrder(arrivelodercode,username);
        }
        #endregion
        #region[采购到货单明细查看条码详情]
        public static ToMessage PurchaseArrivalOrderSubLabDetails(string sourceorder, string arrivelodercode, string partcode)
        {
            return PurchaseOrderDAL.PurchaseArrivalOrderSubLabDetails(sourceorder,arrivelodercode, partcode);
        }
        #endregion
    }
}