summaryrefslogtreecommitdiff
path: root/packages/frontend/src/paths/instance/orders/create/CreatePage.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/frontend/src/paths/instance/orders/create/CreatePage.tsx')
-rw-r--r--packages/frontend/src/paths/instance/orders/create/CreatePage.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/paths/instance/orders/create/CreatePage.tsx b/packages/frontend/src/paths/instance/orders/create/CreatePage.tsx
index ef25500..1b47564 100644
--- a/packages/frontend/src/paths/instance/orders/create/CreatePage.tsx
+++ b/packages/frontend/src/paths/instance/orders/create/CreatePage.tsx
@@ -235,7 +235,7 @@ export function CreatePage({ onCreate, onBack }: Props): VNode {
in {inventoryList.reduce((prev, cur) => cur.quantity + prev, 0)} units,
with a total price of {totalPriceInventory}
</p>
- } tooltip={i18n`add products to the order that already exist in the inventory`}>
+ } tooltip={i18n`Add products from managed inventory to the order.`}>
<InventoryProductForm
currentProducts={value.inventoryProducts || {}}
onAddProduct={addProductToTheInventoryList}
@@ -256,7 +256,7 @@ export function CreatePage({ onCreate, onBack }: Props): VNode {
in {productList.reduce((prev, cur) => cur.quantity + prev, 0)} units,
with a total price of {totalPriceProducts}
</p>
- } tooltip={i18n`add products to the order`}>
+ } tooltip={i18n`Add products without inventory management to the order.`}>
<NonInventoryProductFrom value={editingProduct} onAddProduct={(p) => {
setEditingProduct(undefined)
return addNewProduct(p)