diff --git a/locale/defaultMessages.json b/locale/defaultMessages.json index efb382289..b94bb5e2f 100644 --- a/locale/defaultMessages.json +++ b/locale/defaultMessages.json @@ -2749,6 +2749,10 @@ "context": "order payment", "string": "Outstanding Balance" }, + "src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": { + "context": "order discount", + "string": "Discount" + }, "src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": { "context": "order payment", "string": "Preauthorized amount" diff --git a/src/orders/components/OrderPayment/OrderPayment.tsx b/src/orders/components/OrderPayment/OrderPayment.tsx index 2a8368e30..968ac7385 100644 --- a/src/orders/components/OrderPayment/OrderPayment.tsx +++ b/src/orders/components/OrderPayment/OrderPayment.tsx @@ -159,6 +159,20 @@ const OrderPayment: React.FC = props => { )} + {maybe(() => order && order.discount.amount !== 0) ? ( + + + + + + + - + + + ) : null}