dengjunjie
2024-12-05 46e98339480d853fc78a014c34d7ff9fcaf13890
项目代码/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/Service/LocationStatusChangeRecordSetvice.cs
@@ -25,12 +25,16 @@
                LocationCode = locationInfo.LocationCode,
                LocationId = locationInfo.Id,
                TaskNum = taskNum,
                OrderNo = orderNo ?? ""
                OrderNo = orderNo ?? "",
                Creater="System"
            };
            BaseDal.AddData(locationStatusChangeRecord);
        }
        public List<Dt_LocationStatusChangeRecord> Get_LocationStatusChangeRecord(int id)
        {
            return  BaseDal.QueryData(x => x.LocationId == id);
        }
        public void AddLocationStatusChangeRecord(List<Dt_LocationInfo> locationInfos, int newStatus, int changeType, string? orderNo, List<int>? taskNums)
        {
            List< Dt_LocationStatusChangeRecord > records = new List<Dt_LocationStatusChangeRecord> ();