Skip to content

Commit

Permalink
#6527 Used number type for some transactional attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyKulagin committed Feb 16, 2023
1 parent 97ab1cb commit 6e4e9b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -1019,7 +1019,7 @@ public async Task<string> PrepareAttributesAsync()
(CategoryEnum.Normal, SendinblueDefaults.LanguageAttribute, null, CreateAttribute.TypeEnum.Text),
(CategoryEnum.Transactional, SendinblueDefaults.OrderIdServiceAttribute, null, CreateAttribute.TypeEnum.Id),
(CategoryEnum.Transactional, SendinblueDefaults.OrderDateServiceAttribute, null, CreateAttribute.TypeEnum.Text),
(CategoryEnum.Transactional, SendinblueDefaults.OrderTotalServiceAttribute, null, CreateAttribute.TypeEnum.Text),
(CategoryEnum.Transactional, SendinblueDefaults.OrderTotalServiceAttribute, null, CreateAttribute.TypeEnum.Float),
(CategoryEnum.Calculated, SendinblueDefaults.OrderTotalSumServiceAttribute, $"SUM[{SendinblueDefaults.OrderTotalServiceAttribute}]", null),
(CategoryEnum.Calculated, SendinblueDefaults.OrderTotalMonthSumServiceAttribute, $"SUM[{SendinblueDefaults.OrderTotalServiceAttribute},{SendinblueDefaults.OrderDateServiceAttribute},>,NOW(-30)]", null),
(CategoryEnum.Calculated, SendinblueDefaults.OrderCountServiceAttribute, $"COUNT[{SendinblueDefaults.OrderIdServiceAttribute}]", null),
Expand Down
2 changes: 1 addition & 1 deletion src/Plugins/Nop.Plugin.Misc.Sendinblue/plugin.json
Expand Up @@ -2,7 +2,7 @@
"Group": "Misc",
"FriendlyName": "Sendinblue",
"SystemName": "Misc.Sendinblue",
"Version": "3.56",
"Version": "3.57",
"SupportedVersions": [ "4.70" ],
"Author": "nopCommerce team",
"DisplayOrder": 1,
Expand Down

0 comments on commit 6e4e9b7

Please sign in to comment.