Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modify the Change Request base module to make it OpenSPP independent #736

Draft
wants to merge 12 commits into
base: 17.0
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 2 additions & 16 deletions spp_change_request/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
},
"depends": [
"base",
"spp_change_request_base",
"g2p_registry_base",
"g2p_registry_individual",
"g2p_registry_group",
Expand All @@ -25,33 +26,18 @@
"spp_area",
"spp_scan_id_document",
"spp_dms",
# "dms_field",
],
"data": [
"security/change_request_security.xml",
"security/ir.model.access.csv",
"data/sequences.xml",
"data/mail_activity.xml",
"data/dms.xml",
"wizard/confirm_user_assignment_view.xml",
"wizard/reject_change_request_view.xml",
"wizard/cancel_change_request_view.xml",
"views/main_view.xml",
"views/change_request_view.xml",
"views/change_request_validation_sequence_view.xml",
"views/dms_file_view.xml",
"views/registrant_view.xml",
],
"assets": {
"web.assets_backend": [
"spp_change_request/static/src/scss/change_request.scss",
# will be obsolete once the DMS for change request is developed
# "spp_change_request/static/src/js/dms_preview.js",
],
"web.assets_qweb": {
"/spp_change_request/static/src/xml/dms_preview_widget.xml",
},
},
"assets": {},
"demo": [],
"images": [],
"application": True,
Expand Down
6 changes: 1 addition & 5 deletions spp_change_request/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
# Part of OpenSPP. See LICENSE file for full copyright and licensing details.

from . import change_request_targets
from . import group_membership
from . import change_request
from . import change_request_stage
from . import dms_file
from . import dms_directory
from . import registry
from . import mixins
from . import change_request_targets
Loading
Loading