[PR #5124] [CLOSED] Pharma schema #5307

Closed
opened 2026-06-05 15:20:55 -04:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/5124
Author: @Justicegodknows
Created: 3/3/2026
Status: Closed

Base: masterHead: pharma-schema


📝 Commits (6)

  • 95f2c8f Add pharma domain models for vendor-manufacturer ordering flows
  • b60e5eb Enhance pharmaceutical order management models
  • 2867267 Add VSCode launch configurations and update dependencies
  • 72d68a2 Implement vendor record management and enhance order validation
  • d7f8c33 Refactor vendor record management and enhance order processing
  • 1848c25 Enhance vendor record validation and streamline order processing

📊 Changes

15 files changed (+5096 additions, -0 deletions)

View changed files

📝 .vscode/launch.json (+21 -0)
📝 frontend/src/main.jsx (+9 -0)
frontend/src/models/pharma.js (+65 -0)
frontend/src/pages/Pharma/Vendor.jsx (+242 -0)
package-lock.json (+3795 -0)
📝 package.json (+3 -0)
server/endpoints/pharma.js (+162 -0)
📝 server/index.js (+2 -0)
server/models/pharmaManufacturer.js (+105 -0)
server/models/pharmaOrder.js (+176 -0)
server/models/pharmaProduct.js (+98 -0)
server/models/pharmaVendor.js (+136 -0)
📝 server/prisma/schema.prisma (+103 -0)
📝 server/utils/agents/aibitat/plugins/index.js (+3 -0)
server/utils/agents/aibitat/plugins/pharma.js (+176 -0)

📄 Description

Pull Request Type

  • feat (New feature)
  • 🐛 fix (Bug fix)
  • ♻️ refactor (Code refactoring without changing behavior)
  • 💄 style (UI style changes)
  • 🔨 chore (Build, CI, maintenance)
  • 📝 docs (Documentation updates)

Relevant Issues

resolves #

Description

Visuals (if applicable)

Additional Information

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated (if applicable)
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Mintplex-Labs/anything-llm/pull/5124 **Author:** [@Justicegodknows](https://github.com/Justicegodknows) **Created:** 3/3/2026 **Status:** ❌ Closed **Base:** `master` ← **Head:** `pharma-schema` --- ### 📝 Commits (6) - [`95f2c8f`](https://github.com/Mintplex-Labs/anything-llm/commit/95f2c8f51df91a4895c809bf20bc76202fc49e7b) Add pharma domain models for vendor-manufacturer ordering flows - [`b60e5eb`](https://github.com/Mintplex-Labs/anything-llm/commit/b60e5eb22f2c9646a4b02efa31415f80558649d2) Enhance pharmaceutical order management models - [`2867267`](https://github.com/Mintplex-Labs/anything-llm/commit/286726787adb48bc3f9fa0f5b75a51eeafb09c80) Add VSCode launch configurations and update dependencies - [`72d68a2`](https://github.com/Mintplex-Labs/anything-llm/commit/72d68a21d80e01537549c19f36752fd475a25a23) Implement vendor record management and enhance order validation - [`d7f8c33`](https://github.com/Mintplex-Labs/anything-llm/commit/d7f8c33f3293dd2eee4b9c1a412cc8e5934638cf) Refactor vendor record management and enhance order processing - [`1848c25`](https://github.com/Mintplex-Labs/anything-llm/commit/1848c25cc5ecd0a6f17e86f0cd4109c7a24cf22f) Enhance vendor record validation and streamline order processing ### 📊 Changes **15 files changed** (+5096 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `.vscode/launch.json` (+21 -0) 📝 `frontend/src/main.jsx` (+9 -0) ➕ `frontend/src/models/pharma.js` (+65 -0) ➕ `frontend/src/pages/Pharma/Vendor.jsx` (+242 -0) ➕ `package-lock.json` (+3795 -0) 📝 `package.json` (+3 -0) ➕ `server/endpoints/pharma.js` (+162 -0) 📝 `server/index.js` (+2 -0) ➕ `server/models/pharmaManufacturer.js` (+105 -0) ➕ `server/models/pharmaOrder.js` (+176 -0) ➕ `server/models/pharmaProduct.js` (+98 -0) ➕ `server/models/pharmaVendor.js` (+136 -0) 📝 `server/prisma/schema.prisma` (+103 -0) 📝 `server/utils/agents/aibitat/plugins/index.js` (+3 -0) ➕ `server/utils/agents/aibitat/plugins/pharma.js` (+176 -0) </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat (New feature) - [ ] 🐛 fix (Bug fix) - [ ] ♻️ refactor (Code refactoring without changing behavior) - [ ] 💄 style (UI style changes) - [ ] 🔨 chore (Build, CI, maintenance) - [ ] 📝 docs (Documentation updates) ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves # ### Description <!-- Describe the changes in this PR that are impactful to the repo. What problem does it solve? --> ### Visuals (if applicable) <!-- Add screenshots or screen recordings to demonstrate the changes, especially for UI updates. --> ### Additional Information <!-- Add any other context about the Pull Request here that was not captured above. --> ### Developer Validations <!-- All of the applicable items should be checked. --> - [ ] I ran `yarn lint` from the root of the repo & committed changes - [ ] Relevant documentation has been updated (if applicable) - [ ] I have tested my code functionality - [ ] Docker build succeeds locally --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-06-05 15:20:55 -04:00
yindo closed this issue 2026-06-05 15:20:55 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#5307