Closed Aloysius999 closed 1 month ago
Some progress at least - the following code adds the quantity of items, tax, shipping etc. to the purchase_units
:
(for testing I've hard coded thiese values - they should be fetched from the backend API)
const purchase_units = orderInfo.order.map((item) => {
return {
description: item.product.description,
amount: {
value: "60.00", //item.product.price,
currency_code: item.currency!,
breakdown: {
item_total: {
unit_amount: "7",
currency_code: "EUR",
value: "36.00",
},
tax_total: {
currency_code: "EUR",
value: "9.00",
},
handling: {
currency_code: "EUR",
value: "5.00",
},
shipping: {
currency_code: "EUR",
value: "15.00",
},
shipping_discount: {
currency_code: "EUR",
value: "5.00",
},
description: "breakdown",
},
},
custom_id: item.custom_id,
reference_id: item.reference_id,
invoice_id: item.invoice_id,
soft_descriptor: item.soft_descriptor,
items: [
{
name: "Test item 1",
unit_amount: {
currency_code: "EUR",
value: "8.00",
},
tax: {
currency_code: "EUR",
value: "2.00",
},
quantity: "2",
description: "Test item 1 description",
reference_id: "100",
},
{
name: "Test item 2",
unit_amount: {
currency_code: "EUR",
value: "4.00",
},
tax: {
currency_code: "EUR",
value: "1.00",
},
quantity: "5",
description: "Test item 2 description",
reference_id: "200",
},
],
shipping: {
method: "DHL",
address: {
name: {
full_name: "John",
surname: "Doe",
},
address_line_1: "via Roma",
address_line_2: "100",
admin_area_2: "Milano",
admin_area_1: "MI",
postal_code: "12345",
country_code: "IT",
},
},
};
});
My transaction now looks like this:
I hope this helps someone else struggling to get PayPal purchase_units
to work
This issue has been automatically marked as stale. If this issue is still affecting you, please leave any comment (for example, "bump"), and we'll keep it open. We are sorry that we haven't been able to prioritize it yet. If you have any new additional information, please include it with your comment!
Closing this issue after a prolonged period of inactivity. If this issue is still present in the latest release, please create a new issue with up-to-date information.
I'm using the PayPalButtons component from
@paypal/react-paypal-js
and I have it working nicely for multiple items in theproduct_items
field ofactions.order.create
in the buttoncreateOrder
function.Trawling the Web has not yielded any solution. Looking at the GitHub source here was inconclusive.
Here is a snippet of my code:
The orderInfo is being generated (currently mocked) by a backend API.
I've tried
product_unit
fields such asquantity
- which didn't workMy questions are - for a
purchase_unit
how can I specify:What I'd like to do is complete the highlighted fields below
Many thanks for your help.