1
This commit is contained in:
@@ -546,18 +546,18 @@ namespace DOAN.Service.MES.product
|
||||
NPOI.SS.UserModel.ICell currentCell_18 = currentRow.GetCell(11);
|
||||
if (currentCell_18 == null)
|
||||
{
|
||||
workorder.GroupCode = string.Empty;
|
||||
workorder.WorkshopCode = string.Empty;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (currentCell_18.CellType == CellType.Numeric)
|
||||
{
|
||||
workorder.GroupCode = currentCell_18.NumericCellValue.ToString();
|
||||
workorder.WorkshopCode = currentCell_18.NumericCellValue.ToString();
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
workorder.GroupCode = currentCell_18.StringCellValue;
|
||||
workorder.WorkshopCode = currentCell_18.StringCellValue;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -826,18 +826,18 @@ namespace DOAN.Service.MES.product
|
||||
NPOI.SS.UserModel.ICell currentCell_18 = currentRow.GetCell(11);
|
||||
if (currentCell_18 == null)
|
||||
{
|
||||
workorder.GroupCode = string.Empty;
|
||||
workorder.WorkshopCode = string.Empty;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (currentCell_18.CellType == CellType.Numeric)
|
||||
{
|
||||
workorder.GroupCode = currentCell_18.NumericCellValue.ToString();
|
||||
workorder.WorkshopCode = currentCell_18.NumericCellValue.ToString();
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
workorder.GroupCode = currentCell_18.StringCellValue;
|
||||
workorder.WorkshopCode = currentCell_18.StringCellValue;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user