commit 3ca68f623824f193965c182b21c1eff16379a4b4
parent 84cd616c126d2ae723f2fca19d6ad53d6569ead1
Author: Sebastian <sebasjm@gmail.com>
Date: Mon, 10 May 2021 15:17:00 -0300
add missing fulfillment
Diffstat:
2 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
@@ -24,6 +24,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- unlock a product when is locked
- check that there is no place where the taxes are summing up
- translation missing: yup (check for some other dynamic message)
+ - contract terms
+ - fulfillment url should check absolute url or relative to the merchant domain
## [Unreleased]
- fixed bug when updating token and not admin
- showing a yellow bar on non-default instance navigation (admin)
diff --git a/packages/frontend/src/paths/instance/orders/create/CreatePage.tsx b/packages/frontend/src/paths/instance/orders/create/CreatePage.tsx
@@ -111,6 +111,7 @@ export function CreatePage({ onCreate, onBack }: Props): VNode {
max_wire_fee: value.payments.max_wire_fee,
delivery_date: value.payments.delivery_date ? { t_ms: value.payments.delivery_date.getTime() } : undefined,
delivery_location: value.payments.delivery_location,
+ fulfillment_url: value.payments.fullfilment_url,
},
inventory_products: inventoryList.map(p => ({
product_id: p.product.id,