Ignore multiply rows in name cell
This commit is contained in:
parent
f19f8c6510
commit
2cb6b889b0
@ -131,7 +131,7 @@ public class ExcelReader : IReader, IDisposable
|
||||
Product p = new(sku.ToString())
|
||||
{
|
||||
ProductLines = new List<string>() { productLine.ToString() },
|
||||
Name = name.ToString(),
|
||||
Name = name.ToString().Split('\n').First(),
|
||||
ProductMeasure = productMeasure
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user