Add Sku Parser to Export tool
This commit is contained in:
parent
538d83257a
commit
8155dcce37
@ -56,9 +56,11 @@ namespace RehauSku.PriceListTools
|
|||||||
{
|
{
|
||||||
object current = cells[row, column];
|
object current = cells[row, column];
|
||||||
|
|
||||||
if (current.ToString().IsRehauSku())
|
RauSku rauSku;
|
||||||
|
|
||||||
|
if (RauSku.TryParse(current.ToString(), out rauSku))
|
||||||
{
|
{
|
||||||
sku = current.ToString();
|
sku = rauSku.ToString();
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (current.GetType() == typeof(string)
|
else if (current.GetType() == typeof(string)
|
||||||
|
Loading…
Reference in New Issue
Block a user