Files
medusa-store/packages/plugins/draft-order
Nicolas Gorga 242f1d7d7f feat(dashboard,draft-order): Remove hardcoded strings and replace with translations in draft orders list page (#14400)
## Summary

**What** — What changes are introduced in this PR?

Add translations management to draft orders list page.

**Why** — Why are these changes relevant or necessary?  

We were using hardcoded English strings.

**How** — How have these changes been implemented?

Remove hardcoded strings and replace them with dynamic translations.

**Testing** — How have these changes been tested, or how can the reviewer test the feature?

*Please provide answer here*

---

## Examples

Provide examples or code snippets that demonstrate how this feature works, or how it can be used in practice.  
This helps with documentation and ensures maintainers can quickly understand and verify the change.

```ts
// Example usage
```

---

## Checklist

Please ensure the following before requesting a review:

- [x] I have added a **changeset** for this PR
    - Every non-breaking change should be marked as a **patch**
    - To add a changeset, run `yarn changeset` and follow the prompts
- [ ] The changes are covered by relevant **tests**
- [x] I have verified the code works as intended locally
- [x] I have linked the related issue(s) if applicable

---

## Additional Context

Add any additional context, related issues, or references that might help the reviewer understand this PR.

closes #14377
2026-01-02 10:44:42 +00:00
..
2025-12-17 13:55:25 +01:00
2025-12-17 13:55:25 +01:00

Medusa logo

Draft Order Plugin

Documentation | Website

Create and manage draft orders on behalf of customers in Medusa

PRs welcome! Product Hunt Discord Chat Follow @medusajs

Overview

The Draft Order Plugin enables admin users to create and manage orders on behalf of customers. This is particularly useful for customer support scenarios or when customers place orders offline.

Features

  • Create draft orders from the Medusa Admin dashboard
  • Manage items in draft orders (add, update, remove)
  • Add shipping methods to draft orders
  • Associate customers with draft orders
  • Convert draft orders to regular orders for purchase completion

Installation

  1. Install the Draft Order plugin
yarn add @medusajs/draft-order
  1. Configure the plugin in your medusa-config.ts
module.exports = defineConfig({
  projectConfig: {
    ...
  },
  plugins: [
    {
      resolve: "@medusajs/draft-order",
      options: {},
    },
  ],
})
  1. Start your server

Requirements

  • Medusa application version >= 2.4.0

Support

Community & Contributions

The community and core team are available in GitHub Discussions, where you can ask for support, discuss roadmap, and share ideas.

Join our Discord server to meet other community members.

Other channels