Implement Core Business Logic, Authorization, and Workflow State Management#1908
Open
Mohithreddy70 wants to merge 5 commits into
Open
Implement Core Business Logic, Authorization, and Workflow State Management#1908Mohithreddy70 wants to merge 5 commits into
Mohithreddy70 wants to merge 5 commits into
Conversation
…plication system - Implemented end-to-end tests for various workflows (submission, revision, budget approval, director assignment, fee payment, and external filing) in est_workflows.py. - Created a custom Django test runner in setup_tests.py that generates CSV reports for test execution, defect logs, and artifact evaluations. - Added scaffolding for YAML specifications to facilitate structured test design documentation. - Ensured proper directory structure and initialization for test modules.
Patent management v2
Collaborator
|
Congratulations for making your first Pull Request at Fusion!! 🎉 Someone from our team will review it soon. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Backend Implementation: Patent Management System (PMS) Core Logic
Description
This PR establishes the foundational backend architecture for the Patent Management System, focusing on enforcing business rules, securing data access, and managing complex application workflows.
Key Changes
PMS-WF-101), supporting transitions fromDrafttoSubmitted,Under Review, andApproved/Rejected/Needs Revision.BR-PMS-001to ensure all mandatory fields (title, abstract, claims, etc.) are present before submission.BR-PMS-004, ensuring applications are director-approved before attorney assignment.BR-PMS-008).BR-PMS-002) that restricts operations based on user roles such as Applicant, Director, orPCC_ADMIN.BR-PMS-006) to prevent applicants from editing documents unless the status is specifically 'Awaiting Revision'.BR-PMS-003).Testing