Hi Wappler,
Our use case is that we present each user with multiple services, which are entirely unique and dynamic. They are not Products in Stripe, and the name/price unique to that user. They are saved in a databsed, but are not products that we can sell multiple times. Ex:
user1 has been given offer1 at amount1 and offer2 at amount2
user2 has been given offer3 at amount3 and offer4 at amount4
None of these are available to any other user, it’s not a shopping cart situation. All quantities are always 1.
We’d like to have a button that goes to Stripe for each item. Click on “Buy offer1” and go pay amount1, click on “Buy offer2” and go pay amount2. No need to add offer1 to card and checkout as a second step, simply click and go pay on Stripe.
How should the Stripe component be set up, what should the line items be or come from?
Sorry @bradwe’re trying to make buttons to go to payments, not issue an invoice.
A receipt will surely be issued after payment, but we’re looking to have the buyer go to the Stripe checkout with dynamic parameters of amount, currency (and possibly the stripeID of who this will be paid to)
In an attempt to follow the Stripe Tutorials below, as a test we created a shopping cart, added to a Data Store, passed the product_ID (offerID in our case) to an API that queries the offer details (id, title, currency, amount)
The last steps are to create a checkoutSession with Custom Reference using the above query, set an id value with the createCheckoutSession.id in it, and get the Go To Payment button to use the stripe1.checking on Click.
All works well, the datastore is filled, passes the offerID to the API which queries/selects the right offer, but the stipe.php throws an error:
This is a guess: I think that you do not have title in your query.
The following is my custom query, had to make it because ProductPrice is in dollars and Stripe requires cents. Also added currency to override the default usd
SELECT ProductID, ProductName AS title, ProductPrice * 100 AS amount,'aud' AS currency
FROM products
WHERE ProductID IN ({{$_POST.lineItems.flatten('product_id')}})
Hi @ben that was my first thought too, but the query contains title. the columns are called title, and I even added an alias as title, same issue
(I’m testing with id = 1 who I know exists and this query does return 1 record in mySQL.
file: “/home1/mdash/public_html/dmxConnectLib/modules/stripe.php” Line 455
message: “Undefined property: stdClass::$title”
Is it likely that the /dmxConnectLib/modules/Stripe.php file is not the latest one? See the code below. I have version 3.9.2
Our qryOffer query returns one line of data as expected.
{“userid”:null,“qryOffer”:{“id”:1,“title”:“Offer C4 to U3”,“amount”:“99.00”,“currency”:“EUR”}}
Could I please get some expert help, so we could unlock this phase?
Thank you very much Wappler community! @Teodor what do you think (bug or wrong version)?
@Fred_K I don’t know if this is useful feedback or not, as I have not used the new Wappler stripe features… so I’m not following the detail of your previous posts.
I wrote my stripe interface a year ago, and all I do is:
Create a Payment Intent
Update the Payment Intent amount as the user chooses different things.
Do a Stripe Checkout (I think it’s called that… am not at my computer at the moment).
So I would be looking to replicate those Stripe calls using the Wappler tools.
Do a search for “Stripe SCA” to find the article I wrote about it. I can’t seem to paste the link to it from my phone!
Hi @mebeingken, I didn’t realise that single and multiple records were handled differently in Wappler.
You’re correct, the single doesn’t produce an Array and that was causing the error in the Stripe.php handling of the result returned.
It now works when using the multiple record query type.
Thank you much!
I created custom query to handle the conversion to cents
SELECT ProductID, ProductName AS title, ProductPrice * 100 AS amount,'aud' AS currency
FROM products
WHERE ProductID IN ({{$_POST.lineItems.flatten('product_id')}})
Thanks @ben, definitely this could be a fix on our end.
Wappler though should look at this to see if this is a bug, or if doing x100 fix on queried amounts is the only thing to do
That is not a bug. That's how Stripe expects your prices
All API requests expect amounts to be provided in a currency’s smallest unit. For example, to charge 10 USD, provide an amount value of 1000 (i.e., 1000 cents).