|
@@ -1138,12 +1138,12 @@ namespace Efacto.Data.Repositories
|
|
|
select new ItemByCategoryList
|
|
|
{
|
|
|
ItmId = file.ItmId,
|
|
|
- ItmName = file.ItmName,
|
|
|
- ItmCode = file.ItmCode,
|
|
|
- ItmPrintAs = file.ItmPrintAs,
|
|
|
- ItmImage = file.ItmImage,
|
|
|
- ItmImageFile = file.ItmImageFile,
|
|
|
- ItmSpec = file.ItmSpec,
|
|
|
+ ItmName = file.ItmName ?? "",
|
|
|
+ ItmCode = file.ItmCode ?? "",
|
|
|
+ ItmPrintAs = file.ItmPrintAs ?? "",
|
|
|
+ ItmImage = file.ItmImage ?? "",
|
|
|
+ ItmImageFile = file.ItmImageFile ?? "",
|
|
|
+ ItmSpec = file.ItmSpec ?? "",
|
|
|
ItmMrp = _itemPrice.Where(x=>x.ItpItmId == file.ItmId).FirstOrDefault() != null ? Utilities._util.ConvertToDecimal(_itemPrice.Where(x => x.ItpItmId == file.ItmId).FirstOrDefault().ItpPack,2) : 0,
|
|
|
}).ToListAsync();
|
|
|
}
|
|
@@ -1155,12 +1155,12 @@ namespace Efacto.Data.Repositories
|
|
|
select new ItemByCategoryList
|
|
|
{
|
|
|
ItmId = file.ItmId,
|
|
|
- ItmName = file.ItmName,
|
|
|
- ItmCode = file.ItmCode,
|
|
|
- ItmPrintAs = file.ItmPrintAs,
|
|
|
- ItmImage = file.ItmImage,
|
|
|
- ItmImageFile = file.ItmImageFile,
|
|
|
- ItmSpec = file.ItmSpec,
|
|
|
+ ItmName = file.ItmName ?? "",
|
|
|
+ ItmCode = file.ItmCode ?? "",
|
|
|
+ ItmPrintAs = file.ItmPrintAs ?? "",
|
|
|
+ ItmImage = file.ItmImage ?? "",
|
|
|
+ ItmImageFile = file.ItmImageFile ?? "",
|
|
|
+ ItmSpec = file.ItmSpec ?? "",
|
|
|
ItmMrp = _itemPrice.Where(x => x.ItpItmId == file.ItmId).FirstOrDefault() != null ? Utilities._util.ConvertToDecimal(_itemPrice.Where(x => x.ItpItmId == file.ItmId).FirstOrDefault().ItpPack, 2) : 0,
|
|
|
|
|
|
}).ToListAsync();
|