yl
2023-06-13 d6502baa8e5610c04127fbee92ff6111e40956f8
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
    }
}