瀏覽代碼

Fixed issue with Logikal BOM Import Duplicate products

frankvandenbos 6 月之前
父節點
當前提交
657e929206

+ 1 - 1
prs.desktop/Utils/LogikalUtils/LogikalCommon.cs

@@ -203,7 +203,7 @@ namespace PRSDesktop.Utils.LogikalUtils
             }
 
             Products = query.Get<Product>().ToObjects<Product>().ToList();
-            var _missingProducts = _requiredProducts.Where(x => Products.Any(p => !string.Equals(p.Code, x))).ToArray();
+            var _missingProducts = _requiredProducts.Where(x => !Products.Any(p => string.Equals(p.Code, x))).ToArray();
 
             var _missingProfiles = bom.Profiles.Where(x => _missingProducts.Contains(x.Code)).ToArray();
             if (_missingProfiles.Any())

+ 1 - 1
prs.desktop/prsdesktop.iss

@@ -8,7 +8,7 @@
 #define public Dependency_Path_NetCoreCheck "dependencies\"
 
 #define MyAppName "PRS Desktop"
-#define MyAppVersion "8.28c"
+#define MyAppVersion "8.28d"
 #define MyAppPublisher "PRS Digital"
 #define MyAppURL "https://www.prs-software.com.au"
 #define MyAppExeName "PRSDesktop.exe"

+ 1 - 1
prs.licensing/PRSLicensing.iss

@@ -8,7 +8,7 @@
 #define public Dependency_Path_NetCoreCheck "dependencies\"
 
 #define MyAppName "PRS Licensing"
-#define MyAppVersion "8.28c"
+#define MyAppVersion "8.28d"
 #define MyAppPublisher "PRS Digital"
 #define MyAppURL "https://www.prs-software.com.au"
 #define MyAppExeName "PRSLicensing.exe"

+ 1 - 1
prs.server/PRSServer.iss

@@ -8,7 +8,7 @@
 #define public Dependency_Path_NetCoreCheck "dependencies\"
 
 #define MyAppName "PRS Server"
-#define MyAppVersion "8.28c"
+#define MyAppVersion "8.28d"
 #define MyAppPublisher "PRS Digital"
 #define MyAppURL "https://www.prs-software.com.au"
 #define MyAppExeName "PRSServer.exe"