Browse Source

Item by category list

Atul 2 years ago
parent
commit
cdee0dca11
1 changed files with 12 additions and 12 deletions
  1. 12 12
      Efacto.Data/Repositories/ItemRepositoryAsync.cs

+ 12 - 12
Efacto.Data/Repositories/ItemRepositoryAsync.cs

@@ -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();