20240419 NCR、图纸收发导入
This commit is contained in:
@@ -671,10 +671,10 @@ namespace BLL
|
||||
string unitIds = string.Empty;
|
||||
foreach (string s in ins)
|
||||
{
|
||||
var q = BLL.UnitService.getUnitByUnitName(s);
|
||||
unitIds = unitIds + q.UnitId + ",";
|
||||
var q = getUnitByUnitName(s.Trim());
|
||||
unitIds += q.UnitId + ",";
|
||||
}
|
||||
return unitIds.Substring(0, unitIds.Length - 1);
|
||||
return unitIds.Substring(0, unitIds.LastIndexOf(","));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user