修复bug

This commit is contained in:
18942506660
2023-12-09 10:45:12 +08:00
parent d72c90f1ef
commit ad598e25f5

View File

@@ -129,13 +129,9 @@ namespace WMS.Web.Repositories
}; };
if (!string.IsNullOrEmpty(s.SalBillNo)) if (!string.IsNullOrEmpty(s.SalBillNo))
{ {
Random rd = new Random();
var list = JsonConvert.DeserializeObject<List<string>>(s.SalBillNo); var list = JsonConvert.DeserializeObject<List<string>>(s.SalBillNo);
if (list.Count() > 0) if (list.Count() > 0)
{ respone.SalBillNo = list[0];
int index = rd.Next(0, list.Count);
respone.SalBillNo = list[index];
}
} }
return respone; return respone;