Skip to content

Commit b0ce6f8

Browse files
authoredDec 19, 2023
Merge pull request #1350 from dennisreimann/amount-multiplier
v1.12: Add amount multiplier example
2 parents e203cfe + 10c574e commit b0ce6f8

File tree

2 files changed

+66
-30
lines changed

2 files changed

+66
-30
lines changed
 

‎docs/AdvancedForms.md

+35-1
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,44 @@ Some well-known names can be interpreted and modify the invoice's settings.
129129
| `invoice_amount` | The invoice's amount |
130130
| `invoice_currency` | The invoice's currency |
131131
| Starts with `invoice_amount_adjustment` | As long its value is computed to be a number, it will adjust the invoice amount accordingly. |
132+
| Starts with `invoice_amount_multiply_adjustment` | Adjusts the generated invoice amount by multiplying with this value. |
132133

133134
## Mirror fields
134135

135-
A `Mirror` field is defined by the type `mirror`. Its value is set to the name of another field, and upon form submission, that field's value will be copied to the mirror field. The mirror type also has value mapping capabilities so that the referenced field's value can be transformed as it is copied over to the mirror field. For example, you could have a select field with a list of countries, and then create an `invoice_amount_adjustment` field, where you adjust the price of the invoice based on the country selected.
136+
A `Mirror` field is defined by the type `mirror`. Its value is set to the name of another field, and upon form submission, that field's value will be copied to the mirror field.
137+
The mirror type also has value mapping capabilities so that the referenced field's value can be transformed as it is copied over to the mirror field.
138+
139+
For example, you could have a select field with a list of countries, and then create an `invoice_amount_adjustment` field, where you adjust the price of the invoice based on the country selected.
140+
Or you can generate percentage-based promo codes based on the `invoice_amount_multiply_adjustment` field.
141+
142+
Here's an example of how three promo codes with different discounts can be implemented:
143+
144+
- `huge` = 50% discount
145+
- `medium` = 10% discount
146+
- `tiny` = 1% discount
147+
148+
```json
149+
{
150+
"fields": [
151+
{
152+
"name": "promo",
153+
"type": "text",
154+
"label": "Promo Code"
155+
},
156+
{
157+
"name": "invoice_amount_multiply_adjustment_promo",
158+
"type": "mirror",
159+
"value": "promo",
160+
"label": "Promo Codes",
161+
"valuemap": {
162+
"tiny": "0.99",
163+
"medium": "0.90",
164+
"huge": "0.5"
165+
}
166+
}
167+
]
168+
}
169+
```
136170

137171
## Pre-filling form values
138172

‎docs/Forms.md

+31-29
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,65 @@
11
# Forms
22

3-
BTCPay Server's Forms Builder enables you to request specific information from your customer.
3+
BTCPay Server's Forms Builder enables you to request specific information from your customer.
44

55
These forms are fully customizable to suit your requirements.
6-
In this introduction, we will go through the visual form builder; if you'd like to do more advanced settings, please visit the [Advanced Forms](./AdvancedForms.md) section of our documentation.
6+
In this introduction, we will go through the visual form builder; if you'd like to do more advanced settings, please visit the [Advanced Forms](./AdvancedForms.md) section of our documentation.
77

8-
## Setting up your store's first Custom form.
8+
## Setting up your store's first Custom form.
99

10-
In this example, we will start with creating a standard form we've pre-made.
11-
Click on Store Settings and the last tab of your store settings is Forms. Click Forms to create your first Custom Form.
10+
In this example, we will start with creating a standard form we've pre-made.
11+
Click on Store Settings and the last tab of your store settings is Forms. Click Forms to create your first Custom Form.
1212

1313
![BTCPay Server formbuilder - settings](./img/formbuilder/btcpayformbuilder1.png)
1414

15-
On the custom forms page, click Create New Form.
16-
We've pre-made two examples, `Email` and `Address`.
17-
For this example, click the Address form.
15+
On the custom forms page, click Create New Form.
16+
We've pre-made two examples, `Email` and `Address`.
17+
For this example, click the Address form.
1818

