取消非空
This commit is contained in:
parent
61fee088c9
commit
909bf22a76
@ -612,16 +612,28 @@ namespace DOAN.Service.MES.product
|
||||
|
||||
//存货编码
|
||||
NPOI.SS.UserModel.ICell currentCell_01 = currentRow.GetCell(0);
|
||||
if(currentCell_01!=null)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
workorder.ProductionCode = currentCell_01?.ToString();
|
||||
|
||||
//产品名称
|
||||
NPOI.SS.UserModel.ICell currentCell_02 = currentRow.GetCell(1);
|
||||
if (currentCell_02 != null)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
workorder.ProductionName = currentCell_02?.ToString();
|
||||
|
||||
|
||||
|
||||
//规格型号
|
||||
NPOI.SS.UserModel.ICell currentCell_04 = currentRow.GetCell(2);
|
||||
if (currentCell_04 != null)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
workorder.Specification = currentCell_04?.ToString();
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user