admin
2 天以前 4eb3fe2b28f1ae4c4623ae5f7d7750bd265b5fc5
Wms/WMS.BLL/BllPdaServer/PdaCrServer.cs
@@ -893,7 +893,7 @@
        /// <param name="areaNo"></param>
        /// <returns></returns>
        /// <exception cref="Exception"></exception>
        public List<string> GetLocatByArea(string areaNo)
        public List<SysStorageLocatDto> GetLocatByArea(string areaNo)
        {
            try
            {
@@ -901,7 +901,11 @@
                {
                    throw new Exception("请选择区域");
                }
                var _list = Db.Queryable<SysStorageLocat>().Where(w => w.IsDel == "0" && w.AreaNo == areaNo && w.WareHouseNo == "W04").Select(s => ((s.Remark == null) ? "" : s.Remark) + s.LocatNo).ToList();
                var _list = Db.Queryable<SysStorageLocat>().Where(w => w.IsDel == "0" && w.AreaNo == areaNo && w.WareHouseNo == "W04").Select(s => new SysStorageLocatDto()
                {
                    LocatNo = s.LocatNo,
                    Remark = s.Remark
                }).ToList();
                return _list;
            }