Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test PR #2007

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open

Test PR #2007

Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
f15dcc2
PayPal PLUS throws an exception if an initially empty configuration p…
mgesing Jun 30, 2016
ab3c8b1
Export all product categories rather than all of current store (cause…
mgesing Jul 4, 2016
dfb6e11
SKU, EAN, MPN of last attribute combination was exported for all comb…
mgesing Jul 4, 2016
07a38ef
GMC: Id should be unique when exporting attribute combinations as pro…
mgesing Jul 4, 2016
7526f3f
GMC: No special price exported when the special price period was not …
mgesing Jul 4, 2016
1a6ff6f
GMC: Attribute price adjustments were ignored when exporting attribut…
mgesing Jul 7, 2016
783bf87
GMC: Associated products that are not individually visible are not ex…
mgesing Jul 11, 2016
d9455aa
Fixes "Cannot insert the value NULL into column 'IsPublic', table 'db…
mgesing Jul 11, 2016
e6ef17b
Export: Projected customer id was ignored in price calculation
mgesing Jul 13, 2016
e654f15
Revert "Export: Projected customer id was ignored in price calculation"
mgesing Jul 13, 2016
53d6141
Awarded reward points should be rounded towards zero rather than to n…
mgesing Aug 12, 2016
972e217
Added PayPal partner attribution Id as request header
mgesing Aug 17, 2016
6cf721e
PayPal PLUS: Integration review through PayPal
mgesing Sep 1, 2016
a3d5797
PayPal PLUS: Integration review through PayPal (part 2)
mgesing Sep 3, 2016
c798768
PayPal PLUS: Generic attribute caching problem. Fixes "Item amount mu…
mgesing Sep 6, 2016
b3a4be2
Resolves #1030 Order export: does not export the data of the attribut…
mgesing Sep 28, 2016
4f42740
Order export does not export shipping address
mgesing Oct 4, 2016
71e7bd5
Filter shows wrong number of products if "Include products from subca…
mgesing Oct 6, 2016
77092c4
PayPal PLUS: Excluding tax issue. Fixes "Transaction amount details (…
mgesing Oct 20, 2016
36a2384
PayPal PLUS: Still faced with rounding issues
mgesing Dec 19, 2016
a91cadc
PayPal PLUS: Fixes "Cannot perform runtime binding on a null referenc…
mgesing Jan 25, 2017
f2b938b
More reliable recognition of anonymous visitors (bad bots, cookie-rej…
muratcakir Feb 28, 2017
351eda2
Caching fix for last commit (duplicate guest customer roles)
muratcakir Mar 6, 2017
ff21b94
Fixes compilation error
mgesing Mar 24, 2017
bf85a07
PayPal Express: Fixes net price issue
mgesing Apr 28, 2017
b78a251
PayPal PLUS: /v1/payments/payment/<id>/payment-instruction not workin…
mgesing May 2, 2017
e76cce4
Facebook login out of function due to Facebook API changes (always re…
mgesing Aug 14, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added PayPal partner attribution Id as request header
mgesing committed Aug 17, 2016
commit 972e2170f9c9874a3895259e0ade9ca0218b935c
2 changes: 1 addition & 1 deletion src/Plugins/SmartStore.PayPal/Description.txt
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
Description: Provides the PayPal payment methods PayPal Standard, PayPal Direct, PayPal Express and PayPal PLUS.
SystemName: SmartStore.PayPal
Group: Payment
Version: 2.6.0
Version: 2.6.0.1
MinAppVersion: 2.5.0
DisplayOrder: 1
FileName: SmartStore.PayPal.dll
1 change: 1 addition & 0 deletions src/Plugins/SmartStore.PayPal/Services/PayPalService.cs
Original file line number Diff line number Diff line change
@@ -451,6 +451,7 @@ public PayPalResponse CallApi(string method, string path, string accessToken, Pa
request.Headers["Authorization"] = "Bearer " + accessToken.EmptyNull();
}

request.Headers["PayPal-Partner-Attribution-Id"] = "SmartStoreAG_Cart_PayPalPlus";

if (data.HasValue() && (method.IsCaseInsensitiveEqual("POST") || method.IsCaseInsensitiveEqual("PUT") || method.IsCaseInsensitiveEqual("PATCH")))
{
4 changes: 4 additions & 0 deletions src/Plugins/SmartStore.PayPal/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#Release Notes

##PayPal 2.6.0.1
###Improvements
* Added PayPal partner attribution Id as request header

##Paypal 2.5.0.2
###New Features
* PayPal PLUS payment provider