1919
![BTCPay Server formbuilder - Create new form](./img/formbuilder/btcpayformbuilder2.png)
2020

21-
We can now drag around the fields pre-made by BTCPay Server.
22-
You can re-order them or create a new field by clicking on the `Add form element` at the bottom of the form.
21+
We can now drag around the fields pre-made by BTCPay Server.
22+
You can re-order them or create a new field by clicking on the `Add form element` at the bottom of the form.
2323

2424
## Create a custom form.
2525

26-
You might have a different use case. For example if you own a restaurant you need to know the table number, how to call the customer when serving them, allergies, and special requests.
26+
You might have a different use case. For example if you own a restaurant you need to know the table number, how to call the customer when serving them, allergies, and special requests.
2727

28-
Let's create a custom form in the following steps.
28+
Let's create a custom form in the following steps.
2929
We will start at the same settings tab from the previous example, Store settings -> Forms.
3030

31-
Click `create form` in the top right.
32-
We'll start by giving it a name; in the example, we will use `Restaurant`.
33-
Unlike before, we will start with the empty field that was generated.
31+
Click `create form` in the top right.
32+
We'll start by giving it a name; in the example, we will use `Restaurant`.
33+
Unlike before, we will start with the empty field that was generated.
3434

3535
![BTCPay Server formbuilder - Create new form](./img/formbuilder/btcpayformbuilder2-1.png)
3636

37-
1. We will name the first field, `Table number`
37+
1. We will name the first field, `Table number`
3838
2. Define the `Type` of the field; we need it to be Text or Number, click on the drop-down and select `Number`.
3939

4040
![BTCPay Server formbuilder - Create new form](./img/formbuilder/btcpayformbuilder2-2.png)
4141

4242
3. The label we set for this field as it shows to the customer; in our example, we will name it `Table Number`.
43-
4. Regarding The name of the field, we replicate the previous field's name, `Table Number`, for consistency.
43+
4. Regarding The name of the field, we replicate the previous field's name, `Table Number`, for consistency.
4444
5. We could define a `Default value`; however, we'll keep it empty in the example.
45-
6. `Helper Text` This is the text provided below the field we are creating to indicate what you request from the customer.
46-
7. Last, we can set two parameters; one is always to make it required to be filled out; in this example, we will set this to yes. And if it's a Constant, users can't change this so we won't use the setting for the example.
45+
6. `Helper Text` This is the text provided below the field we are creating to indicate what you request from the customer.
46+
7. Last, we can set two parameters; one is always to make it required to be filled out; in this example, we will set this to yes. And if it's a Constant, users can't change this so we won't use the setting for the example.
4747

4848
![BTCPay Server formbuilder - Create new form](./img/formbuilder/btcpayformbuilder2-3.png)
4949

50-
After you've filled in the parameters for the field, it should show on the left of your editor how the field displays and functions when the customer interacts with it.
50+
After you've filled in the parameters for the field, it should show on the left of your editor how the field displays and functions when the customer interacts with it.
5151

5252
![BTCPay Server formbuilder - Create new form](./img/formbuilder/btcpayformbuilder2-4.png)
5353

54-
Now that the first field is done, you can click on the `+ Add form element` below your first field and create the rest of the required form fields. Once you've made all the fields, click `Save` in the top right of your screen, and all should be set!
54+
Now that the first field is done, you can click on the `+ Add form element` below your first field and create the rest of the required form fields. Once you've made all the fields, click `Save` in the top right of your screen, and all should be set!
5555

5656
![BTCPay Server formbuilder - Create new form](./img/formbuilder/btcpayformbuilder3.png)
5757

58-
The `Form Builder` makes creating custom forms flexible and easy. If you still require more personalization, as mentioned at the start of this guide, please read on [Advanced Forms](./AdvancedForms.md) to learn about the JSON created in the `Code` tab in the Form builder.
58+
The `Form Builder` makes creating custom forms flexible and easy. If you still require more personalization, as mentioned at the start of this guide, please read on [Advanced Forms](./AdvancedForms.md) to learn about the JSON created in the `Code` tab in the Form builder.
5959

