diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2021-12-05 16:32:25 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2021-12-05 16:32:25 +0300 |
commit | 44a48b0818083e01a7b01c27f38c1f93525a6810 (patch) | |
tree | b1366c993bafce367f346538474822efde87782a /Source/ExcelDNA | |
parent | 5c9ee3ae65f735e143355715ffbfeeae7391093d (diff) |
Fix price double cast
Diffstat (limited to 'Source/ExcelDNA')
-rw-r--r-- | Source/ExcelDNA/Functions.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/ExcelDNA/Functions.cs b/Source/ExcelDNA/Functions.cs index a9bdfca..cd09535 100644 --- a/Source/ExcelDNA/Functions.cs +++ b/Source/ExcelDNA/Functions.cs @@ -14,6 +14,6 @@ namespace Rehau.Sku.Assist [ExcelFunction] public static object RAUPRICE(string request) - => SkuAssist.GetProduct(request, ProductField.Price); + => SkuAssist.GetProduct(request, ProductField.Price); } }
\ No newline at end of file |