6060
## Public Forms
6161

62-
When `Allow form for public use` is enabled, a form can be used as a way to share a URL, where users must fill in the form and an invoice is then generated.
62+
When `Allow form for public use` is enabled, a form can be used as a way to share a URL, where users must fill in the form and an invoice is then generated.
6363

6464
By default, the invoice currency is set to the store's default currency, and the amount is set to "any".
6565

@@ -72,11 +72,14 @@ You can configure the form to have a pre-configured currency and amount by creat
7272

7373
This can be used as an alternative to the Pay Button, with the added benefit that you can lock in invoice parameters such as amount and currency.
7474

75-
## Adjust invoice amounts based on user input
75+
## Adjust invoice amounts based on user input
7676

7777
In most modern ecommerce scenarios, you need to modify the amount being charged based on user input, such as their preferred shipping method, their country, promotional codes, etc.
7878

79-
The form comes with such functionality as of version 1.11.0. Any field that has its name starts with `invoice_amount_adjustment` and its value is a valid number will automatically adjust the invoice amount. This functionality currently works for public form usage and for the Point of Sale plugin.
79+
The form comes with such functionality as of BTCPay Server version 1.11.0. Any field that has its name start with `invoice_amount_adjustment` (supported since v1.11) or `invoice_amount_multiply_adjustment` (supported since v1.12) and its value being a valid number will automatically adjust the invoice amount.
80+
81+
This functionality currently works for public form usage and for the Point of Sale plugin.
82+
See the [Mirror Fields](./AdvancedForms/#mirror-fields) section of the Advanced Forms guide for details.
8083

8184
### Charging extra based on shipping method
8285

@@ -86,14 +89,14 @@ Note: This is a simple example. While the invoice amount will be correctly adjus
8689

8790
To save the user selected shipping method choice we must do the following instead:
8891
* Create a field of type "select", with the name `shipping_method`, and options that map to what shipping methods you have available. We will use 2 options: `DHL` with a value of `dhl` and `Fedex` with a value of `fedex`.
89-
* Create a field of type "mirror", with the name `invoice_amount_adjustment_shipping_method`. In `Field to mirror`, select the `shipping_method` field. And in `Value Mapper`, create all the options from `shipping_method` and the value to charge.
92+
* Create a field of type "mirror", with the name `invoice_amount_adjustment_shipping_method`. In `Field to mirror`, select the `shipping_method` field. And in `Value Mapper`, create all the options from `shipping_method` and the value to charge.
9093

9194
### Promo codes
9295

9396
* Create a field of type "text", with the name `promoCode`.
94-
* Create a field of type "mirror", with the name `invoice_amount_adjustment_promo`. In `Field to mirror`, select the `promoCode` field. And in `Value Mapper`, create all the promotional codes you wish to have available. For example set `Original Value` to `chocolate` and `Mapped Value` to `-5`.
97+
* Create a field of type "mirror", with the name `invoice_amount_adjustment_promo`. In `Field to mirror`, select the `promoCode` field. And in `Value Mapper`, create all the promotional codes you wish to have available. For example set `Original Value` to `chocolate` and `Mapped Value` to `-5`.
9598

96-
When the user enters `chocolate` in the promo code field, the invoice amount will be adjusted by -5.
99+
When the user enters `chocolate` in the promo code field, the invoice amount will be adjusted by -5.
97100

98101
### Showing user input on the receipt
99102

@@ -110,4 +113,3 @@ Only file a [Github issue](https://github.com/btcpayserver/btcpayserver/issues)
110113
Please check out our [official website](https://btcpayserver.org/) and [FAQ](./FAQ/README.md#btcpay-frequently-asked-questions-and-common-issues) for more details.
111114

112115
!!!include(supporters.html)!!!
113-

0 commit comments

Comments
 (0)
Please sign in to comment.